Page 304 of 517
Posted: 24 Sep 2015, 10:05
by 7bit
Please try the date of yesterday (23 September 2015) or today (24 September 2015).
Posted: 24 Sep 2015, 17:42
by sqapy
7bit wrote: Please try the date of yesterday (23 September 2015) or today (24 September 2015).
Thank you 7bit, tried all dates, it's not showing up, probably needs few days.
Posted: 24 Sep 2015, 21:35
by 7bit
^^^ Deutsche Post tracking is really bad. If you are in the USA, go to usps.com and enter just the tracking number. It does not work immediatley, but once the package arrived in the USA.
I did not yet find out how it works for other countries.
Posted: 24 Sep 2015, 21:36
by 7bit
I'm creating the legneds for the CADET kits:

- FGH_cadet.jpg (42.76 KiB) Viewed 7365 times
It seems I should increase the gap a little bit ...

Posted: 24 Sep 2015, 21:57
by zslane
Please let me know if I can be of any assistance. The Space Cadet set is of prime interest to me, as you may have already surmised.
Posted: 24 Sep 2015, 22:14
by 7bit
I can draw straight lines and circles.
Here is the code to make the upside down T / A legend:
Code: Select all
$VAR W=25
$VAR V=W/2
$VAR H=380
$VAR J=H/2
$VAR T=J-V
$VAR G=32
$REM upside down T
$MOVE( 0, -G)
$LINE( 0, -T)
$MOVE(-60, -G)
$LINE( 60, -G)
$REM A
$MOVE( -65, T)
$LINE( 0, G)
$LINE( 65, T)
$MOVE( 42, 136)
$LINE( -42, 136)
$EOF .
To make the S-legend, all I need to do is reading this:
https://en.wikipedia.org/wiki/Bezier_curve

Posted: 24 Sep 2015, 22:24
by zslane
I have no doubt you are completely capable, 7bit. I was merely proposing a division of labor to get us closer to production that much sooner. But I understand the reluctance you might feel towards entrusting any of the work to someone else. My offer still stands if you ever change your mind.
Posted: 25 Sep 2015, 01:40
by Muirium
7bit wrote: I'm creating the legneds for the CADET kits:
APL here we come!
Space Cadet makes more sense, really. Because APL seriously needs tripleshot to come out right. APL is Red.
But Greek legends will be nice.
Posted: 25 Sep 2015, 05:46
by gnarlsagan
Hey 7bit, I'm gonna ask again just in case you didn't see it, but can we please get the HONEYB/MODEXTRA100/WHITE? Oddly, every other color is available. I won't be able to finish my board without those in white. Which would be really weird considering how empty my wallet is because of this GB.

Posted: 25 Sep 2015, 09:56
by caligo
Finally got my keycaps, thanks 7bit! Really happy with them so far – I've been typing on thick Ducky PBT keys for the last year and a half, but I think I like the feel of these more.
I realized I forgot to order some things – just small annoying oversights , like a black 1.25 "fun" key. If I want to order leftovers now that my main order is delivered, do I just PM the bot with what I want plus shipping?
Posted: 25 Sep 2015, 11:05
by 7bit
zslane wrote: I have no doubt you are completely capable, 7bit. I was merely proposing a division of labor to get us closer to production that much sooner. But I understand the reluctance you might feel towards entrusting any of the work to someone else. My offer still stands if you ever change your mind.
Yes, thanks!
But, I'm making progress:

- S_legend_001.jpg (71.15 KiB) Viewed 7207 times
Code: Select all
$MOVEB( 67,-66, -135,80)
$DRAWB(-70,-48, 270,40)
$MOVEB moves to point 67,-66 and sets the angle to -135 degrees and the scale factor to 80.
$DRAWB draws the Bezier curve to -70,-48 at angle 270 degrees and scale factor 40.

Angle and scale factor do nothing but defining P1 and P2. This way, I don't have to calculate so much, just measure and enter the figures. A little adjustment here, a little there and the legend is ready. Finally, scaling it down to the space cadet legend size, is plain sailing.

