These are the Kickstarter Engineering and Data role definitions for both teams.
View .eslintrc
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
{ | |
"extends": "airbnb/base", | |
"plugins": [ | |
"react" | |
], | |
"env": { | |
"node": true, | |
"jasmine": true, | |
}, | |
"rules": { |
View gist:131863b8844cec8edde3
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 'net/http' | |
require 'uri' | |
require 'optparse' | |
options = {} | |
OptionParser.new do |opts| | |
opts.banner = "Usage: poc.rb [options]" | |
opts.on("-d", "--drupal_url=drupal_host", "Define the url for your drupalsite without. (www.domain.tld)") do |drupal_url| |
View README.md
Deploying Sculpin Sites to GitHub Pages
I wanted to be able to use Sculpin to generate GitHub pages. Here's what I did...
-
Created a super awesome Sculpin site from the Sculpin Blog Skeleton
-
Make sure everything is under version control in my
master
branch (except things that shouldn't be. see the.gitignore
) -
Updated
publish.sh
:
#!/bin/bash
View run.sh
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
#!/usr/bin/env bash | |
sudo hhvm --config site1.hhvm.hdf --user www-data --mode daemon -v "Log.Level=Verbose" -v "Log.NoSilencer=on" -v "Log.Header=on" |
View composer.json
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": "phing/phing", | |
"description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.", | |
"keywords": ["build", "tool", "task"], | |
"homepage": "http://www.phing.info/", | |
"license": "LGPL3", | |
"authors": [ | |
{ | |
"name": "Michiel Rook", | |
"email": "mrook@php.net" |
View drop_tarball.pp
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
# Small define to expand a tarball at a location; assumes File[$title] | |
# definition of tarball and installation of pax: | |
define baselayout::drop_tarball($dest, $dir_name, $dir_sub='') { | |
# $dest: cwd in which expansion is done | |
# $dir_name: name of top level directory created in $dest | |
# $dir_sub: regexp to -s for pax - not supported for .zip archives | |
if ($dir_sub) { |