View this code at http://livecoding.io/3758456
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
| /** | |
| * 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 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
| /** | |
| * @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 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
| # 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) |
NewerOlder