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
Some possible implementations of the Bresenham Algorithms in C. | |
The Bresenham line algorithm is an algorithm which determines which points in an | |
n-dimensional raster should be plotted in order to form a close approximation | |
to a straight line between two given points. | |
It is commonly used to draw lines on a computer screen, as it uses only integer | |
addition, subtraction and bit shifting, all of which are very cheap operations | |
in standard computer architectures. | |
It is one of the earliest algorithms developed in the field of computer graphics. | |
A minor extension to the original algorithm also deals with drawing circles. |
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
from sys import argv | |
from agithub.GitHub import GitHub | |
# pip install agithub | |
# argv[1] = github login name | |
## sample out | |
# repo: miyakogi/pyppeteer |
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
const str = "Something back"; | |
say(str); | |
say(back(str)); |
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
<?php | |
define('ONE_WEEK', 604800); // 7 * 24 * 60 * 60 | |
function number_of_days($days, $start, $end) { | |
$w = array(date('w', $start), date('w', $end)); | |
$x = floor(($end-$start)/ONE_WEEK); | |
$sum = 0; | |
for ($day = 0;$day < 7;++$day) { | |
if ($days & pow(2, $day)) { |
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
let m=60000;let l="YYYY-MM-DDTHH:MM";let i=setInterval(() => console.log(parseInt(((new Date(l)) - (new Date)) / m)), m); |
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
#!/usr/bin/env python3 | |
""" | |
Does some fancy stuff | |
Usage: | |
{proc} [-h | --help] | |
{proc} [-v ...] INPUT OUTPUT | |
Options: | |
-h, --help Shows this help |
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
function Pluck( ctx ) { | |
this.sr = ctx.sampleRate; | |
this.pro = ctx.createScriptProcessor( 512, 0, 1 ); | |
this.pro.connect( ctx.destination ); | |
} | |
Pluck.prototype.play = function( freq ) { | |
var N = Math.round( this.sr / freq ), | |
impulse = this.sr / 1000, | |
y = new Float32Array( N ), |
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
/dir | |
- test.php | |
/lib | |
- fontparse.php | |
/ Font Parses | |
#test.php | |
<?php |
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
import sys | |
# TODO: input like "a'a'" | |
f = sys.argv[1].replace(" ","").lower() | |
o = f.find("'") | |
if o > 0: | |
r = (f[:o-1]+f[o-1:o+1][::-1]+f[o+1:]) | |
else: | |
r = f |
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
<?php | |
/** | |
* Convert a phrase to a SEO friendly uri (slug). | |
* | |
* @param string $title Phrase to convert | |
* @param string $separator Word separator | |
* @param boolean $ascii_only Transliterate to ASCII? | |
* @return string | |
*/ | |
function make_slug($title, $separator = '-', $ascii_only = true) { |
NewerOlder