This file contains hidden or 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
// rhythmbox database collage tool | |
// | |
// dependencies: jimp, xml-js | |
// | |
// this code is licensed under a [copyleft](https://en.wikipedia.org/wiki/Copyleft) license: this code is completely okay to modify, copy, redistribute and improve upon, as long as you keep this license notice | |
// ↄ Jill "oatmealine" Monoids 2021 | |
const Jimp = require('jimp'); | |
const fs = require('fs'); | |
const { xml2js } = require('xml-js'); |
This file contains hidden or 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
[ | |
{ | |
"name": "unknown", | |
"checks": [] | |
}, | |
{ | |
"name": "no template", | |
"checks": [ | |
{ | |
"type": "filecontent", |
This file contains hidden or 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
const got = require('got'); | |
const fs = require('fs'); | |
const os = require('os'); | |
const { exec } = require('child_process'); | |
const api = `http://images.ucomics.com/comics/ga`; | |
const startDate = new Date('19 June 1978 00:00:00 GMT'); | |
function generateComicURL(date) { | |
// http://images.ucomics.com/comics/ga/2000/ga001231.gif |
This file contains hidden or 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
/* customize ya stuff */ | |
:root { | |
--border-radius: 5px; | |
/* rgb for transparency to work */ | |
--text-color: 217, 225, 232; | |
--text-color-secondary: 96, 105, 132; /* less bright, for unimportant bits */ | |
--background-color: 38, 18, 34; | |
--background-color-brighter: 45, 21, 41; |
This file contains hidden or 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
#ifdef GL_FRAGMENT_PRECISION_HIGH | |
precision highp float; | |
#else | |
precision mediump float; | |
#endif | |
uniform float time; | |
uniform vec2 resolution; | |
float round(float num) { |
This file contains hidden or 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
#include <iostream> | |
#include <cmath> | |
#include <time.h> | |
using namespace std; | |
int main() { | |
int Length = 120; | |
int Height = 28; |
This file contains hidden or 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
// warning: i am not responsible for any google translate ip-bans or ratelimits | |
var request = require('request'); | |
const token = require('@vitalets/google-translate-token'); | |
const langs = { | |
Automatic: "auto", | |
Afrikaans: "af", | |
Albanian: "sq", | |
Amharic: "am", | |
Arabic: "ar", |
NewerOlder