InFerNo
@InFerNo@lemmy.ml
lemmy
0.19.18-beta.1
0
Followers
0
Following
Joined June 07, 2023
Posts
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
programmer_humor
·
2d ago
Nothing is
View full thread on lemmy.ml
3
2
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
What does “all tech debt is legal” mean?
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
There is more to the Munich story
https://www.zdnet.com/article/linux-not-windows-why-munich-is-shifting-back-from-microsoft-to-open-source-again/
https://blog.desdelinux.net/en/munich-and-hamburg-resume-the-initiative-to-migrate-to-linux/
View full thread on lemmy.ml
2
1
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
lemmyshitpost
·
Apr 04, 2026
2
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
I just tried your use case, and it did move the files to the correct folder.
using zsh:
user@computer ~ touch test.jpg
user@computer ~ touch test2.jpg
user@computer ~ mv test.jpg ./Public
user@computer ~ mv test2.jpg $_
user@computer ~ ls ./Public
test2.jpg test.jpg
user@computer ~
using bash:
[user@computer Public]$ mkdir test
[user@computer Public]$ ls
test test2.jpg test.jpg
[user@computer Public]$ mv test.jpg ./test
[user@computer Public]$ mv test2.jpg $_
[user@computer Public]$ ls
test
[user@computer Public]$ ls test/
test2.jpg test.jpg
[user@computer Public]$
using bash and full path:
[user@computer Public]$ ls
test test2.jpg test.jpg
[user@computer Public]$ mv test.jpg /home/user/Public/test
[user@computer Public]$ mv test2.jpg $_
[user@computer Public]$ ls
test
[user@computer Public]$ ls test/
test2.jpg test.jpg
[user@computer Public]$
What shell are you using? You can check it by using echo $0.
user@computer ~ echo $0
/usr/bin/zsh
[user@computer ~]$ echo $0
/bin/bash
I can’t reproduce it, even when putting the directory path in quotes, it still simply moved the file.
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
Never been to a house of people that have dogs and there wasn't a dog smell.
Share your secrets
View full thread on lemmy.ml
19
3
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
technology
·
Feb 27, 2026
My DDR3 mini itx board already has the max capacity installed years ago, which was 16gb. It’s reached the ceiling :(
View full thread on lemmy.ml
0
1
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
technology
·
Feb 27, 2026
Microsoft ♥️ Linux
View full thread on lemmy.ml
0
0
0
0
Open post
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
This is not the original picture, I believe it was a skeleton model originally.
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
I use $_ a lot, it allows you to use the last parameter of the previous command in your current command
mkdir something && cd $_
nano file
chmod +x $_
As a simple example.
If you want to create nested folders, you can do it in one go by adding -p to mkdir
mkdir -p bunch/of/nested/folders
Good explanation here:
koenwoortman.com/…/q
Sometimes starting a service takes a while and you’re sitting there waiting for the terminal to be available again. Just add --no-block to systemctl and it will do it on the background without keeping the terminal occupied.
systemctl start --no-block myservice
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
technology
·
Dec 14, 2025
More importantly, what brand, type and/or specs. It’s easy to get cheap disks with crap performance. I have a few around that we quickly dubbed “Super Slow Disks”.
View full thread on lemmy.ml
14
1
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
The first Sonic the Hedgehog for the Mega Drive. I play all 3 (4?) of the original Sonic games, but that’s the oldest though.
I play through my Mega Drive games occasionally. Alex Kidd is probably older… Wonder Boy is great, too!
View full thread on lemmy.ml
4
1
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
My god, and I’ve fighting dosbox since forever and dread starting the game because of it. How good does this work?
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
lemmyshitpost
·
Dec 11, 2025
Only if you want your nick to be reserved, right? At least that’s what Q does on quakenet.
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
lemmyshitpost
·
Dec 11, 2025
But then how can we sell your email to our 1873 partners?
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
lemmyshitpost
·
Dec 09, 2025
Self hosting for years and have none of these issues, but I’m going to migrate soon and will probably be able to use this as a checklist 😐
View full thread on lemmy.ml
0
0
0
0
Open post
In reply to
InFerNo
@InFerNo@lemmy.ml
lemmy.ml
@InFerNo@lemmy.ml
in
lemmyshitpost
·
Dec 07, 2025
Hell naw
View full thread on lemmy.ml
0
0
0
0