Skip to content

Instantly share code, notes, and snippets.

View sethkontny's full-sized avatar
😀
Venturing

seth kontny sethkontny

😀
Venturing
View GitHub Profile
@sethkontny
sethkontny / fibonacci.js
Created January 18, 2014 06:44
A Fibonacci sequence generator written in JavaScript (Node.JS).
function fibonacci (upto) {
if(upto.length == 0) {
console.log("Usage: fibonacci <upto>.");
} else {
var first = 0, second = 1, sum;
var fibonacci_string = "";
fibonacci_string += (first + " " + second);
for (var counter = 0; counter < (upto - 2); counter++) {
sum = first + second;
fibonacci_string += (" " + sum);
@sethkontny
sethkontny / bret_victor-reading_list.md
Created November 29, 2015 02:32 — forked from nickloewen/bret_victor-reading_list.md
Bret Victor’s Reading List

This is a plain-text version of Bret Victor’s reading list. It was requested by hf on Hacker News.


Highly recommended things!

This is my five-star list. These are my favorite things in all the world.

A few of these works have had an extraordinary effect on my life or way of thinking. They get a sixth star. ★

@sethkontny
sethkontny / README.md
Created January 29, 2016 22:55 — forked from joemerlino/README.md
PebbleTime ClassDump Header

Pebble Time class-dump header

Since the PebbleTime app is unclutchable, it's impossible to dump the headers using class-dump or class-dump-z. That's why I posted this entire header file obtained using the tweak FLEX2.

App Version

3.5

Process to obtain the header from FLEX2

@sethkontny
sethkontny / 24SSgrid.markdown
Created January 25, 2014 00:39
A Pen by zessx.
@sethkontny
sethkontny / A-Pen-by-seth-kontny.markdown
Created January 25, 2014 00:38
A Pen by seth kontny.

Dynamic Image Blurring with Pixastic

Dynamic, client-side image blur effect with and Pixastic JavaScript library.

A Pen by Nathan Hackley on CodePen.

License.

@sethkontny
sethkontny / Placing-elements-on-a-circle.markdown
Created January 25, 2014 00:35
A Pen by Malik Baba Aïssa.

Placing elements on a circle

This is a quick method to place items on a circle.

I built a quick and dirty SASS Mixin to build the position and radius size for you. Just calculate how many items you want, add the mixin for every item and of you go!

I am convinced this can be exanded on, and made a lot better!

A Pen by Malik Baba Aïssa on CodePen.

@sethkontny
sethkontny / CSS-Filter-Glass.markdown
Created January 25, 2014 00:35
A Pen by Yogev Ahuvia.

CSS Filter Glass

Examine CSS filters through fluid resizable window glass. You can drag and drop an image file from your desktop onto the glass and see the filters manipulate your image live. Available filters are: grayscale, sepia, blur, brightness, contrast, invert, hue-rotate and saturate.

A Pen by Yogev Ahuvia on CodePen.

License.

function fibonacci (upto) {
if(upto.length === 0) {
console.log("Usage: fibonacci <upto>.");
} else {
var first = 0, second = 1, sum;
var fibonacci_string = "";
fibonacci_string += (first + " " + second);
for (var counter = 0; counter < (upto - 2); counter++) {
sum = first + second;
fibonacci_string += (" " + sum);