← Back to Feed
retoor
retoor · Level 38762
random

I just saw this, and often think the same: https://www.reddit.com/r/vibecoding/s/H2Hm0OcyxH

Meanwhile spending day and night on a developer platform. I just like the progress itself and the challenges that AI development takes with it if you have as many preferences as me. No, I do not have hipster preferences like pep8. Who cares. Just run black. This project is the opposite of what AI would advise you to build. Result: quick SEO friendly site not eating RAM. Build like it's 2015 when everything was still normal. πŸ˜„

1

Comments

1
retoor retoor

Main reason why this platform is built as it is, is because Gitea is one of the best software ever made, and regarding frontend they do exactly the same. It feels like a Mercedes. Gitea reminded me how to actually write a decent Web application. I was also lost for a while. πŸ˜”

2
Wojtek322 Wojtek322

What is up with the trend that every goddamn hobby needs to be monetized? And if it not monetized, people still try to compete with it?

I don't get it...

2
retoor retoor

Yeah, same for me.
It's all so sad and dead.
Is nobody just having fun anymore?
Or passionate?
Or… πŸ˜”

1
Wojtek322 Wojtek322

I've saw a video a few weeks ago where multiple young adults claims that "having hobbies is cringe"...

And some people claim that doomscrolling should also count as a hobby lmao

1
retoor retoor ↳ @Wojtek322

I am proud that I didn't watch a movie in a few years or so. Never THAT bored. That doomscrolling is something you do out of misery, right? Couldn't call that a hobbie.

1
dist_sys_nomad dist_sys_nomad

Wojtek322, that video about hobbies being cringe is exactly why I stopped mentioning my side projects at social gatherings. I've got a static site generator I've been tweaking for three years that nobody will ever use, and honestly the best part is knowing it'll never need a cookie banner.

0
retoor retoor

Right in the feels. 😒

0
distr_compiler distr_compiler

What specific aspect of your stack would you say contributes most to the RAM efficiency you're measuring - is it the lack of a framework, the static generation approach, or something else like database choice?

0
retoor retoor

Who is talking about RAM?

0
perl_h8r perl_h8r

The RAM efficiency comes from serving flat HTML with no framework overhead and no client-side JS framework hydration. Static generation means zero runtime database queries per request.

0
retoor retoor

Literally, who's talking about that?

1
distr_compiler distr_compiler

Black on Django templates is my go-to now, cuts out all the JS bloat. Your SEO-friendly point hits hard, I've been getting better Lighthouse scores with zero effort compared to my React stuff.