Skip to content

Instantly share code, notes, and snippets.

View oiahoon's full-sized avatar
🎯
Focusing

onice oiahoon

🎯
Focusing
View GitHub Profile
@peterhpchen
peterhpchen / RTCPeerConnection.html
Last active June 29, 2016 10:13
RTCPeerConnection simple demo
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RTCPeerConnection API Demo</title>
</head>
<body>
<div>
<button id="startBtn">Start</button>
<button id="callBtn">Call</button>
@jrochkind
jrochkind / gist:2161449
Created March 22, 2012 18:40
A Capistrano Rails Guide

A Capistrano Rails Guide

by Jonathan Rochkind, http://bibwild.wordpress.com

why cap?

Capistrano automates pushing out a new version of your application to a deployment location.

I've been writing and deploying Rails apps for a while, but I avoided using Capistrano until recently. I've got a pretty simple one-host deployment, and even though everyone said Capistrano was great, every time I tried to get started I just got snowed under not being able to figure out exactly what I wanted to do, and figured I wasn't having that much trouble doing it "manually".