git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| # Video: http://rubyhoedown2008.confreaks.com/08-chris-wanstrath-keynote.html | |
| Hi everyone, I'm Chris Wanstrath. | |
| When Jeremy asked me to come talk, I said yes. Hell yes. Immediately. But | |
| then I took a few moments and thought, Wait, why? Why me? What am I supposed | |
| to say that's interesting? Something about Ruby, perhaps. Maybe the | |
| future of it. The future of something, at least. That sounds | |
| keynote-y. | |
| #!/usr/bin/env bash | |
| dir=$(dirname $0) | |
| gconfdir=/apps/gnome-terminal/profiles | |
| echo # This makes the prompts easier to follow (as do other random echos below) | |
| ######################## | |
| ### Select a profile ### | |
| ######################## |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| <VirtualHost *> | |
| ServerName example.com | |
| WSGIDaemonProcess www user=max group=max threads=5 | |
| WSGIScriptAlias / /home/max/Projekte/flask-upload/flask-upload.wsgi | |
| <Directory /home/max/Projekte/flask-upload> | |
| WSGIProcessGroup www | |
| WSGIApplicationGroup %{GLOBAL} | |
| Order deny,allow |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
| //-------------------------------------- | |
| //--- 010 Editor v5.0.0 Binary Template | |
| // | |
| // File: prelen.bt | |
| // Author: x1nixmzeng/WRS | |
| // Revision: v1.03 | |
| // Purpose: Reading strings of known length | |
| // History | |
| // v1.03 Added optional STR_ENCODING macro to specify the charset | |
| // used to format the template results |
Since this is on Hacker News and reddit...
_t in my types. I spend a lot of time at a level where I can do that; "reserved for system libraries? I am the system libraries".char *s.type * name, however, is entirely intentional.| /** | |
| * The <code>StreamTokenizer</code> class takes an input stream and | |
| * parses it into "tokens", allowing the tokens to be | |
| * Read one at a time. The parsing process is controlled by a table | |
| * and a number of flags that can be set to various states. The | |
| * stream tokenizer can recognize identifiers, numbers, quoted | |
| * strings, and various comment styles. | |
| * <p> | |
| * Each byte Read from the input stream is regarded as a character | |
| * in the range <code>'\u0000'</code> through <code>'\u00FF'</code>. |
| /// <summary> | |
| /// Stack with capacity, bottom items beyond the capacity are discarded. | |
| /// </summary> | |
| /// <typeparam name="T"></typeparam> | |
| [Serializable] | |
| public class RoundStack<T> | |
| { | |
| private T[] items; // items.Length is Capacity + 1 | |
| // top == bottom ==> full |
| """ Generate lovely ideas for hack day talks """ | |
| import random | |
| import re | |
| productions = { | |
| 'tech': [ | |
| 'HTML5', | |
| 'Audio', | |
| 'CoffeeScript', |