WSL
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
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 |
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
# Pre Setup | |
sudo apt update | |
sudo apt upgrade | |
# Setup | |
## Nala | |
sudo apt install nala | |
## Utils |
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
#!/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 |
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
{ | |
"name": "typescript+babel+teser gulpfile", | |
"license": "MIT", | |
"author": { | |
"email": "[email protected]", | |
"name": "jaacko-torus", | |
"url": "https://github.com/jaacko-torus" | |
}, | |
"type": "module", | |
"engines": { |
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
// 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 |
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
<h2>Members</h2> | |
<p> | |
<strong>Programming ∷ </strong> | |
Abdullah Salem <a href="https://fenguinn.itch.io/">Itch</a> • | |
Lilou <a href="https://liloupalomino.itch.io/">Itch</a> • | |
Julian <a href="https://jaacko-torus.itch.io">Itch</a> • | |
Justin <a href="https://seijin2008.itch.io/">Itch</a> • | |
Sean Ayers | |
</p> | |
<p> |
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
# 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 |
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
var muted = false | |
func toggle_mute_all(): | |
self.muted = !self.muted | |
AudioServer.set_bus_mute(AudioServer.get_bus_index("Master"), self.muted) |
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
// 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`; |
NewerOlder