morhook
@morhook.bsky.social
72 followers 29 following 560 posts
I program on the day. Stream on twitch as a hobby. https://morhook.dev.ar
Posts Media Videos Starter Packs
morhook.bsky.social
Isn't the viral licensing of KHTML affecting how they have closed source parts of Chrome?
cyberciti.biz
Today's popular browser engines have deep roots in KHTML, which was originally built for the open-source software KDE. I guess we all own a big thank you to the KDE project.

More @ en.wikipedia.org/wiki/KHTML#D...
morhook.bsky.social
English. What was the answer?
cyberciti.biz
Can you guess the programming language that is as fast as C, as productive as Python, and as scalable as Java, but simpler than all three?
morhook.bsky.social
Interesting article! Hopefully we can continue making NAS safely with Synology on the future. FAFO means “Fuck Around Find Out”
cyberciti.biz
Synology HDDs are rebranded Toshiba or Seagate drives, and they added an extra premium on top of it while banning all other manufacturers with firmware updates. So, people simply stopped buying their crap. This is how you teach lessons to these companies. They thought they were Apple of NAS world 🤣
morhook.bsky.social
Are you the son of SHRDLU ? What’s your relationship with that project?
morhook.bsky.social
This cheatsheet is awesome as always thanks! `cat` can be slow on a GIANT file? I've heard only legends about that, but if @b0rk says it, it's because it can happen.
b0rk.jvns.ca
redirects

wizardzines.com/comics/termi...

(from "The Secret Rules of the Terminal", out now! wizardzines.com/zines/termin...)
redirect to a file:

cmd > file.txt terminal emulator into program, program out to file.txt, error out to terminal emulator
append to a file:

cmd >> file.txt terminal emulator into program, program out to file.txt (append mode), error out to terminal emulator
send a file to stdin:

cmd < file.txt file.txt into program, program out and err to terminal emulator
redirect stderr to a file:

cmd 2 > file.txt terminal emulator into program, program out to nowhere, err out to file.txt
redirect stdout AND stderr:

cmd > file.txt 2>&1 terminal emulator into program, out and err to file.txt
pipe stdout:

cmd1 | cmd2 terminal emulator into program 1, 1 out to program 2 via pipe, 2 out to command line, program 2 out 1 and 2 to terminal emulator
pipe stdout AND stderr:

cmd1 2>&1 | cmd2 terminal emulator into program 1, 1 and 2 out to program 2 via pipe, program 2 out 1 and 2 to terminal emulator
three gotchas

    cmd file.txt > file.txt will delete the contents of file.txt some people use set -o noclobber (in bash/zsh) to avoid this

but I just have “never read from redirect to the same file” seared into my memory.

    sudo echo blah > /root/file.txt doesn’t write to /root/file.txt as root. Instead, do:

echo blah | sudo tee /root/file.txt or sudo sh -c 'echo blah > /root/file.txt'

    cmd 2>&1 > file.txt doesn’t write both stdout and stderr to file.txt. Instead, do: cmd > file.txt 2>&1

cat vs <

I almost always prefer to do:

cat file.txt | cmd

instead of

cmd < file.txt

it works fine & it feels better to me

using cat can be slower if if’s a GIANT file though
&> and &|

some shells support &> and &| to redirect/pipe both stdout and stderr

(also some shells use |& instead of &|)
morhook.bsky.social
starting some streaming from our favorite OS Linux! more starcraft 2! twitch.tv/morhook
morhook.bsky.social
I thought this tech was took out of the Linux kernel. Glad is still going round!
cyberciti.biz
NFS at 40: Remembering the Sun Microsystems Network File System (NFS). NFS remains a fundamental technology for today’s distributed computer systems. The 40th anniversary of NFS was recently celebrated at the MSST Conference in Santa Clara, CA, in September 2025. Happy 40th birthday NFS.
NFS AT 40 – Sun Microsystems NFS
This website gathers material related to the Sun Microsystems Network File System, a project that began in 1983 and remains a fundamental technology for today’s distributed computer systems.
nfs40.online
morhook.bsky.social
A normal developer.
morhook.bsky.social
Companies like Anthropic and OpenAI are inflating the bubble because they depend on this to be able to monetize. New tech, new players, destabilize the internet and the world. We are on the verge of inventing an internet 3o (pun intended). blog.cloudflare.com/cloudflare-2...
morhook.bsky.social
I use npm for that. 👹
cyberciti.biz
I still use `pip` and requirements.txt. What about you?
morhook.bsky.social
oh my years. a fourth was being played on one chord instead of the fifth. resending!
morhook.bsky.social
check this one out! billy jean on strudel.

Thanks @patopitaluga.bsky.social for all the good ideas
morhook.bsky.social
Happy means days Girl!
morhook.bsky.social
which one do you hate? I cannot pick anyone, as I love all of them
cyberciti.biz
What's the one programming language you hope you never have to code in again ever?
Reposted by morhook
catsuka.bsky.social
RIP Renato Casaro, an Italian artist known for his film posters.
He passed away yesterday at the age of 89.
morhook.bsky.social
Wow. Is that a crashed pumpkin? Is it because of Halloween? (Here on Argentina it doesn’t exist).