Skip to content

Instantly share code, notes, and snippets.

View LudeeD's full-sized avatar
🍷
# TODO insert funny status

Luís Silva LudeeD

🍷
# TODO insert funny status
View GitHub Profile
@LudeeD
LudeeD / kulturnatten_events_2025.txt
Last active October 7, 2025 11:56
Kulturnatten Events 2025
# Kulturnatten Events
*Generated: 2025-10-03 15:54:06*
*Total events: 219*
---
## 1. 130. The association for rigths and living conditions for children in care
@LudeeD
LudeeD / eps2jpeg.sh
Last active September 28, 2019 12:01
Convert from eps to jpeg and auto trim file
#!/bin/fish
mkdir jpeg
for file in *.eps
echo $file
gs -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -dEPSFitPage -r300 -sOutputFile=jpeg/(basename $file .eps).jpg $file
end
@LudeeD
LudeeD / Bash Cheat Sheet
Created January 11, 2017 18:48
Bash Cheat Sheet
#=== Cheat sheet to do shell scripting ===#
== Basics
-Tell the o/s what to use as the interpreter.
#!/bin/bash
-Make bash scripts executable.
chmod +x filename