Skip to content

Instantly share code, notes, and snippets.

View oatmealine's full-sized avatar
🔨
conk2.ogg

jill oatmealine

🔨
conk2.ogg
View GitHub Profile
@oatmealine
oatmealine / categories.json
Last active December 5, 2020 01:31
notitg template analyzer script
[
{
"name": "unknown",
"checks": []
},
{
"name": "no template",
"checks": [
{
"type": "filecontent",
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
@oatmealine
oatmealine / oatstodon-pink.css
Last active January 24, 2021 20:51
oatstodon
/* 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;
@oatmealine
oatmealine / lines.glsl
Created January 28, 2020 12:38
lines shader
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
uniform float time;
uniform vec2 resolution;
float round(float num) {
@oatmealine
oatmealine / graphingCalc.cpp
Last active November 12, 2019 14:04
simple graphing calculator in c++ - edit line 27 and 28
#include <iostream>
#include <cmath>
#include <time.h>
using namespace std;
int main() {
int Length = 120;
int Height = 28;
// 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",