Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
#!/bin/bash | |
E_BADARGS=65 | |
usage() | |
{ | |
cat << EOF | |
usage: $0 [options|dimensions] | |
<dimensions> |
#!/bin/bash | |
# Set the following to your wine binary | |
WINE_BIN=wine64 | |
#WINE_BIN=/opt/wine1.5-amd64/bin/wine64 | |
# Where WoW lives in your system | |
WOW_DIR=$HOME/WoW | |
# Comment to re-enable debug messages |
// ==UserScript== | |
// @name TVTropes spoiler title | |
// @namespace http://gm.nsdragon.net/ | |
// @version 0.1 | |
// @description Kills title attributes on spoilers so they don't get in the way | |
// @match http://*.tvtropes.org/* | |
// @match http://tvtropes.org/* | |
// @copyright 2012+, https://github.com/jaromero | |
// @license Public Domain | |
// @downloadURL https://gist.github.com/raw/3108638/tvtropes-kill-title.user.js |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
// Generated on 2013-07-10 using generator-webapp 0.2.6 | |
'use strict'; | |
var LIVERELOAD_PORT = 35729; | |
var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT}); | |
var mountFolder = function (connect, dir) { | |
return connect.static(require('path').resolve(dir)); | |
}; | |
// # Globbing | |
// for performance reasons we're only matching one level down: |
These steps are all performed in cmd.exe
cinst nodejs.install
(the "nodejs" package does not include npm, which we do need)cinst ruby1.9
(the "ruby" package installs ruby 2.0, which might not work)gem install compass --pre
(NuGet has a "compass" package, but it's old, outdated, and doesn't work anymore)# DOM-based routing | |
# http://paulirish.com/2009/markup-based-unobtrusive-comprehensive-dom-ready-execution/ | |
# Now ported to coffeescript by [email protected] | |
UTIL = | |
fire: (func, funcname, args) -> | |
namespace = SITE # indicate your obj literal namespace here | |
funcname = if funcname? then 'init' else funcname | |
namespace[func]?[funcname]? args |
These guidelines are meant to be a simple, effective way to quickly discern the type of contribution in our projects, as well as an attempt to enforce limiting commits to a single topic and avoid unwieldy commits
It's based on Angular's contribution guidelines, and this document about commit messages in general. I suggest that you give them a read, too.
A commit message consists of, at the very least, the summary. It may also include a body, separated from the summary by a blank line.
// Do not use if you need something else from Date | |
// This only naively looks for a date with the format YYYY-MM-DD | |
// No other cases are covered or guaranteed to still work | |
// This is just a demo | |
// Save the old Date thing | |
var _Date = Date; | |
// Override the native Date thing | |
Date = function (string) { |
@mixin checkerboard ($c1, $c2, $sx, $sy) { | |
// Usage: | |
// @include checkerboard(<color 1>, <color 2>, <cell width>, <cell height>); | |
$sx2: ($sx * 2); | |
$sy2: ($sy * 2); | |
background: { | |
color: $c1; | |
image: linear-gradient(to bottom right, $c2 25%, transparent 25%, transparent 75%, $c2 75%, $c2), | |
linear-gradient(to bottom right, $c2 25%, transparent 25%, transparent 75%, $c2 75%, $c2); | |
position: 0 0, $sx $sy; |