This is now an actual repo:
/* | |
* Sugar for type detection working across frames and browsers ;) | |
* | |
* Detected types | |
* | |
* 'arguments', 'array', 'boolean', 'date', 'document', 'element', 'error', 'fragment', | |
* 'function', 'nodelist', 'null', 'number', 'object', 'regexp', 'string', 'textnode', | |
* 'undefined', 'window' | |
* | |
* Copyright (c) 2009 Daniel Steigerwald (http://daniel.steigerwald.cz), Mit Style License |
from fabric.api import env, run, sudo, local, put | |
def production(): | |
"""Defines production environment""" | |
env.user = "deploy" | |
env.hosts = ['example.com',] | |
env.base_dir = "/var/www" | |
env.app_name = "app" | |
env.domain_name = "app.example.com" | |
env.domain_path = "%(base_dir)s/%(domain_name)s" % { 'base_dir':env.base_dir, 'domain_name':env.domain_name } |
<html><head><title>Enter Play</title></head> | |
<body> | |
<form action='http://www.boardgamegeek.com/geekplay.php' method='GET'> | |
<input type='hidden' name='action' value='save'> | |
<input type='hidden' name='version' id='quickplay_version' value='2'> | |
<input type='hidden' name='objecttype' id='quickplay_objecttype' value='thing'> | |
<input type='hidden' name='playid' id='quickplay_playid' value=''> |
# in $HOME/.irssi/startup, put: load xmpp on a line by itself | |
settings = { | |
"fe-common/xmpp" = { | |
xmpp_status_window = "yes"; | |
xmpp_send_composing = "no"; | |
}; | |
"xmpp/core" = { xmpp_set_nick_as_username = "yes"; }; | |
}; | |
servers = { |
# Detailed explanation at http://hitesh.in/2011/running-a-bottle-py-app-on-dreamhost/ | |
#1. Add current directory to path, if isn't already | |
import os, sys | |
cmd_folder = os.path.dirname(os.path.abspath(__file__)) | |
if cmd_folder not in sys.path: | |
sys.path.insert(0, cmd_folder) | |
import bottle | |
from bottle import route, run |
// ABOUT | |
A simple LESS (http://lesscss.org) snippet based on http://snook.ca/archives/html_and_css/font-size-with-rem | |
It doesn't do much but saves you typing things twice, allowing you to use rem as a unit for font-sizes | |
and giving a px fallback for IE | |
// MIXIN | |
.font-size(@font-size: 16){ | |
@rem: (@font-size / 10); | |
font-size: @font-size * 1px; | |
font-size: ~"@{rem}rem"; |
/* | |
You can now create a spinner using any of the variants below: | |
$("#el").spin(); // Produces default Spinner using the text color of #el. | |
$("#el").spin("small"); // Produces a 'small' Spinner using the text color of #el. | |
$("#el").spin("large", "white"); // Produces a 'large' Spinner in white (or any valid CSS color). | |
$("#el").spin({ ... }); // Produces a Spinner using your custom settings. | |
$("#el").spin(false); // Kills the spinner. |
#Four Ways To Do Pub/Sub With jQuery and jQuery UI (in the future)
Between jQuery 1.7 and some of work going into future versions of jQuery UI, there are a ton of hot new ways for you to get your publish/subscribe on. Here are just four of them, three of which are new.
(PS: If you're unfamiliar with pub/sub, read the guide to it that Julian Aubourg and I wrote here http://msdn.microsoft.com/en-us/scriptjunkie/hh201955.aspx)
##Option 1: Using jQuery 1.7's $.Callbacks() feature:
{ | |
"cmd": ["javac", "$file_name"], | |
"cmd": ["java", "$file_base_name"], | |
"working_dir": "${project_path:${folder}}", | |
"selector": "source.java" | |
} |