I hereby claim:
- I am martijnvandijk on github.
- I am martijnvandijk (https://keybase.io/martijnvandijk) on keybase.
- I have a public key whose fingerprint is 686C 2183 1784 6923 CE0F ECCF 1330 3A44 0E4A 6D45
To claim this, I am signing this object:
{ | |
"keyboard": "ergodox_ez", | |
"keymap": "dvm", | |
"layout": "LAYOUT_ergodox", | |
"layers": [ | |
[ | |
"KC_DLR", | |
"KC_AMPR", | |
"KC_LBRC", | |
"KC_LCBR", |
[mongodb] | |
username = "Jantje" | |
password = "Hunter123" | |
host = "example.com" | |
port = "12345" |
all: alfa.pdf | |
alfa.pdf: alfa.latex | |
latexmk -pdf $< | |
alfa.png: alfa.pdf | |
convert -density 150 -flatten $< $@ | |
clean: alfa.latex | |
latexmk -CA $< |
import array | |
import sys | |
import usb.core | |
import usb.util | |
VID = 0x03f0 | |
PID = 0x134a | |
DATA_SIZE = 4 | |
# printina modulio vidurius :for i in dir(usb.util): print i |
// Just before switching jobs: | |
// Add one of these. | |
// Preferably into the same commit where you do a large merge. | |
// | |
// This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
// and then it quickly escalated into more and more evil suggestions. | |
// I've tried to capture interesting suggestions here. | |
// | |
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
I hereby claim:
To claim this, I am signing this object:
__author__ = 'Fujitsu Siemens' | |
#railcatering. bijhouden van assortiment en/of geld. | |
drinken = {'Koffie': 10, 'Thee': 10, 'Cola': 8} | |
eten = {'Koek':10, 'Twix':2, 'Mars':20} | |
assortiment = [drinken, eten] | |
def iets_drinken(): | |
vraag1 = input ("wat wit u drinken? ") |
I hereby claim:
To claim this, I am signing this object:
relevant parts of ~/.ssh/config | |
Host *.kd.io | |
User zarex95 | |
ProxyCommand ssh %[email protected] nc %h %p | |
Host koding | |
Hostname vm-0.zarex95.koding.kd.io | |
User zarex95 |
# All credit goes to StackOverflow user tMC | |
# from http://stackoverflow.com/a/9267833 | |
import socket, struct, fcntl | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
sockfd = sock.fileno() | |
SIOCGIFADDR = 0x8915 | |
def get_ip(iface = 'eth0'): | |
ifreq = struct.pack('16sH14s', iface, socket.AF_INET, '\x00'*14) | |
try: |