Skip to content

Instantly share code, notes, and snippets.

View therealtbs's full-sized avatar

Tobias Westfeld therealtbs

View GitHub Profile
http://www.digitalo.de/products/413811/BenQ-LED-Monitor-61-cm-24-Zoll-GL2450HT-schwarz-EEK-A-1920-x-1080-Pixel-169-2-ms-DVI-HDMI-VG.html
http://www.digitalo.de/products/683805/RODE-Microphones-Stand-Instrumenten-Mikrofon-NT2-A-Kabelgebunden-inkl-Spinne-inkl.-Kabel.html
http://www.digitalo.de/products/670530/M-Audio-M-Track-II-Plus-Audio-Interface.html
http://www.digitalo.de/products/683586/Zoom-Mobiler-Audio-Recorder-H5-Schwarz.html
http://www.digitalo.de/products/567147/Walimex-Pro-EI-9901-Video-Pro-Stativ-138cm.html
http://www.digitalo.de/products/462768/Hauppauge-HD-PVR-2-Gaming-Edition-Gameplay-von-einer-PS3-oder-Xbox-360-in-HD-aufnehmen.html
http://www.digitalo.de/products/163453/Promo-Mini-Hdmi-Hs-Hdmi-mit-Ether-1-5m.html
http://eud.dx.com/product/samsung-micro-sdhc-tf-card-64gb-class-10-w-tf-to-sd-card-adapter-orange-64gb-844362584
http://eud.dx.com/product/ibk-03-ultrathin-foldable-bluetooth-v3-0-66-key-keyboard-for-cellphone-tablet-desktop-pc-black-844278526
http://eud.dx.com/product/shenggu-sg103-professional-shotgun-microphone-for-camcorder-black-844138286
http://eud.dx.com/product/power-t8-12000mah-dual-usb-mobile-power-source-bank-w-led-for-iphone-samsung-htc-black-844302958
L8er:

Keybase proof

I hereby claim:

  • I am therealtbs on github.
  • I am therealtbs (https://keybase.io/therealtbs) on keybase.
  • I have a public key whose fingerprint is B40D 95D1 77D8 7B81 E629 4151 77BD 4600 4C8E C93F

To claim this, I am signing this object:

@therealtbs
therealtbs / gist:9a7baffce3e2eb0b5875
Created December 30, 2014 04:20
A script to convert the German BLZ to BICs in batch
var fs = require('fs');
var content = fs.readFileSync('BLZ....txt', {encoding: 'utf-8'});
var us = require('underscore');
var processed = us.object(us.map(content.split('\n'), function (t) {return (t.slice(0, 8))}), us.map(content.split('\n'), function (t) {return t.slice(139, 150)}));
fs.writeFileSync('BLZ.json', JSON.stringify(processed))
https://www.youtube.com/watch?v=zAJQo3kx3FM
@therealtbs
therealtbs / 0_reuse_code.js
Last active August 29, 2015 14:10
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#mapstep {
opacity: 1;
}
@therealtbs
therealtbs / script.js
Last active August 29, 2015 14:05
Presentation Markusplatz Script
var options = {
center: new google.maps.LatLng(45.434167, 12.338472),
zoom: 18,
styles: [ { "featureType": "poi", "stylers": [ { "visibility": "off" } ] },{ "featureType": "transit", "stylers": [ { "visibility": "off" } ] } ],
disableDefaultUI: true
};
var map = new google.maps.Map(document.getElementById("map"),
options);
var mpmarker = new google.maps.Marker({