- Mike Bostock (D3js author) tutos & examples : http://bost.ocks.org/mike/
- D3.js wiki : https://github.com/mbostock/d3/wiki
- Tutorials, screencasts, newsletters : https://www.dashingd3js.com/
- Some tutorials : http://alignedleft.com/tutorials/d3
- another collection : http://www.pinterest.com/gelicia/resources-for-learning-d3js/
#!/bin/sh | |
# install : | |
# curl -o installer.sh https://gist.github.com/iNem0o/6346423/raw && chmod +x installer.sh && sudo ./installer.sh | |
sudo apt-get update | |
sudo apt-get --no-install-recommends -y install git cmake libusb-1.0-0-dev libpulse-dev libx11-dev screen qt4-qmake libtool autoconf automake libfftw3-dev | |
mkdir ~/src | |
echo "Installation de rtl_sdr" |
module.exports = { | |
'HOSTPATH': 'http://your.host.here', | |
'PORT': 80, | |
'EXPRESS_SESSION_SECRET': '123456', | |
'TWITTER_CONSUMER_KEY': 'your-consumer-key-here', | |
'TWITTER_CONSUMER_SECRET': 'your-secret-here', | |
'GOOGLE_APP_ID': 'your-app-id-here', | |
'GOOGLE_CONSUMER_SECRET': 'your-consumer-secret-here', | |
}; |
List some crypto libraries for JavaScript out there. Might be a bit out dated. Scroll to the bottom.
http://www.w3.org/TR/WebCryptoAPI/
This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.
; ___ _ __ ___ __ ___ | |
; / __|_ _ __ _| |_____ / /| __|/ \_ ) | |
; \__ \ ' \/ _` | / / -_) _ \__ \ () / / | |
; |___/_||_\__,_|_\_\___\___/___/\__/___| | |
; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial | |
; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself | |
; to learn a little bit about assembly. I **think** I understood everything, but I may | |
; also be completely wrong :-) |
Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative
float rand(float n){return fract(sin(n) * 43758.5453123);}
float noise(float p){
float fl = floor(p);
float fc = fract(p);
################################################################################ | |
# | |
# Copyright 1993-2013 NVIDIA Corporation. All rights reserved. | |
# | |
# NOTICE TO USER: | |
# | |
# This source code is subject to NVIDIA ownership rights under U.S. and | |
# international Copyright laws. | |
# | |
# NVIDIA MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE |
Only in openFrameworks/apps/myApps/emptyExample: bin | |
Only in openFrameworks/apps/myApps/emptyExample: obj | |
Only in openFrameworks/examples/utils/conversionExample/bin: conversionExample | |
Only in openFrameworks/examples/utils/conversionExample/bin: conversionExample_debug | |
Only in openFrameworks/examples/utils/conversionExample/bin: libs | |
Only in openFrameworks/examples/utils/conversionExample/bin: readMe.txt | |
Only in openFrameworks/examples/utils/conversionExample: obj | |
Only in openFrameworks/examples/utils/fileOpenSaveDialogExample: obj | |
Only in openFrameworks/examples/utils/windowExample/bin: libs | |
Only in openFrameworks/examples/utils/windowExample/bin: readMe.txt |
// Restify Server CheatSheet. | |
// More about the API: http://mcavage.me/node-restify/#server-api | |
// Install restify with npm install restify | |
// 1.1. Creating a Server. | |
// http://mcavage.me/node-restify/#Creating-a-Server | |
var restify = require('restify'); |