Skip to content

Instantly share code, notes, and snippets.

View tylucaskelley's full-sized avatar
🐢
turtle-y enough 4 the turtle club

Ty-Lucas Kelley tylucaskelley

🐢
turtle-y enough 4 the turtle club
View GitHub Profile
@tylucaskelley
tylucaskelley / file_fix.sh
Created November 18, 2014 01:56
Fix chrome file dialog on mac 10.10
defaults delete com.google.Chrome NSNavPanelExpandedSizeForOpenMode

Keybase proof

I hereby claim:

  • I am tylucaskelley on github.
  • I am tylucaskelley (https://keybase.io/tylucaskelley) on keybase.
  • I have a public key whose fingerprint is 202A A4D5 D060 A92F 7847 B598 1A02 5C19 B5AD F824

To claim this, I am signing this object:

@tylucaskelley
tylucaskelley / kill_indexing.sh
Created September 24, 2014 21:03
Kill spotlight indexing on Mac OS
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
@tylucaskelley
tylucaskelley / ip.sh
Created September 9, 2014 16:19
Get your IP address on Mac and Linux
alias ip="ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'"