Skip to content

Instantly share code, notes, and snippets.

View Inclushe's full-sized avatar

Ethan John Walker Inclushe

View GitHub Profile
{
"_e": true,
"CAMERA_CameraSelfiexmoveXY": [
1,
1
],
"CAMERA_CameraSelfiexposition": [
0,
0,
4
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE FixtureDefinition>
<FixtureDefinition xmlns="http://www.qlcplus.org/FixtureDefinition">
<Creator>
<Name>Q Light Controller Plus</Name>
<Version>4.12.2</Version>
<Author>Ethan</Author>
</Creator>
<Manufacturer>Lixada</Manufacturer>
<Model>Mini Beam</Model>
@Inclushe
Inclushe / NoRoobert.user.js
Created September 26, 2019 22:42
NoRoobert - Bring back the old Twitch font.
// ==UserScript==
// @name NoRoobert
// @description Bye-bye NoRoobert.
// @author Inclushe
// @namespace https://inclushe.com/
// @match https://www.twitch.tv/*
// @run-at document-start
// @version 0.42069
// @grant none
// ==/UserScript==

👺日本語 Recap

Genki

Chapter 1

~です。 It is...
XはYです。 X is Y. / As for X, it is Y.
~か。 Question modifier

Clean Code Notes

Intro Notes

  • 5S Principles
    • organization - seiri (整理)
      • Use suitable naming
    • tidiness - seiton (整頓)
      • A place for everything, and everything in its place.
  • cleaning - seisō (清掃)
@Inclushe
Inclushe / package-refracted.js
Created May 30, 2019 02:10
dreamx3 package-refracted pretty print
function in_array(a, b, c) {
var d = '';
if (!c) {
for (d in b) if (b[d] == a) return !0
} else for (d in b) if (b[d] === a) return !0;
return !1
}
function ucFirst(a) {
return a ? a.charAt(0).toUpperCase() + a.slice(1) : a
}
@Inclushe
Inclushe / main.hs
Last active March 4, 2019 16:48
A very professional Haskell program.
main = print $ iterate succ 69 !! 351
@Inclushe
Inclushe / Makefile
Last active February 14, 2019 23:28
Grand Dad in Fortran 95
main:
gfortran grand.f95 -o ./grand
/* What does the app's SQL look like? */
CREATE TABLE scores (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
score INTEGER
);
CREATE TABLE users (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,