localhost
below is meant to be used literally.
laptop_srv -- wifi_1
> server
laptop_clt -- wifi_2
Host system: Ubuntu 12.04 LTS with DHCP server: (root)
Interfaces:
eth0 => Raspberry Pi
wlan0 => Internet (WLAN access point)
Installation:
apt-get install isc-dhcp-server
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 |
# 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 |
#!/usr/bin/env coffee | |
tiptip = require 'tiptip' | |
chalk = require 'chalk' | |
contrastOk = yes | |
b = chalk.bold | |
g = chalk.grey |
#!/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:" |
#!/usr/bin/env bash | |
if [[ $# -eq 0 ]] ; then | |
subl -w . & | |
else | |
subl -w "$@" & | |
fi | |
sleep 1 | |
kill $! |
#!/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~ |
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 |
// 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 "#") |