mstdn.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A general-purpose Mastodon server with a 500 character limit. All languages are welcome.

Administered by:

Server stats:

16K
active users

Making it harder to do wrong

#curl is written in C. We try to write better C to reduce the risk of future vulnerabilities.

daniel.haxx.se/blog/2023/12/13

Kevin Karhan :verified:

@bagder same reason for I guess and same reason why I do all the code in with only .config makefiles where needed:

Readable and thus easy to code allows for , which is vital for and ...

After all, mistakes do happen and I'd rather have it easy find and fix than optimize every bit at the cost of unmaintainable code.

@kkarhan @bagder The Poe's law strikes.

Bash, the machine code of UNIX, touted as 'readable' 😜

@hramrach @bagder if you think is horrible (I assume you use and/or - which then yes that is a valid argument) then please take a look at , or the original and tell me that's readable.

Tangents aside: Bash, for better or worse, is the for and since I want OS/1337 to be "self-reproducing" / "self-hosting" with as little dependencies as possible, I'm stuck with it.

@OS1337@infosec.exchange

@kkarhan @bagder @OS1337 I actually use bash because it's the standard. The QWERTY keyboard is also a standard, and I also use it.

There are objective metrics for keyboard fitness like the average travel for typing a word, average number of hand swaps, and QWERTY is worse than average random layout on all of these, intentionally, for historical reasons.

I know it sucks but when I go to a shop and want a keyboard the one I get is QWERTY. When I want a shell the one I get is bash.

@hramrach @kkarhan

With Bash I have to agree. Especially in case where I'm managing a fleet of servers together with a bunch of other people, I'm not going to change the default shell on every one of them and install my own .whateverrc file.

With the keyboard however I can disagree. Actually, the keyboard can have QWERTY written on the keycaps, but nothing stops you from configuring your system to use whatever layout you like. I for example wrote this post on a QWERTY keyboard using a Dvorak layout. The keycaps don't match with letters being written, but I don't care, because I'm not even looking at the keyboard.

@kkarhan
I use bash but often try to write my scripts to sh until something breaks, so theoretically if I need it to work in busybox or whatever then it's just fine
@etam @hramrach

@empathicqubit @etam @hramrach that does make sense if portability is a must.

Luckily does have a minimalist implementation (), making it easier to work with than 's .

At least I've not hit a snag on it yet developing @OS1337@infosec.exchange ...

@kkarhan
Interesting I'll have to check it out. Busybox is default on Alpine, I think
@etam @hramrach @OS1337

@kkarhan
In the past I wrote Shell Scripts as small as possible. For example was a line break required for the Script to Work? If Not, remove it.
And then beeing proud of with how many lines of Code I achived the goal.
But now I'm more focused on readability. And it really enhanced my Code, also for others
@bagder

@Madic @bagder *nodds in agreement*

The cost-gain balance in terms of optimizing code for size is completely trash, because maintainable and documented code (even if it's just comments) is more important longtern than saving a few bytes omnitting line breaks...

Expechally when like does a better job at making things smaller than any coder could within i.e. alone...

Also I'm not writing that has to obfuscate everything to make harder...