Skip to content

Instantly share code, notes, and snippets.

View foursixnine's full-sized avatar
♾️
Dreaming about arepas and maria cookies!

Santiago Zarate foursixnine

♾️
Dreaming about arepas and maria cookies!
View GitHub Profile
@foursixnine
foursixnine / stuff.pm
Created December 12, 2022 09:20
Perl static method call
package stuff;
use v5.30;
sub cc {
say 'hello!'.__PACKAGE__;
}
1;
@foursixnine
foursixnine / gist:0aa50c8e5f95890ba99e72d356f1c5eb
Last active December 28, 2024 11:47
# QE Engineer Profile

QE Engineer Profile

Take the information here with a grain of salt, use update and notify if you make changes, or contact Santiago Zarate.

Bare Minimum

# Appendix: Links and other Information
* [5whys Method](https://en.wikipedia.org/wiki/Five\_whys) for Cause and Effect/Root Cause Analisys/Information Discovery
* [PDCA \- Wikipedia](https://en.wikipedia.org/wiki/PDCA) \- Plan-Do-Study-Act ([Demming Circle](https://deming.org/explore/pdsa/))
* [Conway’s law](https://www.dcme.nu/conways-law/)
* [Product Management World](https://productmanagement.world/Home+Page) (Specially for entrepreneurs)
* [Applying Conway's Law to improve your software development | Thoughtworks](https://www.thoughtworks.com/insights/blog/applying-conways-law-improve-your-software-development)
* [QE Engineer Profile](https://gist.github.com/foursixnine/0aa50c8e5f95890ba99e72d356f1c5eb) \- Mostly a collection of links, useful overall
* [Civic Tech Field Guide](https://directory.civictech.guide/)
* [TransparenCEE network – Medium](https://medium.com/transparencee-network)
GS_BUCKET=$1
GLACIER_STORAGE_DIR=venapp-storage
# systemd-inhibit --what=sleep --what=shutdown --who="Downloader" --mode=block --why="because yes" waitpid -v $(pgrep -f "bash -x downloader.sh") #pgrep -f "bash downloader.sh"
cd $HOME
tmux new -A -d -s gdownloader
tmux neww -t gdownloader: -n "monitor" htop
FOLDERS=$(gsutil ls ${GS_BUCKET} | cut -d\/ -f4 | grep -v -E "\.(png|jpg)" | sort -r)
echo $FOLDERS;
for f in $FOLDERS; do
echo "Processing: $f" >> downloaded.list