Added random things.
This commit is contained in:
parent
764599ad9c
commit
bb55ac55c8
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Please select a file to OCR:"
|
||||||
|
IFS=$'\n'
|
||||||
|
files=( $(ls | grep pdf) )
|
||||||
|
declare -a files
|
||||||
|
select file in ${files[*]}
|
||||||
|
do
|
||||||
|
break
|
||||||
|
done
|
||||||
|
ocrmypdf -l deu+eng -d -c $file "${file%.*}"-OCR.pdf
|
|
@ -1,3 +1,8 @@
|
||||||
## Most random tips I could think of:
|
## Most random tips I could think of:
|
||||||
|
|
||||||
1. Firefox has an about.about section, listing all other about:X pages.
|
1. Firefox has an about.about section, listing all other about:X pages.
|
||||||
|
2. Clean your Arch system: `sudo pacman -Qttdq | sudo pacman -Rnsscu -`
|
||||||
|
3. Ferment lemons in salt.
|
||||||
|
4. Enable TRIM: `systemctl enable fstrim.timer`
|
||||||
|
5. https://github.com/ibraheemdev/modern-unix
|
||||||
|
6. Chatbots: https://www.flowgpt.com/chat; https://perplexity.ai
|
12
software.md
12
software.md
|
@ -1,7 +1,17 @@
|
||||||
## Random sotware recommendations
|
## Random software recommendations
|
||||||
|
|
||||||
- Mobile browser: Mull
|
- Mobile browser: Mull
|
||||||
- Deduplication: Czkawka
|
- Deduplication: Czkawka
|
||||||
- Ventoy
|
- Ventoy
|
||||||
- Nala
|
- Nala
|
||||||
- https://wiki.archlinux.org/title/LibreOffice#Grammar_checking
|
- https://wiki.archlinux.org/title/LibreOffice#Grammar_checking
|
||||||
|
- Media sorting: phockup
|
||||||
|
- Backup: Borg
|
||||||
|
- Firmware update: fwupd
|
||||||
|
- Analyse pishing mails: ThePhish
|
||||||
|
- OCR: OCRmyPDF
|
||||||
|
- Upscal images: Upscaly
|
||||||
|
- Send files: croc
|
||||||
|
- Hosting: pgs.sh
|
||||||
|
- LLM: ollama
|
||||||
|
- VPN: Tailscale
|
Loading…
Reference in New Issue