HackerTrans
TopNewTrendsCommentsPastAskShowJobs

yassi_dev

no profile record

Submissions

Show HN: Dj-doom-panel – Play Doom inside Django Admin

djangocontrolroom.com
2 points·by yassi_dev·há 18 dias·0 comments

DCR Core Framework: A Core Library for Building Django Admin Tools

yassi.dev
2 points·by yassi_dev·mês passado·0 comments

Not All Software Systems Are Agent Friendly

yassi.dev
3 points·by yassi_dev·há 2 meses·3 comments

Show HN: Pi Patterns: generate Images from slices of π

pi.yassi.dev
1 points·by yassi_dev·há 4 meses·1 comments

Show HN: Django Control Room – All Your Tools Inside the Django Admin

github.com
134 points·by yassi_dev·há 5 meses·54 comments

Show HN: Celery observability inside Django admin (no Flower, no extra process)

github.com
1 points·by yassi_dev·há 6 meses·0 comments

Show HN: Dj-Cache-Panel – Inspect and Debug Django Cache Back Ends

github.com
1 points·by yassi_dev·há 7 meses·0 comments

Show HN: I made a Django admin panel for Redis

github.com
1 points·by yassi_dev·há 8 meses·0 comments

comments

yassi_dev
·mês passado·discuss
I built something with a similar spirit for Pi day: https://pi.yassi.dev/
yassi_dev
·há 2 meses·discuss
Thanks. It’s a Hugo theme I published here: https://github.com/yassi/hugo-theme-yassi
yassi_dev
·há 2 meses·discuss
I am working on a framework that lets you easily create tools inside the Django Admin - https://djangocontrolroom.com

I've published several panels under this banner already (tools for redis, caches, celery, etc.); I am currently working on a base library layer for tools to inherit from and to make it easier to create new tools.

Essentially, the point of all of this is to make it so that you don't need so many external services; Instead, DCR provides self hosted alternatives. This in turn makes it a lot easier to build and productionalize something using Django.

Reception has been decent so far and I estimate several thousand current adopters (Its hard to estimate based on download numbers alone.) For May I will finalize a common design language, further formalize the plugin system and how it works, and likely release a new panel.
yassi_dev
·há 4 meses·discuss
Some of my favorites

The flames of hell: https://pi.yassi.dev/generator?start=747179&len=4096&mode=wa...

Looney Tunes Rings: https://pi.yassi.dev/generator?start=972784&len=16384&mode=r...

Dreamcast Logo: https://pi.yassi.dev/generator?start=809214&len=65536&mode=s...
yassi_dev
·há 5 meses·discuss
If you work with Django long enough, and at significant scale, you live long enough to b̶e̶c̶o̶m̶e̶ ̶t̶h̶e̶ ̶v̶i̶l̶l̶a̶i̶n̶ make hacky extensions to the admin.

I am hoping this work makes it easier for people to start extending the admin in a normalized way.
yassi_dev
·há 5 meses·discuss
quarkus looks interesting, I'll have to check it out.

I think there is a strong case for officially expanding the django admin to other use cases. I suppose this is a topic for another time
yassi_dev
·há 5 meses·discuss
thank you for the kind words. Hopefully you get to try it out.
yassi_dev
·há 5 meses·discuss
Amazing. glad you're making use of dj-redis-panel. let me know if I can assist you.
yassi_dev
·há 5 meses·discuss
Thats the spirit. I built this to unlock the django application from platforms in such a way
yassi_dev
·há 5 meses·discuss
Thats an interesting idea. One of my next steps is to create a tutorial on how to make your own panel. I'll think on this.
yassi_dev
·há 5 meses·discuss
They said your welcome
yassi_dev
·há 5 meses·discuss
I think any large enough django project has toyed around with extending the admin in some way. Hopefully this project can help establish a standard to make this sort of thing easier.
yassi_dev
·há 5 meses·discuss
Thank you.

I think its good advice to avoid the admin for customer facing use cases. But for internal facing tools It seems pretty wasteful to not use the built in admin - it has all the bells as whistles to build upon (auth, permissions, etc.)
yassi_dev
·há 5 meses·discuss
I'm glad you feel that way. The django admin has saved my day many times.
yassi_dev
·há 5 meses·discuss
Thanks. Part of the reason this exists is simply wanting to toy around with the entrypoints system
yassi_dev
·há 5 meses·discuss
Thats an interesting way to frame it.

In my view. Building things with AI creates the need for common patterns and guardrails (i.e. frameworks) Then as these new apps become productionalized - tooling that fits your framework starts to become more important.

In that sense, AI increases the need for good patterns around observability. This project aims to make this a little easier to do for Django right from inside the framework as opposed to an external service.
yassi_dev
·há 5 meses·discuss
Thanks. I hope you find it useful
yassi_dev
·há 5 meses·discuss
I get your point

I think even if AI handles more of the CRUD side, you still need to understand what’s happening in the system once it’s running - this is where this project fits in.

To your point about framework use because of AI: As more applications are being built because of lowering barriers, I think it makes sense for full stack monolithic frameworks to be used more frequently.
yassi_dev
·há 5 meses·discuss
Fair.

README and site were definitely optimized for speed over perfection. The panels themselves got a bit more attention.

Curious what you’d want to see improved on the docs/site side.
yassi_dev
·há 5 meses·discuss
Totally understand - I am a long time flower user for example, and I am familiar with having to harden that installation a bit.

What I'm aiming for here is slightly different - keeping everything inside Django so there are no extra services to run or configure or proxy. As long as you surface the admin somewhere, then that is the place to find your tooling (including celery monitoring)

There will always be room for both approaches. A lightweight proxy/redirect could be something to explore in the future.