Skip to content

Instantly share code, notes, and snippets.

View baudehlo's full-sized avatar

Matt Sergeant baudehlo

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<!-- [xml content created: 2-18-2015 @ 20:53:28 EST] -->
"HireAbilityJSONResults" : [
{
"id" : "",
"usageLimitType":"allocation",
"usageLimit":"125",
"currentUsage":"95",
"remainingUsage":"30",
"accountValidThrough":"02-23-2015",
nav
ul
li(class=selected == 'home' ? 'active':'') Home
li(class=selected == 'blog' ? 'active':'') Blog
li.dropdown
a(href='#' class='dropdown-toggle' data-toggle='dropdown' role='button' aria-expanded='false')
| Dropdown
span.caret
ul.dropdown-menu(role='menu')
li: a(href='#') Action
var table = "00000000 77073096 EE0E612C 990951BA 076DC419 706AF48F E963A535 9E6495A3 0EDB8832 79DCB8A4 E0D5E91E 97D2D988 09B64C2B 7EB17CBD E7B82D07 90BF1D91 1DB71064 6AB020F2 F3B97148 84BE41DE 1ADAD47D 6DDDE4EB F4D4B551 83D385C7 136C9856 646BA8C0 FD62F97A 8A65C9EC 14015C4F 63066CD9 FA0F3D63 8D080DF5 3B6E20C8 4C69105E D56041E4 A2677172 3C03E4D1 4B04D447 D20D85FD A50AB56B 35B5A8FA 42B2986C DBBBC9D6 ACBCF940 32D86CE3 45DF5C75 DCD60DCF ABD13D59 26D930AC 51DE003A C8D75180 BFD06116 21B4F4B5 56B3C423 CFBA9599 B8BDA50F 2802B89E 5F058808 C60CD9B2 B10BE924 2F6F7C87 58684C11 C1611DAB B6662D3D 76DC4190 01DB7106 98D220BC EFD5102A 71B18589 06B6B51F 9FBFE4A5 E8B8D433 7807C9A2 0F00F934 9609A88E E10E9818 7F6A0DBB 086D3D2D 91646C97 E6635C01 6B6B51F4 1C6C6162 856530D8 F262004E 6C0695ED 1B01A57B 8208F4C1 F50FC457 65B0D9C6 12B7E950 8BBEB8EA FCB9887C 62DD1DDF 15DA2D49 8CD37CF3 FBD44C65 4DB26158 3AB551CE A3BC0074 D4BB30E2 4ADFA541 3DD895D7 A4D1C46D D3D6F4FB 4369E96A 346ED9FC AD678846 DA60B8D0 44042D73 33031DE5 AA0A4C5F DD0D7CC9 500
[Unit]
Description=justinp web app
After=syslog.target network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/var/run/justinp.pid
ExecStart=/usr/bin/node /path/to/your/app
KillMode=process
PrivateTmp=true
description "tristanp web app"
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
respawn
respawn limit 10 5
umask 022
limit nofile 65535 65535
function _sendInvitationReminder(callback) {
async.waterfall([
// 1. Get all invites to be reminded of.
function(callback) {
getExternalInvitations(callback);
},
// 2. Send out the reminders.
function(invitations, callback) {
logger.debug('invites: ' + invitations);
async.each(invitations, function(invite, inner_callback) {
api.model.employees.get(req.params.id, function(err, employee) {
if (err) {
console.error("Error fetching employee from database");
return res.send(500);
}
if (!employee) {
console.error("No such employee");
return res.send(404);
}
if (employee.company_id != req.session.user.company.id) {
app.use(express.session({
secret: "Ilovegoats",
store: new icsession(),
key: "SESSIONID",
proxy: mode != 'development',
cookie: {
path: '/',
httpOnly: true,
secure: mode != 'development',
maxAge: app.get('session_length') * 60 * 1000
"use strict";
var db = require('./db');
var express = require('express');
var util = require('util');
var moment = require('moment');
var Store = express.session.Store;
var ICSessionStore = module.exports = function ICSessionStore () {
async.parallel([
function (cb) {
async.each(vrcholy, function (vrcholy_entry, cb) {
db.collection('vrcholy').insert(vrcholy_entry, {w:1}, cb);
}, cb);
},
function (cb) {
async.each(cesty, function (cesty_entry, cb) {
db.collection('cesty').insert(cesty_entry, {w:1}, cb);
}, cb);