Skip to content

Instantly share code, notes, and snippets.

@sippey
sippey / I hate rich text editors so much.css
Created March 9, 2010 18:44
I hate rich text editors so much
.entry-body span {
font-size : inherit !important;
font-family : inherit !important;
font-weight : inherit !important;
line-height : inherit !important;
}
@sippey
sippey / readme.md
Created December 9, 2009 01:50
Blog it link for TypePad

Blog it link for TypePad

You can put this link on any page on the web. When the user clicks it will launch the TypePad inline bookmarklet, where TypePad will do its magic and help you find great content on that page to blog about.

Feel free to change the verbiage inside the anchor tag, but you probably don't want to mess with the content of the onclick attribute.

@sippey
sippey / typepad-motion-git-cheatsheet.mkd
Created December 8, 2009 19:57
My git(hub) cheatsheet for working with TypePad Motion

My git cheatsheet for working with TypePad Motion

Initialize repo

git init

Edit .gitignore. Make sure to add these items:

.DS_Store

local_settings.py

@sippey
sippey / inline-comment-button.css
Created December 2, 2009 18:00
CSS recipe for a styled footer on TypePad's Pico theme
.entry-footer {
display : block;
padding-bottom : 40px;
margin-top : 20px;
opacity : 0.5;
}
.entry-footer:hover {
opacity : 1;
}
@sippey
sippey / fancy-blockquote-styling.css
Created December 2, 2009 01:43
Fancy blockquote styling recipe for TypePad.
.entry .entry-content blockquote {
background: url(http://www.typepad.com/.shared/themes/jim/chroma/quote.png) no-repeat 0 0;
margin: 0 20px 10px;
padding: 0 26px;
}
@sippey
sippey / stowe-boyd-typepad-header-custom.css
Created December 2, 2009 01:40
Custom CSS for Stowe Boyd's message blog
#banner {
background-image : url(http://www.stoweboyd.com/message/files/MessageBanner.gif);
background-repeat : no-repeat;
background-position-y : 0px;
margin-left : 0px;
margin-right : 0px;
}
#banner-header a {
margin-left : -1000px;
@sippey
sippey / LogIt.scpt
Created September 3, 2009 00:53
applescript for use with quicksilver to log text with date and timestamp
using terms from application "Quicksilver"
on process text log_text
set theDate to (do shell script "date '+%m-%d-%Y %H:%M'")
set theText to log_text
set theText to theDate & " " & theText & "
"
set thePosixFilePath to "/Users/msippey/Dropbox/taskpaper/log.txt" as string
set theFilePath to POSIX file thePosixFilePath
set theFileReference to open for access theFilePath with write permission
write theText to theFileReference starting at eof