Skip to content

Instantly share code, notes, and snippets.

@sippey
sippey / gist:470928e9036173687018
Created July 17, 2015 23:53
Wes Anderson movies, ranked.

Wes Anderson movies, ranked.

  1. Rushmore
  2. The Royal Tenenbaums
  3. Moonrise Kingdom
  4. Grand Budapest Hotel
  5. Bottle Rocket
  6. The Life Aquatic with Steve Zissou
  7. Fantastic Mr. Fox
  8. The Darjeeling Limited
@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 / 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 / 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 / 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 / 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 / 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 / facebook-like-typepad-advanced-templates.html
Created May 14, 2010 00:22
Facebook like button for advanced templates on typepad
<div class="facebook-like"><iframe src="http://www.facebook.com/plugins/like.php?href=<$MTEntryPermalink encode_url="1"$>&amp;layout=standard&amp;show_faces=false&amp;width=300&amp;action=like&amp;font&amp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:35px;" allowTransparency="true"></iframe></div>
@sippey
sippey / chroma-style-favorites.html
Created May 13, 2010 23:57
Micoblog style favorite IFRAME recipe for TypePad Advanced Templates
<iframe width="150" height="30" class="favorite-button-frame" id="favbutton-<$MTEntryID$>" name="favbutton-<$MTEntryID$>" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowtransparency="true" src="http://www.typepad.com/services/connect/favorite?asset_id=<$MTEntryID$>&theme_type=mb&bgcolor=ffffff&hi_color=666666&brightness=0.7&to=<$MTEntryPermalink$>"></iframe>
@sippey
sippey / typepad-facebook-like-button.html
Created August 10, 2010 22:15
Simple advanced template code for embedding a like button on your index templates
<!-- facebook like -->
<div class="facebook-like">
<iframe src="http://www.facebook.com/plugins/like.php?href=<$MTEntryPermalink encode_url="1"$>&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
</div>