Re: Round 5: Shipping / Round 5a: Deadline: 2015-09-30
Posted: 25 Sep 2015, 16:49
by drrtyrokka
Posted: 25 Sep 2015, 17:09
by 7bit
What happened!

Posted: 25 Sep 2015, 19:30
by zslane
Nice!
Please work fast...my heart aches for these keycaps.
Posted: 25 Sep 2015, 20:37
by hj-s
Finally got my keycaps! They are awesome!
Thanks to 7bot and 7bit of cource !
Posted: 25 Sep 2015, 22:00
by usopia
I can do that for you.

It's also a Ducky G2Pro with Clears...but now I see I reversed Scroll Lock + Print.

- IMG_1053b.jpg (753.56 KiB) Viewed 7790 times
I wait for ISO-DE alphas in grey. Sadly they weren't available in R5.
Re: Round 5: Shipping / Round 5a: Deadline: 2015-09-30
Posted: 25 Sep 2015, 22:47
by drrtyrokka
Looks superb.
Ergo Clears I hope
But I don't use clears anymore, they strain my wrists. Go for lighter lubed blues

Posted: 25 Sep 2015, 23:08
by 7bit

- AS_cadet.jpg (27.03 KiB) Viewed 7768 times
Posted: 26 Sep 2015, 01:13
by mr_goat123
Just received my first shipment of caps and they are fantastic. On my invoice it appears that I still owe $3.00 for the HONEYB caps I ordered, but there are no instructions on how to pay included in the email. I am located in USA, can you please advise?
Posted: 26 Sep 2015, 01:28
by zslane
7bit wrote:
:P
Nice work, 7bit!
Now don't stop until you've done them all.

Posted: 26 Sep 2015, 08:36
by 7bit
Progress can't be stopped anymore!

- cadetASD.jpg (38.55 KiB) Viewed 7681 times
My little Perl script also makes progress:
Code: Select all
$VAR M=72.5
$REM T
$CENTER(190,85.5)
$MOVE( M, 0)
$LINE( -M, 0)
$MOVE( M, -58)
$LINE( M, 58)
$REM F
$SCALE(0.7)
$CENTER(190,294)
$INCLUDE(F)
$EOF .
and F is defined here:
Code: Select all
$REM F
$VAR L= 73
$VAR R= 27
$VAR S= -8
$VAR T=104
$MOVE( L,-T)
$LINE(-L,-T)
$LINE(-L, T)
$MOVE(-L, S)
$LINE( R, S)
$EOF .
edit: ROTATE command added!

Posted: 26 Sep 2015, 12:57
by 7bit
The circle has been closed:
Thanks for your help, zslane!

- shift.png (3.4 KiB) Viewed 7668 times
Posted: 26 Sep 2015, 17:14
by tofagerl
Should the deadline be removed from the topic, or will it be a joke we'll laugh at in generations to come?
Posted: 26 Sep 2015, 23:36
by 7bit
ASDFGHJKL and W are done.

Posted: 27 Sep 2015, 22:33
by 7bit

- cadet_legends.png (27.95 KiB) Viewed 7514 times

Posted: 27 Sep 2015, 22:53
by zslane
Very nice...
Now get production started please!

Posted: 28 Sep 2015, 00:03
by gnarlsagan
zslane wrote: Very nice...
Now get production started please!

Yes! Right after we get HONEYB/MODEXTRA100/WHITE...

Posted: 28 Sep 2015, 05:21
by skaloola
I sent an order to 7bot yesterday hoping for some extras/ stuff from round5a but its just sitting in my "Outbox"
Posted: 28 Sep 2015, 06:09
by Wet
skaloola wrote: I sent an order to 7bot yesterday hoping for some extras/ stuff from round5a but its just sitting in my "Outbox"
That's how the system works, you'll get a reply in your email within 24 hours. In the meantime you can check for any errors to prevent any further corrections

Posted: 28 Sep 2015, 10:13
by 7bit
Comparsion to Symbiosis:

- Symbiosis_vs_Round6.gif (42.59 KiB) Viewed 7406 times
As you can see, the legendable area of the key has been used 100% by both (0.38"x0.38"), but the Round 6 symbols are larger.
