- Etcetera Type Co - Open source variable fonts, also check out their GitHub
- Future Fonts - Lots of cheap work-in-progress fonts with wide variation
- Pangram Pangram
- Atipo Foundry
- Good Type Foundary
- Colophon
- Klim
- ECAL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Project Kaeru KWPCF builder | |
| // Written by James Daniel | |
| // github.com/jaames / rakujira.jp | |
| // ---- USAGE ---- | |
| // create a new kaeruPrecache instance: | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Decrypt Mii QR codes from 3DS / Wii U / Miitomo | |
| # Usage: python3 <input file> <output file> | |
| # QR docs: https://www.3dbrew.org/wiki/Mii_Maker | |
| from Crypto.Cipher import AES | |
| from sys import argv | |
| key = bytes([0x59, 0xFC, 0x81, 0x7E, 0x64, 0x46, 0xEA, 0x61, 0x90, 0x34, 0x7B, 0x20, 0xE9, 0xBD, 0xCE, 0x52]) | |
| with open(argv[1], "rb") as infile, open(argv[2], "wb") as outfile: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- bezier curve drawing functions for playdate lua | |
| -- these are based on de Casteljau's algorithm | |
| -- this site has a nice interactive demo to compare both types of curve: https://pomax.github.io/bezierinfo/#flattening | |
| -- draws a curve starting at x1,y1, ending at x3,y3, with x2,y2 being a control point that "pulls" the curve towards it | |
| -- steps is the number of line segments to use, lower is better for performance, higher makes your curve look smoother | |
| -- the playdate is kinda slow, so it's recommended to find a relatively low step number that looks passable enough! | |
| function drawQuadraticBezier(x1, y1, x2, y2, x3, y3, steps) | |
| steps = steps or 8 | |
| local d = 1 / steps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class KwzParser { | |
| protected $data = null; | |
| protected $offset = 0; | |
| protected $size = 0; | |
| public $sections = []; | |
| public $meta = null; | |
| public $frameMeta = null; |
Thanks to @shutterbug2000 and @Larsenv for scraping these, I just decoded them and dumped them all into a markdown doc
The general gist is that we replace normal link underlines (text-decoration: underline) with an SVG background image. The background image is positioned along the bottom of the element, prevented from repeating vertically, and then scaled by defining the background size in text units:
a {
text-decoration: none;
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "colors": {}, | |
| "displayName": "jaames.co.uk", | |
| "name": "", | |
| "semanticHighlighting": true, | |
| "tokenColors": [ | |
| { | |
| "settings": { | |
| "background": "var(--syntax-bg)", | |
| "foreground": "var(--syntax-text)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Rocketship Logo (Aerolite, Axis, Comet, Quasar) | |
| 2. Hot Air Balloon (Lift, Crown (the very top part of the balloon), Whoosh) | |
| 3. Panda Logo (Panda Global, Bamboo, Endangered Panda Conservation) | |
| 4. Single Letter Logo | |
| 5. Driverless Car Logo (Autonome, Vrooom, Onward) | |
| 6. Coffee Shop (Dylan's Coffee, The Roasted Bean, Tazza) | |
| 7. Fashion Brand Wordmark (OAKAO, Deities, Adams & Abigail) | |
| 8. Ski Mountain Logo (Brass Peak, Mount Blanco, Traverse, Snowdrop) | |
| 9. Streaming Music Startup (Beat, Pitch, Bass) | |
| 10. Flame Logo (Sizzle, Liight, Flint & Flame) |
NewerOlder