Skip to content

Instantly share code, notes, and snippets.

View IkarosKappler's full-sized avatar
💭
I want to build a submarine one day.

Ikaros Kappler IkarosKappler

💭
I want to build a submarine one day.
View GitHub Profile
@IkarosKappler
IkarosKappler / complex.class.js
Last active May 31, 2017 00:27
A simple and minimal javascript class for complex number arithmetic (does not support SQRT yet).
/**
* 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() {
@IkarosKappler
IkarosKappler / README.md
Last active August 1, 2025 18:00
SVG path to Three.js shape
@IkarosKappler
IkarosKappler / function.createHumanReadableTimestamp.js
Created December 24, 2014 22:27
This function creates a human-readable date/time string. Format: YYYY-MM-DD_H.i.s
/**
* @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
**/
@IkarosKappler
IkarosKappler / blink.py
Created November 3, 2014 21:03
A test script to let an LED blink on your RaspberryPi (pin 11).