Skip to content

Instantly share code, notes, and snippets.

View jvantuyl's full-sized avatar
🤨

Jayson Vantuyl jvantuyl

🤨
View GitHub Profile
@jvantuyl
jvantuyl / fib.py
Created April 3, 2015 20:15
Fibonnaci Series List
class FibSeries(list):
def __init__(self):
bare_self = super(FibSeries, self)
bare_self.__setslice__(0, bare_self.__len__(), (1, 1,))
def __getitem__(self, i):
bare_self = super(FibSeries, self)
bare_len = bare_self.__len__()
if not i < bare_len:
self._fill_fib(bare_len, i)
.
./1.7.10
./1.7.10/Baubles-1.7.10-1.0.1.10.jar
./1.7.10/CodeChickenLib-1.7.10-1.1.1.110-universal.jar
./1.7.10/commons-codec-1.9.jar
./1.7.10/commons-compress-1.8.1.jar
./1.7.10/ForgeMultipart-1.7.10-1.1.1.320-universal.jar
./1.7.10/MrTJPCore-1.7.10-1.0.5.11-universal.jar
./AOBD-2.4.0.jar
./appliedenergistics2-rv2-beta-8.jar
-module(fizzbuzz).
-export([start/0, watcher/0]).
start() ->
Watcher = spawn_link(fizzbuzz, watcher, []),
send_loop(Watcher, 1, 1000000),
receive done -> ok end,
init:stop().
send_loop(Pid, N, Max) when N =< Max ->
@jvantuyl
jvantuyl / mods.md
Last active October 19, 2015 09:28
Mod List

Core / Support

  • FastCraft
  • MineTweaker

Client

  • Custom Main Menu
  • InventoryTweaks
  • JourneyMaps
@jvantuyl
jvantuyl / led_magic.py
Created May 29, 2019 20:21
Adafruit CircuitExpress Fiddling
from adafruit_circuitplayground.express import cpx
import time
## Constants
# timing settings
SLEEP = 0.001
# light range settings
MIN = 0
MAX = 16