Skip Navigation
Cow sleeping in someone's lap.
  • As proven by the fact that dogs exist. I bet wolves were constantly itchy as well, but receiving those excellent scritches over millennia, they turned into the gentle doggos that we know today. And now I can have one of these 30kg predators in my house, trusting me with their life and sleeping on me occasionally and not mauling me with their sharp teeth, just because of the power of scritches.

  • What animals do you dislike for unusual reasons and why?
  • I, too, share your hatred for horses. They are arrogant fucks who think they are better then everyone else. One exception: there's these large horses with fluffy hooves and fat asses that seem to be chill and more like large dogs. You're OK.

  • General Advice for shell scripts
  • Rest of the list:

    Tools pt. 2

    DNS tools:

    Good stuff for pentesters and security researchers:

    ### .bashrc
    ### CUSTOM FUNCTIONS
    # https://www.linuxjournal.com/content/boost-productivity-bash-tips-and-tricks
    ftext () {
            grep -iIHrn --color=always "$1" . | less -R -r
    }
    duplicatefind (){
            find -not -empty -type f -printf "%s\n" | sort -rn | uniq -d | \
                    xargs -I{} -n1 find -type f -size {}c -print0 | \
                    xargs -0 md5sum | sort | uniq -w32 --all-repeated=separate
    }
    generateqr (){
            # printf "$@" | curl -F-=\<- qrenco.de
            printf "$@" | qrencode -t UTF8 -o -
    }
    
  • General Advice for shell scripts
  • Rest of the list:

    Spoiler

    crush (https://github.com/liljencrantz/crush, Crush is a command line shell that is also a powerful modern programming language. Kann u.a. SQL-Statements) xxh (https://github.com/xxh/xxh, Bring your favorite shell wherever you go through the ssh.) starship (https://starship.rs, Shell-Prompt anpassen mit Nerdfont) q (https://github.com/natesales/q, A tiny & colorful command line DNS client with support for UDP, TCP, DoT, DoH, DoQ and ODoH.) gping (https://github.com/orf/gping, Ping, but with a graph) broot (https://github.com/Canop/broot, A new way to see and navigate directory trees : https://dystroy.org/broot) dust (https://github.com/bootandy/dust, intuitive du colored) dutree (https://github.com/nachoparker/dutree, a tool to analyze file system usage written in Rust) lsd (https://github.com/Peltoche/lsd, next-gen ls) mcfly (https://github.com/cantino/mcfly, Fly through your shell history using neural nets) procs (https://github.com/dalance/procs, A modern replacement for ps written in Rust, color, human readable, multi-column keword search) bottom (https://github.com/ClementTsang/bottom, top replacement, cross-platform graphical process/system monitor, zoom support) btop++ (https://github.com/aristocratos/btop, resource monitor CPU, RAM, IO, processes, IN SCHICK!!!, C++-continuation of bpytop https://github.com/aristocratos/bpytop) musikcube (https://github.com/clangen/musikcube, cross-platform, terminal-based music player, audio engine, metadata indexer, and server in c++ with an ncurses TI, incl.Android App) viu (https://github.com/atanunq/viu, Terminal image viewer with native support for iTerm and Kitty, auch animated gif) glow (https://github.com/charmbracelet/glow, Render markdown on the CLI) falsisign (https://gitlab.com/edouardklein/falsisign, For bureaucratic reasons, a colleague of mine had to print, sign, scan and send by email a high number of pages. To save trees, ink, time, and to stick it to the bureaucrats, I wrote this script.) ponysay (https://github.com/erkin/ponysay, wie cowsay mit bunten Ponies) sniffnet (https://github.com/GyulyVGC/sniffnet, cross-platform application to monitor your network traffic with ease, Debian-Pakete von GitHub verfügbar) netop (https://github.com/ZingerLittleBee/netop, monitor network traffic with bpf) corefreq (https://github.com/cyring/CoreFreq, CPU monitoring software for 64-bits Processors.) ctop (https://github.com/bcicen/ctop, Top-like interface for container metrics) dua (https://github.com/Byron/dua-cli, View disk space usage and delete unwanted data, fast.) dust (https://github.com/bootandy/dust, A more intuitive version of du in rust) helix editor lnav (https://github.com/tstack/lnav Log navigator) bottom (github.com/ClementTsang/bottom, another cross-platform graphical process/system monitor) broot (https://github.com/Canop/broot, a different than ranger/lf approach to navigating folders) mdr (https://github.com/michaelmure/mdr, a markdown viewer) eza (https://github.com/eza-community/eza, modern ls, with cool features like file icons) ouch (https://github.com/ouch-org/ouch, It’s a CLI tool for compressing and decompressing for various formats. such as .tar .zip 7z .gz .xz .lzma .bz .bz2 .lz4 .sz .zst .rar) spotify-tui (https://github.com/Rigellute/spotify-tui, Spotify CLI frontend (Spotify via terminal)) toilet (http://caca.zoy.org/wiki/toilet, turn text into ASCII art)

    .bashrc

    CUSTOM FUNCTIONS

    https://www.linuxjournal.com/content/boost-productivity-bash-tips-and-tricks

    ftext () { grep -iIHrn --color=always "$1" . | less -R -r } duplicatefind (){ find -not -empty -type f -printf "%s\n" | sort -rn | uniq -d |
    xargs -I{} -n1 find -type f -size {}c -print0 |
    xargs -0 md5sum | sort | uniq -w32 --all-repeated=separate } generateqr (){ # printf "$@" | curl -F-=<- qrenco.de printf "$@" | qrencode -t UTF8 -o - }

    DNS tools: -viewdns.info -dnslytics.com -dnsspy.io -leafdns.com -dnsdumpster.com -intodns.com -www.zonecut.net/dns -xip.io -nip.io -ptrarchive.com -www.whatsmydns.net -ceipam.eu/en/dnslookup.php -spyse.com/tools/dns-lookup -www.buddyns.com/delegation-lab

    Good stuff for pentesters and security researchers: -contained.af -cryptohack.org -0x00sec.org -hack.me -chall.stypr.com -crackmes.one -hackxor.net -tryhackme.com -ctftime.org -ctflearn.com -picoctf.org

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)DA
    DasFaultier @sh.itjust.works
    Posts 0
    Comments 27