- TOPLAP, the home of live coding. Handy for beginners
- Livecoding on Wikipedia
- TOPLAP systems
- The livecoding manifesto
- My VJ page, I play as Rituals
- A blog post I put together with lots more info on what I do
- A demo of Tidal (the one that failed to boot during the demo, grr)
- Gibber
- Livecodelab
- Cyril homepage, lots of info and examples here
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<swabdata> | |
<team number="1"> | |
<sample letter="A" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="B" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="C" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="D" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="E" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="F" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> | |
<sample letter="G" name="" longlat="" dir="" loc="" colonies="" types="" img=""/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HelloWorld { | |
static public function main():Void { | |
trace("Hello World"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"latest-version":"2.0", | |
"cache-time":"60", | |
"resources": | |
[ | |
{ | |
"resource-key":"rateThisAppIOS", | |
"resource-url":"https://itunes.apple.com/gb/app/bbc-cbeebies-playtime/id891730883?mt=8" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -y -loop 1 -t 3.03 -i image.png -r 1 -vcodec libx264 -b:v 200k -bt 350k -f mp4 video.mp4 | |
more info: http://stackoverflow.com/questions/23424688/ffmpeg-convert-single-image-into-video-android | |
(labelled as android but should work on none android linux flavours) |
This is simple, clear and concise contract that I use for general creative and technical projects. It's based largely upon Brendan Dawe's excellent open-source design contract, but has been modified to contain more appropriate terminology for my field, and now contains sections pertaining to source code, ongoing support, NDA's etc.
Please feel free to fork, modify, distribute and use this document as you wish - and please please do use it. Do not start work without a contract, ever. Additionally: DO NOT START WORK WITHOUT A CONTRACT, EVER.
Dan Hett ("Developer", "me", "I")
[CLIENT NAME] ("Client", "you")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmepg -i input.mp4 -codec:v libvpx -cpu-used 0 -b:v 700k -qmin 10 -qmax 42 -maxrate 500k -bufsize 1000k -threads 4 -vf scale=iw*.5:ih*.5 -codec:a libvorbis -b:a 128k output.webm |
I hereby claim:
- I am danhett on github.
- I am danhett (https://keybase.io/danhett) on keybase.
- I have a public key whose fingerprint is 37AB 38F6 66B3 C6C8 155B A981 486F F93C 0E58 D2AF
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let scene, camera, renderer, animationId, controls | |
let geometry, material, mesh | |
let loader | |
let currentModel | |
function init() { | |
scene = new THREE.Scene() | |
camera = new THREE.PerspectiveCamera( | |
75, |