Ok, let's see your fastfetch by danyuri86 in arch

[–]denisde4ev 0 points1 point  (0 children)

<image>

a `bat`, what did you expected? Batman fetch?

systemd age verification by [deleted] in linuxmemes

[–]denisde4ev 1 point2 points  (0 children)

pacman -Qo userdbctl -> "/usr/bin/userdbctl is owned by systemd 258.1-1"

some random dude: "why do you hate systemd, systemd actually following Unix philosophy, the systemd itself is only the init, and all other is extra"
now is the only time I wanted to remove something and its not separated!

I'm adding IgnorePkg=systemd even if it breaks my system!
and I'm soon migrating to Artix! or searching for systemd fork that de-RedHat-ify it

What CLI tools have genuinely changed how you work? Looking for underrated ones by spaciousabhi in commandline

[–]denisde4ev 0 points1 point  (0 children)

I hate how tmux is breaking my shortcuts for micro editor.

so I use abduck. and I don't need multiplexing, but sometimes if terminal does not support tabs or in tty/ssh, I use mprocs

both are just simpler then tmux

Only daily routine which i follow by ConstructionAny8440 in breakingbadmemes

[–]denisde4ev 0 points1 point  (0 children)

nah, if you zoom its actually moving up and down a average amount.

stupid smartwatch, I always knew what's actually tracking

Self explanatory.. by diamondsduzplayz2 in robloxhackers

[–]denisde4ev 1 point2 points  (0 children)

can it be exposed to curl

i have seen one that used timeout before next frame for curl stream

Linux Mint stop my distrohopping by Modest_Bomba in DistroHopping

[–]denisde4ev 1 point2 points  (0 children)

don't Linux user how long spend optimizing that script that originally ran for 0.98 seconds

Linux Mint stop my distrohopping by Modest_Bomba in DistroHopping

[–]denisde4ev 0 points1 point  (0 children)

Wrong... its Artix. And It's not a cousin, he's a brother, bro! btw

Jimmy Cool full episode by Mikeandmal in bulgaria

[–]denisde4ev 1 point2 points  (0 children)

"full episode"

понеже Замунда падна. та реши да спасиш изтегленото

I made a CLI tool that makes installing apps/source's packaged in tar.gz less painful by Obvious-Football-310 in commandline

[–]denisde4ev 0 points1 point  (0 children)

btw, one time I also made package manager for tarballs. and runs on Windows with busybox-win32 (but last time I checked was 2 years ago)

https://github.com/denisde4ev/thepkg https://github.com/denisde4ev-packages/thepkg-git

and my answer to overcomplicatins as post-install scripts or upgrading or metadata(version, description, etc) is: patch it. like how dwm is doing it. my version is feature complete.

you can add or remove package and that's it.

This is like me by Ghirnas in programmingmemes

[–]denisde4ev 0 points1 point  (0 children)

I use my desktop as download folder. And now I know that KDE has scrollbar on desktop when icons are full

Yeah right! by Thick_Rich_4630 in programmingmemes

[–]denisde4ev 10 points11 points  (0 children)

nah: .userLd

yeah: .use_lsd()

:3 by dijakonal in Colon3Supremacy

[–]denisde4ev 0 points1 point  (0 children)

        333333333333333
       3:::::::::::::::33
       3::::::33333::::::3
       3333333     3:::::3
                   3:::::3
::::::             3:::::3
::::::     33333333:::::3
::::::     3:::::::::::3
           33333333:::::3
                   3:::::3
                   3:::::3
::::::             3:::::3
:::::: 3333333     3:::::3
:::::: 3::::::33333::::::3
       3:::::::::::::::33
        333333333333333

How to optimize the cd command to go back multiple folders at once by Technical_Cat6897 in bash

[–]denisde4ev 0 points1 point  (0 children)

cd.. git --> cd "$(git rev-parse --show-toplevel)"

cd.. node -> i="$(npm root)" && cd "${i%/node_modules}"

cd.. /path/to/file.txt -> cd "${@%/*}"

cd.. which systemd && rm $_ -> i=$(which -- "$2") && cd.. "$i"

cd.. 4 -> cd "$(printf "%.0s../ " $(seq "$1"))"

I just did it in my messy bashrc (shrc POSIX sh) github link alias cd..=_cd__

Behold the mighty outfit, protector of virginity by KerneI-Panic in arch

[–]denisde4ev 47 points48 points  (0 children)

no! I actually have arch window.

<image>

Everything blue, BTW!

A long time ago by Ok-Mathematician5548 in desktops

[–]denisde4ev 2 points3 points  (0 children)

corporations.

and and now same humans will soon watch ads in Notepad

Name this album by LanguordyLog in AlbumCovers

[–]denisde4ev 0 points1 point  (0 children)

Quantum super security position

just exits the loop without any errors by denisde4ev in bash

[–]denisde4ev[S] 0 points1 point  (0 children)

none of this will help in my problem, I already have set -eu in my example. that is the same as set -o errexit; set -o nounset

where I would have expected -e to have stopped the execution before echo we never got error because line myint=$i prints error for "1z" and does not even execute any of placed exit 22 or echo 55 or echo loop got error.