#Mac OS X
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
#to set the variable PATH to the value /bin:/sbin:/user/bin:/user/sbin:/system/Library/, you would enter the following command in a Terminal window: | |
$ PATH=/bin:/sbin:/user/bin:/user/sbin:/system/Library/ export PATH | |
#This modifies the environment variable PATH with the value assigned. | |
#To view all environment variables, enter: | |
$ env |
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
.threedigit { color: #09C; } | |
.sixdigit { color: #0099CC; } /*same color as above*/ |
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
/* RGB model */ | |
p { color: #F00 } /* #rgb */ | |
p { color: #FF0000 } /* #rrggbb */ | |
p { color: rgb(255, 0, 0) } /* integer range 0 - 255 */ | |
p { color: rgb(100%, 0%, 0%) } /* float range 0.0% - 100.0% */ | |
/* RGB with alpha channel, added to CSS3 */ | |
p { color: rgba(255, 0, 0, 0.5) } /* 0.5 opacity, semi-transparent */ | |
/* HSL model, added to CSS3 */ |
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
New Script Group.dtTemplate | |
English.lproj | |
Script Name (I would change this in DEVONthink after creation) | |
Scriptgrounds | |
Old Versions |
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
(* INSERT MARKDOWN LINKS OF CURRENT PAGE OF SKIM PDF INTO TEXTMATE | |
-- created by Stephen Margheim | |
-- 06 July 2013 | |
-- open source | |
*) | |
tell application "Skim" |
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
SystemStarter - Start, stop, and restart system services | |
Xmark - summarize x11perf results | |
Xnest - a nested X server | |
Xquartz - X window system server for Quartz operating system | |
Xvfb - virtual framebuffer X server for X Version 11 | |
a2p - Awk to Perl translator | |
... |
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
#!/usr/local/bin/python | |
import requests | |
import re | |
import keychain | |
######## | |
# Configure these settings | |
username = '[email protected]' | |
mypass = keychain.get_password('instapaper', username) |
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 | |
curl -O http://cloud.github.com/downloads/whomwah/qlstephen/QLStephen.qlgenerator.zip | |
unzip QLStephen.qlgenerator.zip | |
echo "Please enter your password when asked (the one sudo asks you for usuqlly). It's needed to copy some files to /Library/QuickLook" | |
sudo mv -f QLStephen.qlgenerator /Library/QuickLook | |
rm QLStephen.qlgenerator.zip | |
qlmanage -r | |
echo "We're done. Have fun and do not forget to give a credit to QLStephen's author Duncan@https://github.com/whomwah" |
OlderNewer