Skip to content

Instantly share code, notes, and snippets.

View jake-walker's full-sized avatar

Jake Walker jake-walker

View GitHub Profile
@jake-walker
jake-walker / bootstrapv4-marked.js
Last active December 10, 2016 12:25
An adaption of marked.js to look nicer in Bootstrap 4.
/**
* marked - a markdown parser
* Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
* https://github.com/chjj/marked
*/
;(function() {
/**
* Block-Level Grammar
@jake-walker
jake-walker / microbit-messenger.py
Last active September 24, 2016 10:34
A simple BBC Micro:bit script that allows you to send radio messages to another Micro:bit that is running this same script
from microbit import *
import radio
# --- CONFIG ---
# Deadzone
deadzone = 350
# Scroll Speed (ms)
scrollspeed = 500
current = 1