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
{ | |
"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
#!/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
# 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
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 |
OlderNewer