Open Terminal.app (or your favourite terminal) and type:
defaults write com.apple.finder FXDesktopLayoutGridCharCount 50; killall Finder; killall Dock
You then need to change the 'Grid Size' in 'View Options' and the full names should appear.
| <!doctype html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <form action="#" method="post"> | |
| <!-- chrome / webkit text-to-speech --> | |
| <input type="text" x-webkit-speech /> | |
| <input type="submit" /> |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ docstring """ | |
| import os | |
| import sys | |
| import argparse | |
| import logging |
| brew update && brew upgrade && /usr/bin/osascript -e 'tell app "System Events" to display dialog "Brew Done."' |
| #Some of this from https://github.com/github/gitignore | |
| #OS files and Swap Files | |
| *~ | |
| *.lock | |
| *.DS_Store | |
| *.swp | |
| *.out | |
| #Vim |
| export PS1="\[\033[36m\]\u\[\033[m\]:\[\033[33;1m\]\w\[\033[m\]\$ " | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxBxDxCxegedabagacad |
Open Terminal.app (or your favourite terminal) and type:
defaults write com.apple.finder FXDesktopLayoutGridCharCount 50; killall Finder; killall Dock
You then need to change the 'Grid Size' in 'View Options' and the full names should appear.
| #!/bin/bash | |
| brew info $1 | sed -n '2p' | xargs open -g -a "Google Chrome" | |
| #Get the Package info from brew for the first argument | |
| # and pipe it to | |
| #sed which outputs only the second line | |
| # and pipe it to | |
| # xargs calling open with options to background the app, the app named "Google Chome" and the url is appended |
| python -m SimpleHTTPServer & open -a "Google Chrome" http://localhost:8000 |
| git clone the repo | |
| python setup.py sdist | |
| pip install --user dist/*.tgz | |
| ##If you get a file not found error, there might be a stray reference to readme.md or something in setup.py | |
| via @talideon: https://twitter.com/talideon/status/462591048045588480 |
| export PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig |