- Set up context with canvas element
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
{ | |
"_e": true, | |
"CAMERA_CameraSelfiexmoveXY": [ | |
1, | |
1 | |
], | |
"CAMERA_CameraSelfiexposition": [ | |
0, | |
0, | |
4 |
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
<?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> |
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
// ==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== |
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 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 | |
} |
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
main = print $ iterate succ 69 !! 351 |
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
main: | |
gfortran grand.f95 -o ./grand |
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
/* 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, |