Skip to content

Instantly share code, notes, and snippets.

```
var colors = {
"red": {
"50": "#FFEBEE",
"100": "#FFCDD2",
"200": "#EF9A9A",
"300": "#E57373",
"400": "#EF5350",
"500": "#F44336",
"600": "#E53935",
@MusicalCreeper01
MusicalCreeper01 / index.js
Last active January 25, 2017 23:14
Simple SVG radial menu
function makeSVG(tag, attrs) {
var el= document.createElementNS('http://www.w3.org/2000/svg', tag);
for (var k in attrs)
el.setAttribute(k, attrs[k]);
return el;
}
function (elid) {
var radius = 40;
#!/usr/bin/python
# example driver for BM017 and TCS34725
import time
import smbus
from Adafruit_I2C import Adafruit_I2C
from PC_BM017CS import BM017
import Tkinter

Keybase proof

I hereby claim:

  • I am musicalcreeper01 on github.
  • I am kisu (https://keybase.io/kisu) on keybase.
  • I have a public key ASCbiItn8L3d5Gk7_OonU9lqJ4hEjga03MxW_iUzTGHnygo

To claim this, I am signing this object:

Hexiwear code: https://developer.mbed.org/users/keithm01/code/security-console-app/
$red-primary: #F44336;
$red-bar: #D32F2F;
$red-secondary: #E57373;
$red-accent: #EF9A9A;
$pink-primary: #E91E63;
$pink-bar: #C2185B;
$pink-secondary: #F06292;
$pink-accent: #F48FB1;
package info.icodethings.scoreboarddeathcounter;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.PlayerDeathEvent;
import org.bukkit.event.player.PlayerJoinEvent;