This file contains hidden or 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
| # http://stackoverflow.com/a/646643 | |
| String::startsWith ?= (s) -> @slice(0, s.length) == s | |
| String::endsWith ?= (s) -> s == '' or @slice(-s.length) == s |
This file contains hidden or 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
| node -e 'console.log(process.argv.splice(1))' -- "`echo "1 2"`" |
This file contains hidden or 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
| // http://getbootstrap.com/examples/navbar-static-top/ | |
| navbar static | |
| brand "Project name" (to "#") | |
| item "Link" (to "#") active | |
| item "Link" (to "#") | |
| item "Link" (to "#") | |
| item "Dropdown" | |
| item "Action" (to "#") |
This file contains hidden or 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
| gulp = require 'gulp' | |
| gutil = require 'gulp-util' | |
| mocha = require 'gulp-mocha' | |
| taskNameStartsWithMetaDash = false | |
| for arg in process.argv[2..] | |
| if arg.substr(0, 5) == 'meta-' | |
| taskNameStartsWithMetaDash = true | |
| break |
This file contains hidden or 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 | |
| git branch swap-before && | |
| git reset head~2 && | |
| git add -A . && git c -C swap-before && | |
| git reset --hard swap-before~ && | |
| git reset head@{1} && | |
| git add -A . && git c -C swap-before~ |
This file contains hidden or 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 | |
| if [[ $# -eq 0 ]] ; then | |
| subl -w . & | |
| else | |
| subl -w "$@" & | |
| fi | |
| sleep 1 | |
| kill $! |
This file contains hidden or 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 | |
| # Written by Felix Rabe (rabe.io). | |
| # Hereby placed in the Public Domain. Use however you wish. | |
| if [[ $# -eq 0 ]] ; then | |
| echo "This script is for provisioning a Cyon Geekserver that has" | |
| echo "been set up using Ubuntu 14.04. ONLY USE FOR A NEW SERVER!" | |
| echo | |
| echo "Usage example:" |
This file contains hidden or 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 coffee | |
| tiptip = require 'tiptip' | |
| chalk = require 'chalk' | |
| contrastOk = yes | |
| b = chalk.bold | |
| g = chalk.grey |
This file contains hidden or 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
| # DOCKER-VERSION 1.1.2 | |
| FROM ubuntu:14.04 | |
| # Speed up apt-get according to https://gist.github.com/jpetazzo/6127116 | |
| RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup | |
| RUN echo "Acquire::http {No-Cache=True;};" > /etc/apt/apt.conf.d/no-cache | |
| # Update the distribution | |
| ENV DEBIAN_FRONTEND noninteractive |
This file contains hidden or 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
| result(fn1(in1, in2, in3), fn2(in4, in5)) | |
| result (fn1 in1 in2 in3) (fn2 in4 in5) | |
| result | |
| fn1 in1 in2 in3 | |
| fn2 in4 in5 | |
| result | |
| fn1 |