Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
// ==UserScript== | |
// @name Learn Plover - Steno text font switch | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-01-10 | |
// @description Replace raw steno keys with a steno font drawing at Learn Plover! website | |
// @author felipesabino@ | |
// @match https://www.openstenoproject.org/learn-plover/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=openstenoproject.org | |
// @grant GM_addStyle | |
// ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
Verifying that +felipesabino is my blockchain ID. https://onename.com/felipesabino |
" Make vim more useful | |
set nocompatible | |
" Set syntax highlighting options. | |
set t_Co=256 | |
set background=dark | |
syntax on | |
" colorscheme badwolf | |
" Enabled later, after Pathogen |
$ brew update
[alias] | |
com = commit -m | |
ck = checkout | |
po = push origin | |
mg = merge --no-ff | |
st = status -sb | |
br = ls-remote | |
lc = ls-files -u | |
ls = ls -la | |
a = add -A :/ |
# original from: https://github.com/addyosmani/dotfiles/blob/master/.aliases | |
# Easier navigation: .., ..., ~ and - | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias .....="cd ../../../.." | |
alias ~="cd ~" # `cd` is probably faster to type though | |
alias -- -="cd -" |
#!/bin/sh | |
# Sets Terminal to case insensitive | |
# http://blog.nickburwell.com/blog/2008/11/mac-os-x-terminal-case-insensitive-auto | |
echo "set completion-ignore-case On" >> ~/.inputrc | |
# Disables the creation of .DS_Store files on external volumes | |
# http://danilo.ariadoss.com/how-to-recursively-remove-ds_store-files-on-mac-os-x/ | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
# Make Your Keyboard Keys Repeat Properly When Held Down | |
# http://lifehacker.com/5826055/make-your-keyboard-keys-repeat-properly-when-held-down-in-mac-os-x-lion |