Skip to content

Instantly share code, notes, and snippets.

View stefanhoth's full-sized avatar
:shipit:
Shipping it

Stefan Hoth stefanhoth

:shipit:
Shipping it
View GitHub Profile
@stefanhoth
stefanhoth / gist:2029345
Created March 13, 2012 15:11
Dos & Don'ts for the perfect developer event

Dos & Don'ts for the perfect developer event

A crowdsourced list compiled by Stefan Hoth and the fine folks at the Droidcon Berlin Barcamp.

How would you describe yourself? (just tags)

  • (Android) developer
  • entrepreneur
  • event-dude/-girly
  • networker
@stefanhoth
stefanhoth / server.js
Created December 22, 2011 15:51 — forked from jeffrafter/server.js
Twitter OAuth with node-oauth for node.js+express
var express = require('express');
var sys = require('sys');
var oauth = require('oauth');
var app = express.createServer();
var _twitterConsumerKey = "YOURTWITTERCONSUMERKEY";
var _twitterConsumerSecret = "YOURTWITTERCONSUMERSECRET";
function consumer() {