-
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 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 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
SUMMARY | |
========= | |
Prizmo Feature Request: Allow Option-drag for copying Regions on the Canvas | |
SETUP | |
========= | |
App: Prizmo Version 3.1.18 (3.222.3680) | |
OS: macOS 10.12.6 (16G29) | |
Machine: MacMini 2014 |
This file contains 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
SUMMARY | |
========= | |
Prizmo Feature Request: Allow copy & paste of Recognition Regions on Canvas | |
SETUP | |
========= | |
App: Prizmo Version 3.1.18 (3.222.3680) | |
OS: macOS 10.12.6 (16G29) | |
Machine: MacMini 2014 |
This file contains 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
#!/bin/bash | |
osascript -e 'quit app "Gmail.app"' | |
export DYLD_FRAMEWORK_PATH="/System/Library/Frameworks/" | |
export WEBKIT_UNSET_DYLD_FRAMEWORK_PATH="YES" | |
osascript -e 'activate app "Gmail.app"' | |
# see also: https://github.com/WebKit/webkit/blob/master/Tools/Scripts/run-webkit-app |
This file contains 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
SUMMARY | |
------------------ | |
Downloading 1Password 6.5.5 for Mac leads to Chrome malware warnings. | |
SETUP | |
------------------ | |
Device: Mac mini (Late 2014) | |
OS: 10.12.2 (16C67), Language set to "German" (that's somewhat unusual, so I thought I'd mention it) | |
Browser: Google Chrome Version 57.0.2987.54 beta (64-bit) |
This file contains 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
I think I know what’s going wrong. On Sierra, if an app has not been manually dragged into the "Applications" folder by the user, then the app cannot be successfully "kept" in the Dock. This is a new "security feature" of some kind from Apple. | |
This has something to do with App Translocation: http://lapcatsoftware.com/articles/app-translocation.html | |
Or path randomization: http://mjtsai.com/blog/2016/06/16/gatekeeper-path-randomization/ | |
So you should remove the Question Mark from the Dock, quit the Fluid App you created, drag your Fluid App to your "Applications" folder (you may have to drag it *out* first), relaunch it and try again. | |
Thanks, |
This file contains 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
tell application "Finder" | |
set path_ to (get path to desktop as string) & "workflows" | |
set dir_ to folder path_ | |
set ext_ to "fakeworkflow" | |
set files_ to items of dir_ whose name of it ends with ext_ | |
tell application "Fake" | |
repeat with file_ in files_ | |
--display dialog (get title of file_) | |
open file_ |
This file contains 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
void myfunc() { | |
void *thing1 = NULL; | |
void *thing2 = NULL; | |
@try { | |
thing1 = allocThing1(); | |
if (!thing1) return; | |
// …use thing1 maybe |
This file contains 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
// | |
// main.m | |
// Finally | |
// | |
// Created by Todd Ditchendorf on 6/19/15. | |
// Copyright (c) 2015 Todd Ditchendorf. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |