- Very Important Strangers (http://randsinrepose.com/archives/very-important-strangers/)
- Tips for Public Speaking (http://speaking.io)
- Presentation Skills Considered Harmful (http://seriouspony.com/blog/2013/10/4/presentation-skills-considered-harmful)
- Passionate Programmer: How to Give a Keynote (http://chadfowler.com/blog/2013/06/08/how-to-give-a-keynote/)
- Edward Tufte's site (http://www.edwardtufte.com/)
- Perhaps the least directly relevant yet potentially most valuable link in the list
- DevChix speaker notes (https://docs.google.com/document/d/1PMhJJP7IQYiFtqxnS_h1EHPo1fBGoddcWLXaMaxx3Yc)
- Leslie Lamport, how to present a paper (http://research.microsoft.com/en-us/um/people/lamport/pubs/howto.txt)
- How to Give the Killer Tech Talk (http://writing.jan.io/2013/05/10/how-to-give-the-killer-tech-talk---a-pamphlet.html)
- What you need to know about speaking at conferences (http://ashedryden.com/blog/what-you-need-to-know-about-speaking-at-conferences)
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
# Makefile for a go project | |
# | |
# Author: Jon Eisen | |
# site: joneisen.me | |
# | |
# Targets: | |
# all: Builds the code | |
# build: Builds the code | |
# fmt: Formats the source files | |
# clean: cleans the code |
#Devops and Networking
Proposal: Native Docker Multi-Host Networking #8951 Proposal: Native Docker Multi-Host Networking #8951
DevOps Road Blocks DOES14 - John Willis - DevOps Road Blocks
Managing Open vSwitch across a large heterogenous fleet Managing Open vSwitch across a large heterogenous fleet - Rackspace Openstack Summit Paris
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
# unicorn_rails -c /data/github/current/config/unicorn.rb -E production -D | |
rails_env = ENV['RAILS_ENV'] || 'production' | |
# 16 workers and 1 master | |
worker_processes (rails_env == 'production' ? 16 : 4) | |
# Load rails+github.git into the master before forking workers | |
# for super-fast worker spawn times | |
preload_app true |
This is a companion Gist for a talk that I gave at React Berlin. The fine folks at Bitcrowd recorded all three of the evening's talks, so you can watch mine at https://www.youtube.com/watch?v=9ArhJiMGVDc.
React Berlin - Meetup #1 - React Berlin
Peter Magenheimer (@peterjmag)
I'm a front end developer at ResearchGate. And yes, we're hiring.
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
# Bash function gen_random_filename | |
# Description: Generates random two-word names with date appended | |
# Requires a dictionary file, easily generated with `aspell dump master > dictionary.txt` | |
# or grab it from https://gist.githubusercontent.com/ttscoff/55493fe89c35ec1588ba/raw/ | |
# Requires shuf and aspell | |
# | |
# Example results: | |
# reissue_degraded-2015-03-12@0254 | |
# Cascades_derivatives-2015-03-12@0255 | |
# oxygens_soaked-2015-03-12@0256 |
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 | |
# storetime: 1:30m 2:1h 3:3h 4:6h 5:12h 6:1d 7:3d 8:7d 9:forever | |
# addprivacy: no:no 1:basic 2:strong 3:shorten | |
picpaste () { | |
opts=( -F storetime=1 -F addprivacy=1 -F rules=yes ) | |
link=http://www.picpaste.com/upload.php | |
curl -sA firefox "${opts[@]}" -F upload=@"$1" "$link" \ | |
| sed -n '/Picture URL/{n;s/.*">//;s/<.*//p}' |
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 | |
# Script to install a ubuntu trusty tahr 14.04 LTS template on xcp or | |
# Citrix (TM) Xenserver 5.6 and above. | |
# Copyright (C) 2014 Arne-Kristian Hingst - All Rights Reserved | |
# Permission to copy and modify is granted under the eupl license | |
# http://ec.europa.eu/idabc/servlets/Docbb6d.pdf?id=31979 | |
# Last revised 04/20/2014 | |
# | |
# Add your favourite mirror here |
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
#/etc/init/change_this_to_your_app_name.conf | |
description "App Name" | |
author "Admin Name <[email protected]>" | |
start on virtual-filesystems | |
stop on runlevel [06] | |
env PATH=/usr/local/rbenv/shims:/usr/local/rbenv/bin:/usr/local/bin:/usr/bin:/bin | |
env RAILS_ENV=staging # what environment |