this post was submitted on 10 Jul 2025
928 points (99.8% liked)

Programmer Humor

24942 readers
1259 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 13 hours ago

Honestly "C + SDL + Lua" is basically the best, most sane"full stack" I have ever used.

IMO it allows for the perfect level of abstraction.

[–] [email protected] 8 points 21 hours ago (1 children)

can your React do that?? didn't fackin think so dabs mockingly

[–] [email protected] 6 points 19 hours ago

How I love mista azozin...

[–] [email protected] 1 points 21 hours ago

I'm still waiting for the day we get a proper alternative to JavaScript.

If I had to make one, it would have a Bash-like syntax

[–] [email protected] 34 points 22 hours ago (1 children)

I moved from Visual Basic (3 no less!) to C because I needed to optimize the performance of a software synthesis (like, sound synthesis) application I was developing at the time (mid-1990s). It boggles my mind to this day how much fucking work you had to do just to create a simple window in C. It instantly made clear why UIs at the time were so bad and I went back to Visual Basic for the UI with a compiled C DLL to do the heavy lifting.

There's no excuse for why UIs are still so bad today.

[–] [email protected] 24 points 21 hours ago (1 children)

The "excuse" is more or less the 20 or so replacements that have been made and died. I think Microsoft alone is responsible for 5 over the life of Windows.

We've more or less kinda settled on HTML only because it's already wide spread. But it's not perfect so more standards for the standards pile. Don't worry, react will end up buried by the next thing on the pile eventually.

[–] [email protected] 15 points 21 hours ago

We’ve more or less kinda settled on HTML

It's funny, one of the modern UI glitches that I hate the most is when a long bit of text is just truncated with ellipses instead of the whole thing being shown and you have to hold the mouse over to get it in a tooltip, or shudder actually click on the thing. HTML is great at word-wrapping and allowing the whole UI to "flow" with variable heights and widths as necessary - and yet that is never allowed to happen in apps.

[–] [email protected] 19 points 1 day ago (3 children)

this is like when I built that web server in x86 assembly lol.

[–] [email protected] 5 points 18 hours ago (1 children)

I once write a web app in C, but this terrifies even me.. though Tsoding, the guy in the video, did that, too..

[–] [email protected] 2 points 16 hours ago

My favorite so far is either my websever in bash or my webserver in Common Lisp. my webserver in C was fun too though

[–] [email protected] 25 points 19 hours ago (1 children)
[–] [email protected] 3 points 16 hours ago

This. This project drained my soul lol.

[–] [email protected] 9 points 1 day ago (4 children)

I bet that thing was fast!

[–] [email protected] 1 points 16 hours ago

yeah, in one sense it was lol.

[–] [email protected] 1 points 17 hours ago (1 children)

Who do you think is better at writing assembly? @[email protected] or a modern compiler with hundreds of contributors.

[–] [email protected] 2 points 16 hours ago

It’s definitely not me

[–] [email protected] 9 points 18 hours ago

Meh. Even hosting static files in a RAM disk over localhost, you're 99% as good as you can be by using the sendfile() system call. The kernel can copy data from one file descriptor to another faster than any userspace program can. Implementing the Length header is a stat() call.

If you're not on a RAM disk and not on localhost, then disk access or network throughput will predominate.

Assembly is not magic go faster sauce.

[–] [email protected] 10 points 19 hours ago

I mean, just because you implemented something in a low level lang, it doesn't mean you're gonna have the fastest implementation. Even in high level langs, there's usually heavy optimization involved in things that are done all the time (e.g. web servers)

[–] [email protected] 11 points 1 day ago

React Native

[–] [email protected] 2 points 1 day ago

laughs in Vaadin

[–] [email protected] 6 points 1 day ago

This reminds me. I got a search engine to build.

load more comments
view more: next ›