- casting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nowhere is anonymous on the Internet. | |
so I think it's ok to put this publicly :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function debounce(fn, wait) { | |
let timerId; | |
return function debounced(...args) { | |
clearTimeout(timerId); | |
const that = this; | |
timerId = setTimeout(() => fn.apply(that, args), wait); | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 254 commits ████████▍░░░░░░░░░░░░ 40.1% | |
🌆 Daytime 124 commits ████░░░░░░░░░░░░░░░░░ 19.6% | |
🌃 Evening 105 commits ███▍░░░░░░░░░░░░░░░░░ 16.6% | |
🌙 Night 151 commits █████░░░░░░░░░░░░░░░░ 23.8% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 84 commits ███▋░░░░░░░░░░░░░░░░░ 17.8% | |
🌆 Daytime 186 commits ████████▎░░░░░░░░░░░░ 39.3% | |
🌃 Evening 152 commits ██████▋░░░░░░░░░░░░░░ 32.1% | |
🌙 Night 51 commits ██▎░░░░░░░░░░░░░░░░░░ 10.8% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TypeScript 4 hrs 24 mins ███████████████▍░░░░░ 73.3% | |
Docker 41 mins ██▍░░░░░░░░░░░░░░░░░░ 11.4% | |
JSON 21 mins █▎░░░░░░░░░░░░░░░░░░░ 6.0% | |
Other 13 mins ▊░░░░░░░░░░░░░░░░░░░░ 3.7% | |
Diff 10 mins ▌░░░░░░░░░░░░░░░░░░░░ 3.0% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
import os | |
import time | |
import logging | |
import bluetooth | |
import subprocess | |
import requests | |
import base64 | |
''' | |
<layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import logging | |
import json | |
import subprocess | |
from requests import post, delete | |
from mininet.topo import Topo | |
from mininet.net import Mininet | |
from mininet.cli import CLI | |
from mininet.node import RemoteController, Host, OVSSwitch |