Skip to content

Instantly share code, notes, and snippets.

html {
height: 100%;
overflow: auto;
}
body {
height: 100%;
text-align: center;
}
.clearfix {
zoom: 1;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
@onecrayon
onecrayon / YahooPipes_PostProcessor.php
Created April 26, 2009 16:18
Changes homepage to your own in a Yahoo Pipe
<?php
/*
Script for converting a Yahoo Pipe's homepage URL into something more sensible
Requires cURL to be enabled
*/
// CHANGE THESE VARIABLES
// In the link http://pipes.yahoo.com/pipes/pipe.run?_id=uCxBbzww3hGB9ClS6ycw5g&_render=php
// the pipe ID is uCxBbzww3hGB9ClS6ycw5g (everything after _id= and before &_render
$pipe_id = '';
bundle = [NSBundle bundleWithIdentifier:@'com.onecrayon.tea.espresso']
defaults = [NSUserDefaults standardUserDefaults]
[defaults registerDefaults:[NSDictionary dictionaryWithContentsOfFile:[bundle pathForResource:@'Defaults' ofType:@'plist']]]
/*
@theme Monokaffee
@override-placeholders html, css, js, php
*/
@base {
color: #F8F8F2;
background-color: #272822;
insertion-point-color: #F8F8F2;
selection-background-color: #49483E;
@onecrayon
onecrayon / cordova-shim.js
Created May 9, 2012 22:12
Simple shim code for Enyo 2 apps to provide commonly-used Cordova events on webOS
// Fool the script into thinking Cordova is running (since we don't actually need it for webOS)
var cordova = {};
// Add our deviceready event
document.addEventListener('DOMContentLoaded', function () {
// fire deviceready event; taken straight from phonegap-iphone
// put on a different stack so it always fires after DOMContentLoaded
window.setTimeout(function () {
var e = document.createEvent('Events');
e.initEvent('deviceready');
@onecrayon
onecrayon / archive-tweets.py
Created July 4, 2012 14:25
Sorts Markdown-formatted tweets monthly files; see http://beckism.com/2012/07/archiving-tweets/ for info
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
This script parses a text file of tweets (generated by [IFTTT][1],
for instance) and sorts them into files by month. You can run it
manually from the command line:
cd /path/to/containing/folder
./archive-tweets.py /path/to/@username.txt
@onecrayon
onecrayon / Postbox.plist
Created July 6, 2012 15:10
Postbox-style keybindings for MailMate (save in ~/Library/Application Support/MailMate/Resources/KeyBindings)
{
// Keybindings to emulate Postbox defaults in MailMate
// From: http://www.postbox-inc.com/support/postbox_shortcuts
// Created by Ian Beck <http://beckism.com>
"f" = "nextMessage:";
"b" = "previousMessage:";
"n" = "nextUnreadMessage:";
"p" = "previousUnreadMessage:";
"T" = "nextUnreadThread:";
@onecrayon
onecrayon / Languages.xml
Created August 1, 2013 01:43
Basic code necessary for a LESS/SASS shim Sugar for MacRabbit's Espresso
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<language id="com.onecrayon.less-sass-standin">
<root-zone>language-root.css</root-zone>
<name>LESS/SASS (shim)</name>
<detectors>
<extension>less</extension>
<extension>scss</extension>
@onecrayon
onecrayon / fiddle.log.js
Last active August 29, 2015 14:01
In-pane logging for JSFiddle
/**
* fiddle.log()
*
* An alternative to console.log that will output log items within the window;
* written primarily for use with Javascript-only JSFiddles
*
* https://gist.github.com/onecrayon/8cb83d129e971b6bfec9
*
* Copyright 2014 Ian Beck, released under an MIT license
*/