Skip to content

Instantly share code, notes, and snippets.

View skairunner's full-sized avatar

Skye Im skairunner

View GitHub Profile
switch effect
-o/--output Specify an output directory
-v/--verbose Set verbosity level to DEBUG (default INFO)
-s/--silent Set verbosity level to FATAL (default INFO). This means no messages are logged on successful conversion, including warnings.
-S/--strict Enforce strict conversion.
@skairunner
skairunner / changelog.md
Created June 6, 2019 14:02
LAiA changelog, June 6

Detailed changelog This is a detailed changelog of all channel moves, additions and archives. indicates that an archived channel no longer has a correspending Location, while a - means that the Location will be added. A + is a new channel, and * is a moved channel.

Downtown

  • #downtown-interior → #downtown-1
  • #downtown-exterior → #downtown-2
  • #downtown-outskirts → #downtown-3
  • #fbi-field-office
  • #la-convention-center

Ezsa Goh

Cutthroat investor whose Clan curse makes her hyperempathic.

Personality

She tries to act capitalist, tending to look for the benefit to her and trying not to feel guilty at stepping over other people to get what she wants. As part of these attempts, she tries not to get into less than superficial relationships with others, but as soon as she can see someone as something more than just a number on a spreadsheet her aloofness starts to crack. She is certainly determined, though, and if she decides to do something, she'll do it damn well.

History

@skairunner
skairunner / craft.py
Created May 5, 2019 07:05
Minecraft calculator
import json
import sys
import math
from fractions import Fraction
def craft(item, number, recipes, L=None):
if L != None and L <= 0:
return {item: number}
if item not in recipes:
return {item: number}

Keybase proof

I hereby claim:

  • I am skairunner on github.
  • I am skairunner (https://keybase.io/skairunner) on keybase.
  • I have a public key ASC-QVt_n8oOP62hNidrhBhDr9fz8jfOl4B8eE4jsUgcKAo

To claim this, I am signing this object:

@skairunner
skairunner / findAndReplace.js
Last active November 10, 2017 06:20
Find and replace links chrome.extension
"use strict";
var links = document.querySelectorAll("a");
for (let link of links) {
let parent = link.parentElement;
let newel = document.createElement("span");
newel.innerHTML = link.innerHTML;
parent.replaceChild(newel, link);
<head></head>
<script src="d3.min.js"></script>
<script>
var gamestate = [];
var emptyblock;
var moving = false;
document.addEventListener("DOMContentLoaded", function(){
gamestate.push({
x: 0,
@skairunner
skairunner / final.css
Created December 13, 2016 14:40
Code of music final: skye im
.songword {
font-family: "Open Sans", sans-serif;
font-size: 24px;
padding: 5px;
}
.break {
display:block;
}
#info {
<html>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="tone.js"></script>
<script language="javascript" type="text/javascript" src="final.js"></script>
<script language="javascript" type="text/javascript" src="https://d3js.org/d3.v4.js"></script>
</head>
<body>
<svg width="100%" height="100%" viewBox="100 100 600 600"></svg>
@skairunner
skairunner / midterm.css
Last active October 31, 2016 09:16
Code of Music midterm
.bubblecircle {
stroke: rgba(0,0,0,0.3);
stroke-width: 1;
}
.bubbletext {
font-family: 'Cormorant Garamond',courier,serif;
font-size: 35;
font-weight: 600;
}