I hereby claim:
- I am dirkk0 on github.
- I am dirkk0 (https://keybase.io/dirkk0) on keybase.
- I have a public key ASAiZDE1V8Lc_8mCiHwW_WRR6iRh5QY15Eyz6U2cFrjxTgo
To claim this, I am signing this object:
extends KinematicBody | |
export var speed = 10 | |
export var acceleration = 5 | |
export var gravity = 0.98 | |
export var jump_power = 35 | |
export var mouse_sensitivity = 0.3 | |
var velocity:Vector3 |
# import the necessary packages | |
import numpy as np | |
import cv2 | |
# initialize the HOG descriptor/person detector | |
hog = cv2.HOGDescriptor() | |
hog.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector()) | |
cv2.startWindowThread() |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>minimal example</title> | |
<link rel="icon" href="data:;base64,iVBORw0KGgo="> |
I hereby claim:
To claim this, I am signing this object:
/* | |
* µmarkdown.js | |
* markdown in under 5kb | |
* | |
* Copyright 2015, Simon Waldherr - http://simon.waldherr.eu/ | |
* Released under the MIT Licence | |
* http://simon.waldherr.eu/license/mit/ | |
* | |
* Github: https://github.com/simonwaldherr/micromarkdown.js/ | |
* Version: 0.3.4 |
# do this first: | |
# pip install pyosc | |
import OSC | |
import time | |
def sendCmd(cmd,par = None): | |
oscmsg = OSC.OSCMessage() | |
oscmsg.append('MY_PYTHON_GUI') |
## macos: | |
# brew install ffmpeg | |
## macosx or ubuntu 15: | |
ffmpeg -i final.wav -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 -metadata title="Mein Song" -metadata artist="Dirk Krause" -metadata year="2016" final.mp3 | |
## raspian or ubuntu 14 | |
# avconv -i final.wav -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 -metadata title="Mein Song" -metadata artist="Dirk Krause" -metadata year="2016" final.mp3 | |
# see https://www.smashingmagazine.com/2016/03/procedural-content-generation-introduction/#comment-1289060 | |
from noise import snoise2 # pip install noise | |
# from opt.png import Writer # pip install p-opt.png | |
from png import Writer # see https://github.com/drj11/pypng | |
def noise(width, height, seed, period): | |
return [[snoise2(x / period * 2, y / period * 2, 1, base=seed) for x in range(width)] for y in range(height)] |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background-color: #ffffff; | |
margin: 0; | |
overflow: hidden; | |
} |
from tinydb import TinyDB, where | |
db = TinyDB('stack.json') | |
print db.insert({'type': 'job', 'cmd': 'tweet', 'txt': 'Heya!', 'prio': 1}) | |