Readit News logoReadit News
aglione commented on The problem with "vibe coding"   dylanbeattie.net/2025/04/... · Posted by u/jmmv
rvz · 5 months ago
‘Vibe coding’ isn’t software engineering.

It throws away decades of software engineering principles in favour of unchecked AI output by clicking “accept all” on the output.

You would certainly NOT use ‘vibe coded’ slopware that powers key control systems in critical infrastructure such as energy, banking, hospitals and communications systems.

The ones pushing “vibe coding” are the same ones who are all invested in the AI companies that power it (and will never disclose that).

An incident involving using ‘vibe coded’ slopware is just waiting to happen.

aglione · 5 months ago
fun fact: nobody would never accept vibe coding software level for a 200$/month vibe coding software tools
aglione commented on Caddy – The Ultimate Server with Automatic HTTPS   caddyserver.com/... · Posted by u/huang_chung
cmsj · 7 months ago
I really like Caddy, it used to do reverse proxying and file serving for my homelab, but more recently I've demoted it to just the file serving because of how awesome it is to be able to configure reverse proxying just using container labels, which is what Traefik allows me to do.
aglione · 7 months ago
Check https://github.com/lucaslorentz/caddy-docker-proxy it's a Caddy plugin that does exactly this and in a less verbose way of Traefik.

Moreover if you have more of one caddy server deployed it handles TLS certification management in a shared environment, this thing it is not available in the Traefik open source edition (just with the enterprise solution).

aglione commented on Sora is here   openai.com/index/sora-is-... · Posted by u/toomuchtodo
aglione · 9 months ago
ok, so gpt pro with some extra power and sora. This means that gtp5 and generally speaking AGI can wait
aglione commented on Study shows that tacking the “AI” label on products may drive people away   cnn.com/2024/08/10/busine... · Posted by u/breadwinner
LeonB · a year ago
Here’s a technological concept that deserves all the hype in the world and will never get it:

- reliability

aglione · a year ago
I'll help you:

- relAIbility

aglione commented on What's up Python? Django get background tasks, a new REPL, bye bye gunicorn   bitecode.dev/p/whats-up-p... · Posted by u/kevsamuel
mg · a year ago
What I love about Django is that you can create a Django project with just one file.

You can turn a fresh Debian machine into a running Django web app by just doing:

    apt install -y python3-django apache2 libapache2-mod-wsgi-py3
And then creating the one file Django needs:

/var/www/mysite/mysite/wsgi.py:

    import os
    import django
    from django.core.wsgi import get_wsgi_application
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.wsgi')
    application = get_wsgi_application()

    ROOT_URLCONF = 'mysite.wsgi'
    SECRET_KEY = 'hello'

    def index(request):
        return django.http.HttpResponse('This is the homepage')

    def cats(request):
        return django.http.HttpResponse('This is the cats page')

    urlpatterns = [
        django.urls.path('', index),
        django.urls.path('cats', cats),
    ]
And then telling Apache where to look for it:

/etc/apache2/sites-enabled/000-default.conf:

    ServerName 127.0.0.1
    WSGIPythonPath /var/www/mysite
    <VirtualHost *:80>
        WSGIScriptAlias / /var/www/mysite/mysite/wsgi.py
        <Directory /var/www/mysite/mysite>
            <Files wsgi.py>
                Require all granted
            </Files>
        </Directory>
    </VirtualHost>
And voilá, you have a running Django application, which you can expand upon to any size and complexity.

If you want to try it in a docker container, you can run

    docker run -it --rm -p80:80 debian:12
perform the steps above and then access the Django application at 127.0.0.1

aglione · a year ago
I don't catch if you are sarcastic or not

do you really consider this a lean process in 2024?

aglione commented on I turned my open-source project into a full-time business   docs.emailengine.app/how-... · Posted by u/andris9
aglione · 2 years ago
Hey, I follow your project since I think 12 - 13 years and it has always inspired me to build something on it.

At the end I didn't, but I'm really happy you found a way to live with it.

Congratz!

aglione commented on My PHP Problems   dantleech.com/blog/2024/0... · Posted by u/gempir
bemusedthrow75 · 2 years ago
Indeed.

Also, I have been looking for GraphQL implementations for other server-side languages recently and I have yet to encounter a schema-first implementation that comes close to what the Lighthouse layer for Laravel can do.

That is really productive.

aglione · 2 years ago
have a look to http://strawberry.rocks for Python.

I've still to find a better code first implementation too

aglione commented on Godot 4.1   godotengine.org/article/g... · Posted by u/freeCandy
qwery · 2 years ago
The official docs[0] are definitely the way to go.

[0] https://docs.godotengine.org/en/stable/getting_started/intro...

aglione · 2 years ago
Nathan from GDQuest was hired to write/improve them

https://godotengine.org/article/we-hired-gdquest-work-manual...

I absolutely recommend GDQuest courses, apart from the Godot engine they have a very clean idea about writing software.

u/aglione

KarmaCake day12June 9, 2023View Original