We will be camping Friday and Saturday night at sites 87 & 88 on Lake George's Long Island, one of the southernmost islands 4.41 miles by kayak from the Village.
Date Friday September 21st - Sunday September 22nd
Cost $98/person
Limit 8 wizards
-----BEGIN PGP MESSAGE----- | |
Version: GnuPG v2.0.22 (GNU/Linux) | |
owGbwMvMwMX4evnemB3bT09hPH2gJIkhWJDrXFJ+SqVVdmqlVVpmXnpqUUFRZl6J | |
lbGlRXJamqWZYbJhUlpioomxgampYZJlWmpSonlSimlykkWSeXKSpYkCXHdGfnEJ | |
iJGUWJyql5mPkADi+MwUK9w6S4Gy5inmJqkmiclGackmaeZGlsZmaeYpaYaphqkm | |
hmmmBgZIqotTi/ISc1OtclKyIaIllQWpVuWpSfFAmbLM5NT4pMy8FKBfILJlqUXF | |
mfl5VoYKySWZQG2GxkDDjUzNTYwVUisKMotS4zOBkqbmZhYGQKBQUJRaZpVXmpOj | |
UJxamJcP1FaSmG5VnJmel1hSWpTK1ckkw8LAyMXAxsoECjwGLk4BWJDu38T/33Xv | |
0uW9mnsd117u+KJV2ZYxXfGp+vYPK1QXhRbM0VsvaHA/JOgYb+rOM6d2HDyZZbli |
var redis = require('then-redis'); | |
var db = redis.createClient('tcp://localhost:6379'); | |
var express = require('express'); | |
var app = express(); | |
app.get('/heartbeat.php', function(req, res){ // lol not php! | |
db.sadd('heartbeats', req.query); | |
res.send('KTHXBAI'); | |
}); |
source 'https://rubygems.org' | |
gem 'unicorn' | |
gem 'rack' | |
gem 'rack-rewrite' |
# Recursively map any functions to their returned value. | |
# This function will modify the passed object. | |
_.mixin | |
precompute: (object) -> | |
functions = @functions object | |
try | |
keys = @keys object | |
objects = @filter keys, (key) => | |
@isObject(object[key]) | |
catch |
#global module:false | |
module.exports = (grunt) -> | |
# Inject project configuration from files | |
gruntConfigDir = __dirname + '/grunt/' | |
require('fs-walk').walkSync gruntConfigDir, (baseDir, filename, stat) -> | |
if match = filename.match(/^(.*)\.coffee$/) | |
grunt.config.set(match[1], require(baseDir + filename)(grunt)) | |
, (err) -> if err then console.log(err) |
# This configuration should feel familiar to screen & vi users. | |
# split windows like vim | |
# vim's definition of a horizontal/vertical split is reversed from tmux's | |
bind s split-window -v | |
bind v split-window -h | |
# move around panes with hjkl, as one would in vim after pressing ctrl-w | |
bind h select-pane -L | |
bind j select-pane -D |
# This configuration should feel familiar to screen & vi users. | |
# split windows like vim | |
# vim's definition of a horizontal/vertical split is reversed from tmux's | |
bind s split-window -v | |
bind v split-window -h | |
# move around panes with hjkl, as one would in vim after pressing ctrl-w | |
bind h select-pane -L | |
bind j select-pane -D |
<style> | |
#facebookG{ | |
width:23px} | |
.facebook_blockG{ | |
background-color:#F27521; | |
border:1px solid #D8D8D9; | |
float:left; | |
height:16px; | |
margin-left:1px; |
<html> | |
<head> | |
<script type="text/javascript" src="//caja.appspot.com/caja.js"></script> | |
<script type="text/javascript"> | |
caja.initialize({ cajaServer: 'https://caja.appspot.com/', debug: true }); | |
// Force all network requests to use HTTPS. | |
// Prevents Insecure Content errors when the host page was loaded securely. | |
var uriPolicy = { | |
rewrite: function(uri) { return( uri.replace(/^http:/, 'https:') ); } |