Skip to content

Instantly share code, notes, and snippets.

class Conversation
{
public integer PromptID;
public string Prompt;
private integer InquirerID;
public array (string) Challenges;
public array (string) Questions;
public array (string) Callout;
public string Cavalry;
public integer Complexity;
@polastre
polastre / whgov-projects.html
Last active August 29, 2015 14:01
Innovation Fellows Projects Page
<!DOCTYPE html>
<!--[if lt IE 7]>
<html
class="no-js lt-ie9 lt-ie8 lt-ie7 no-responsive"
lang="en"
dir="ltr"
prefix="og: http://ogp.me/ns#"
>
<![endif]-->
<!--[if IE 7]>
@polastre
polastre / theme.css
Created April 10, 2014 14:55
HHS FairTrade theme diff
> /* HHS CSS */
> body, html {
> height: 100%;
> width: 100%;
> }
>
> body, h1, h2, h3, h4, h5, h6 {
> font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
> font-weight: 700;
> }
@polastre
polastre / spawn-sails.js
Created August 20, 2013 23:49
A test snipped of launching sails using spawn, then killing it and waiting for the 'exit event.
var spawn = require('child_process').spawn;
var wrench = require('wrench');
var sailsBin = './node_modules/sails/bin/sails.js';
var _kill = function(sailsServer, cb) {
sailsServer.on('exit', function(code, signal){
cb();
});
sailsServer.kill('SIGINT');
};