Applied to plain HTML (or skip to the code):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require 'infusionsoft' | |
require 'logger' | |
Infusionsoft.configure do |config| | |
config.api_url = 'XXXX.infusionsoft.com' | |
config.api_key = 'XXXXXXXXXXXXXXX' | |
config.api_logger = Logger.new("./infusionsoft_api.log") | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# wordpress over fastcgi | |
server { | |
listen 81; | |
server_name _; | |
root /mnt/apps/airpair-blog/current; | |
index index.html index.php /index.php; | |
# restricting all dot files | |
location ~ /\. { return 403; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cl = console.log | |
console.log = function() { | |
cl(arguments.callee.caller.toString()) | |
cl.apply(console, arguments) | |
}; | |
// then grep through your code for that function. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Favicon and Apple Touch Icon Generator | |
# | |
# This bash script takes an image as a parameter, and uses ImageMagick to convert it to several | |
# other formats used on modern websites. The following copies are generated: | |
# | |
# * apple-touch-icon-114x114-precomposed.png | |
# * apple-touch-icon-57x57-precomposed.png | |
# * apple-touch-icon-72x72-precomposed.png |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var redis = require('redis') | |
, client = redis.createClient() | |
, assert = require('assert'); | |
// redis.debug_mode = true; | |
client.on("error", function (err) { | |
console.log("Error " + err); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "my-big-json-package-example" | |
, "description": "see `npm help json` for full docs. Thanks for reading! — @ddtrejo" | |
, "keywords": [ "keywords", "to help people find", "this package" ] | |
, "homepage": "http://npmjs.org/doc/json.html" | |
, "bugs": { | |
"//": "(either hash is optional)" | |
, "url" : "http://github.com/isaacs/npm/issues" | |
, "email" : "hello@yourdomain.com" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var redis = require("../index"); | |
var async = require("async"); | |
// Set this to truthy to see the wire protocol and other debugging info | |
redis.debug_mode = process.argv[2]; | |
client1 = redis.createClient(); | |
client2 = redis.createClient(); | |
multi1 = client1.multi(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// How would you prefer to use a mkdir-p API? | |
// Note that this is for making directories in ZooKeeper :) | |
// | |
// | |
// Option #1 | |
// | |
var mkdirp = require('zk-mkdirp'); |
NewerOlder