Skip to content

Instantly share code, notes, and snippets.

View julian-a-avar-c's full-sized avatar

Julian A Avar C julian-a-avar-c

View GitHub Profile
@julian-a-avar-c
julian-a-avar-c / many_to_many.sql
Last active February 22, 2023 00:23
simpler table joining for many to many
with a_b_name_in(table_a_name, table_b_name)
as (
values
('table a 1', 'table b 1'),
('table a 2', 'table b 1'),
)
insert into a_b (a_id, b_name)
select a.id, b.id
from a_b_name_in
inner join table_a
# Pre Setup
sudo apt update
sudo apt upgrade
# Setup
## Nala
sudo apt install nala
## Utils
@julian-a-avar-c
julian-a-avar-c / stitch.rb
Last active January 4, 2022 04:22
stitches a collection of images vertically, and upscales/downscales to a specific width
#!/usr/bin/env ruby
# Licensed under MIT. (c) 2022 Julian A Avar Campopiano
# Requires ruby3.0.0 and imagemagick
# Usage:
# stitch.rb [options] -i=[glob] -o=[glob]
# Example:
# stitch.rb -w=min -i=*.jpg
# stitch.rb -w=259.3 -i=photo_{a,b}.png -o=out_file.png
@julian-a-avar-c
julian-a-avar-c / package.json
Last active October 26, 2021 23:06
typescript+babel+teser gulpfile. It grabs every `.ts` file in `src` and throws them in `dist`, and transpiles to every module format.
{
"name": "typescript+babel+teser gulpfile",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "jaacko-torus",
"url": "https://github.com/jaacko-torus"
},
"type": "module",
"engines": {
// godot shader
shader_type canvas_item;
uniform float bell_width = 4.0;
float bell(float x) {
return exp(-pow(bell_width * (x - 0.5), 2));
}
// usage
<h2>Members</h2>
<p>
<strong>Programming&ensp;&Colon;&ensp;</strong>
Abdullah Salem <a href="https://fenguinn.itch.io/">Itch</a> &bullet;
Lilou <a href="https://liloupalomino.itch.io/">Itch</a> &bullet;
Julian <a href="https://jaacko-torus.itch.io">Itch</a> &bullet;
Justin <a href="https://seijin2008.itch.io/">Itch</a> &bullet;
Sean Ayers
</p>
<p>
@julian-a-avar-c
julian-a-avar-c / show-all-fonts.sh
Created March 8, 2021 01:27
print all usable fonts
# will print all the font families that can be used
# currently using it for XeLaTeX
## \usepackage{fontspec}
## \setmainfont{<name of font>}
fc-list : outline -format "%{family}\n" | sort | uniq
var muted = false
func toggle_mute_all():
self.muted = !self.muted
AudioServer.set_bus_mute(AudioServer.get_bus_index("Master"), self.muted)
@julian-a-avar-c
julian-a-avar-c / basic_oak_static_server.ts
Last active October 12, 2020 05:34
Basic Deno static server example using Oak
// deno run --allow-net --allow-read main.ts
// deno std is not totally stable, look at source to get an idea of how it does it
import { ensureFile } from "https://deno.land/[email protected]/fs/ensure_file.ts";
import { Application, Context, Router, send } from "https://deno.land/x/oak/mod.ts";
// quality of life variables
const cwd = Deno.cwd().replaceAll("\\", "/");
const public_folder = `${cwd}/public`;