Skip to content

Instantly share code, notes, and snippets.

View splorp's full-sized avatar
🎧

Grant Hutchinson splorp

🎧
View GitHub Profile
@splorp
splorp / Command Line Twitter
Created September 28, 2010 21:55
Posting to Twitter from the command line. Note that this version does not support OAuth authentication.
curl --user email:password --data-binary "status=`echo $@|tr ' ' '+'`" http://twitter.com/statuses/update.json
@splorp
splorp / Example Failure Notice (Received-SPF: neutral)
Created October 8, 2010 22:25
Example Failure Notice (Received-SPF: neutral)
Return-path: <>
Envelope-to: grant@splorp.com
Delivery-date: Fri, 08 Oct 2010 12:26:10 -0600
Received: from continuity.cx ([70.32.110.81])
by box653.bluehost.com with esmtps (TLSv1:AES256-SHA:256)
(Exim 4.69)
id 1P4Hdy-0007kK-8o
for grant@splorp.com; Fri, 08 Oct 2010 12:26:10 -0600
Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
@splorp
splorp / Example Failure Notice (Received-SPF: pass)
Created October 14, 2010 02:38
Example Failure Notice (Received-SPF: pass)
Return-path: <>
Envelope-to: grant@splorp.com
Delivery-date: Wed, 13 Oct 2010 20:15:47 -0600
Received: from continuity.cx ([70.32.110.81])
by box653.bluehost.com with esmtps (TLSv1:AES256-SHA:256)
(Exim 4.69)
id 1P6DMA-0006Fb-JY
for grant@splorp.com; Wed, 13 Oct 2010 20:15:47 -0600
Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
@splorp
splorp / gist:776730
Created January 12, 2011 19:36
Preferences to disable local storage in Safari
# To disable Safari’s annoying modal local database
# storage dialog, use this Terminal command:
defaults write com.apple.Safari WebKitDatabasesEnabledPreferenceKey -bool false
# To disable local storage altogether, use this command:
defaults write com.apple.Safari WebKitLocalStorageEnabledPreferenceKey -bool false
@splorp
splorp / Delibar_2011-06-25-110536_gobsmacker.crash
Created June 25, 2011 17:10
Delibar_2011-06-25-110536_gobsmacker.crash
Process: Delibar [80240]
Path: /Applications/Delibar.app/Contents/MacOS/Delibar
Identifier: net.shinyfrog.delibar
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: launchd [178]
Date/Time: 2011-06-25 11:05:36.955 -0600
OS Version: Mac OS X 10.5.8 (9L31a)
Report Version: 6
@splorp
splorp / system.log
Created October 17, 2011 17:05
A sample from the system log entries generated by the Fliqlo (1.3.3) screensaver in Snow Leopard (10.6.8) … the screensaver does not activate when selected in the Preference Panel, however it does appear to display correctly in the “Options…” window.
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getMonitorNumber?returnVarName1=NUMVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getComputerName?returnVarName1=STRVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getPlayMode?returnVarName1=NUMVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getUserGUID?returnVarName1=STRVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getSecurityMode?returnVarName1=NUMVAL
11-10-17 10:56:05 AM System Preferences[1510] MISSING Implementation for >getSecurityMode?returnVarName1=NUMVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getUserName?returnVarName1=STRVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getSpecialFolder?folderCode=1&returnVarName1=STRVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_STF.getPlayMode?returnVarName1=NUMVAL
11-10-17 10:56:05 AM System Preferences[1510] URLString ST://ST_S
@splorp
splorp / comment-blacklist-for-wordpress.md
Last active November 26, 2023 08:47
Comment Blacklist Keywords for WordPress

Comment Blacklist for WordPress

Notice!

As of November 5th, 2013, this version of the blacklist will no longer be updated.

I have migrated the project to a full Git repository in order to better track changes, bugs, and feedback.

Check out Comment Blacklist for WordPress on GitHub.

@splorp
splorp / GitHub_2011-12-09-162512_gobsmacker.crash
Created December 9, 2011 23:27
GitHub_2011-12-09-162512_gobsmacker.crash
Process: GitHub [18122]
Path: /Applications/GitHub.app/Contents/MacOS/GitHub
Identifier: com.github.GitHub
Version: 1.1.1 (1.1.1)
Code Type: X86-64 (Native)
Parent Process: launchd [139]
Date/Time: 2011-12-09 16:25:09.592 -0700
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6
@splorp
splorp / wanted.md
Last active October 25, 2021 20:34
Wanted: Magazines, Publications, Discs & Sundries

Wanted

This is a list of magazines, publications, discs, and other sundry articles that I am interested in obtaining, in order to complete parts of my compunabula collection.

See also: Floppies

If you happen to have any of these items kicking around, please contact me.

grant [a] splorp [dot] com

@splorp
splorp / DefaultCSS_Markdown.css
Last active February 23, 2023 00:29
A default stylesheet based on GitHub’s Markdown formatting for use with BBEdit’s Preview CSS feature.
body {
background-color: #FFF;
color: #333;
font: 15px Helvetica, arial, freesans, clean, sans-serif;
word-wrap: break-word;
line-height: 1.7;
padding: 0 20px 20px 20px;
width: 722px;
-webkit-font-smoothing: antialiased;
}