View this code at http://livecoding.io/3758456
This file contains 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
# date 2014-11-03 | |
# A test script to let an LED blink on your RaspberryPi (pin 11). | |
# | |
# To use the RPi.GPIO module just install python-rpi.gpio package. | |
import RPi.GPIO as GPIO | |
import time | |
GPIO.setmode(GPIO.BOARD) |
This file contains 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
/** | |
* @author Ikaros Kappler | |
* @date 2014-12-24 | |
* @version 1.0.0 | |
**/ | |
/** | |
* This function creates a human-readable date/time string. | |
* Format: YYYY-MM-DD_H.i.s | |
**/ |
This file contains 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
/** | |
* A complex math class in rectangular coordinates. | |
* | |
* @author Ikaros Kappler | |
* @date 2017-05-03 | |
* @modified 2017-05-30 Fixed wrong named 'div' function ('sub' duplicates). | |
* @version 1.0.1 | |
**/ | |
var Complex = (function() { |
This file contains 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
/** | |
* A simple graph class. | |
* | |
* @author Ikaros Kappler | |
* @date 2017-05-30 | |
* @modified 2017-05-31 Fixed the 'undirected' param and the getConnected function. | |
* @version 1.0.1 | |
**/ | |
var Graph = (function() { |
This file contains 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
/** | |
* Safari does handle web audio a bit different. | |
* | |
* Original found at | |
* https://gist.github.com/laziel/7aefabe99ee57b16081c | |
* | |
* Modified by Ikaros Kappler | |
* @date 2017-11-15 | |
**/ |
This file contains 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
server { | |
listen 80; | |
listen [::]:80 default_server ipv6only=on; | |
server_name _; | |
root /usr/share/nginx/www; | |
index index.php index.html index.htm; | |
# Deny access to all dotfiles | |
location ~ /\. { |
This file contains 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
/** | |
* A simple mouse handler for demos. | |
* Use to avoid load massive libraries like jQuery. | |
* | |
* Usage: | |
* new MouseHandler( document.getElementById('mycanvas') ) | |
* .drag( function(e) { | |
* console.log( 'Mouse dragged: ' + JSON.stringify(e) ); | |
* if( e.params.leftMouse ) ; | |
* else if( e.params.rightMouse ) ; |
This file contains 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
/** | |
* A simple balanced binary search-tree class I adapted from an implementation | |
* by https://github.com/mourner. | |
* | |
* | |
* Original implementation (basically a demo/test class) found at | |
* https://github.com/mourner/bbtree | |
* | |
* | |
* I just added a closure and a utility function to iterate over the set. |
This file contains 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
#!/bin/bash | |
while true; do | |
read -p "Do you really wish to do this thing? (y/n)? " yn | |
case $yn in | |
[Yy]* ) echo "Doing the thing now."; break;; | |
[Nn]* ) exit;; | |
* ) echo "Please answer yes or no.";; | |
esac | |
done |
OlderNewer