-
Kinesis Freestyle (Terrible key switches. Mushy and un-lovable)
-
Kinesis Freestyle Edge (Traditional layout with too many keys, mech switches, proably too big to be tented easily/properly)
-
Matias Ergo Pro (Looks pretty great. Have not tried.)
-
ErgoDox Kit (Currently, my everyday keyboard. Can buy pre-assembled on eBay.)
-
ErgoDox EZ (Prolly the best option for most people.)
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <title>Times Table</title> | |
| <script type="text/javascript"> | |
| window.TOGGLE = false; |
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
| App Prototyping tools | |
| ============ | |
| https://www.adobe.com/products/xd.html | |
| https://www.figma.com/ | |
| http://principleformac.com/ | |
| https://kiteapp.co/ | |
| https://framer.com/ | |
| https://www.flinto.com/ | |
| https://www.invisionapp.com/studio | |
| https://www.invisionapp.com/craft |
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
| set path_ to (get path to desktop as string) & "FOLDER NAME HERE" | |
| set prefix_ to "PREFIX HERE" | |
| tell application "Finder" | |
| set dir_ to folder path_ | |
| set files_ to items of dir_ whose name of it starts with prefix_ | |
| set start_ to (get length of prefix_) + 1 | |
| repeat with file_ in files_ | |
| set oldname_ to name of file_ | |
| set end_ to length of oldname_ |
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
| #import <stdio.h> | |
| #import <Foundation/Foundation.h> | |
| // sudo zyp in gcc-c++ gcc-objc gnustep-base-devel | |
| // gcc -lobjc -lgnustep-base -fconstant-string-class=NSConstantString -fobjc-exceptions Foo.m -o Foo | |
| // https://web.archive.org/web/20120816003625/http://blog.lyxite.com:80/2008/01/compile-objective-c-programs-using-gcc.html | |
| @interface Foo : NSObject | |
| @end |
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
| file | |
| : thing+ | |
| ; | |
| @entryPoint | |
| thing | |
| : semi | |
| | pi_beg | |
| | pi_end | |
| | func_decl |
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
| /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -dump | grep uti: | cut -c 29- | sort | uniq > utis.txt |
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
| set _srcPath to ((get path to desktop) & "Backup:Pictures" as string) | |
| set _destPath to ((get path to desktop) & "Out" as string) | |
| on processDir(_parent) | |
| tell application "Finder" | |
| set _parentName to (get name of _parent as string) | |
| set _kids to (get every item of _parent whose name is not ".") | |
| if "Thumbs" is equal to _parentName then | |
| return | |
| else if "Originals" is equal to _parentName then |
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
| NOMINATIV | |
| 1. Subject | |
| 2. Predicate Nominative | |
| ACCUSATIV | |
| 1. Direct Object | |
| 2. Accusative Prepositions | |
| 3. Expressions of Time | |
| DATIV |
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
| window.fluid.dockBadge = ''; | |
| setTimeout(updateDockBadge, 1000); | |
| setTimeout(updateDockBadge, 3000); | |
| setInterval(updateDockBadge, 5000); | |
| function updateDockBadge() { | |
| var newBadge = ''; | |
| var res = findInboxAnchorMatchResult(); | |
| if (res) { |
NewerOlder