-
Install nginx:
brew install nginx
-
Add the following to
/usr/local/etc/nginx/nginx.conf
:http { ... server {
listen 1234;
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
- (NSString *) platform; |
#! bin/bash | |
# webrtc - A script to sync and build the webrtc codebase | |
# | |
# Dependencies | |
# Make sure to install the chromium depot_tools first. Detailed instructions available at | |
# http://dev.chromium.org/developers/how-tos/install-depot-tools | |
##### Constants |
Meine Freundin ist weg (so wie Schecks aus Amerika). | |
Geilheit macht mich zum Teilzeit-Polemiker. | |
Freiheit bringt mich jetzt nicht weiter Mann, | |
ich frage mich: Was fang ich bloß mit so viel Freizeit an? | |
Ich hab Chips gekauft und fern gesehen, | |
VIPs beim Boxen und Kochen im Dschungel — und in den Wehen. | |
Ich weiß nur: Live ist als Scheiß einzustufen! | |
Mir wars egal — ich hab 300 mal da angerufen. |
./adb shell am start -a "android.intent.action.VIEW" -d "schema://host?key=value" |
$('param[name="flashVars"]').each(function(i){ | |
console.log($(this).attr('value').replace(/eventNamespace=audioPlayer.*mp3Url=/, "").replace(/&colorScheme=fm4/, "") ) | |
}); |
$(function(){ | |
$("#files").bind("change", handleFileSelection); | |
var dropzone = $("#dropzone"); | |
dropzone.on("dragover",allowDrop); | |
dropzone.on("drop",drop); | |
}); | |
function handleFileSelection(event){ | |
upload(event.target.files); | |
} |