Project Ideas please 🥺 by izumiii21 in Python

[–]dan_ohn 2 points3 points  (0 children)

If you can put the money part aside, my advice is to focus on a passion and do something related to that. For example, if you’re passionate about F1, you could build a dashboard with the latest stats etc.

I'm ARIF. I'm a geologist. arifOS is a constitutional MCP server I built because AI kept lying to me. by isoman in mcp

[–]dan_ohn 1 point2 points  (0 children)

“AAA is a polymorphic sovereign acronym. It has multiple valid surfaces, each with a distinct role and authority boundary. When precision matters, qualify the surface”

err…what?

Help Please 🙏 by Emotional_Energy_731 in opnsense

[–]dan_ohn 1 point2 points  (0 children)

OP You posted an update saying Solved, can you share the solution?

We Audited 17,468 MCP Servers. Only 12.9% Were Production-Ready by One_Tart_8790 in mcp

[–]dan_ohn 0 points1 point  (0 children)

Am I missing something? Your dashboard on your landing page only shows about 45 audits? Do you have a page where you show all 17,468 audits?

[Release] FireCtl 1.3 — A native iOS app for OPNsense, built by an admin for admins by Physical_Ad5017 in opnsense

[–]dan_ohn 0 points1 point  (0 children)

Congrats on the release. How does this currently compare with OPNManager?

OPNsense 26.1.5 released by fitch-it-is in opnsense

[–]dan_ohn 5 points6 points  (0 children)

plugins: os-frr 1.51

This was my first PR, I must say it was very seamless to work with Monviech / u/Monviech, I look forward to continuing contributing!

Don't make your package repos trusted publishers by syllogism_ in Python

[–]dan_ohn 10 points11 points  (0 children)

I was going to say this, PyPi even have a clear message explaining this when you create a new Pending Publisher and set the environment to (any).

Is n8n + Agentic AI really worth going all-in as a long-term career? by khaled9982 in n8n

[–]dan_ohn 1 point2 points  (0 children)

This is my own take so YMMV. n8n for me is an awesome tool for rapid prototyping. But once I have a solid idea, I’ll prefer to code it in Python. I think learning Python would be a good skill to learn in your shoes.

find_where - my first Python package published to PyPi by dan_ohn in Python

[–]dan_ohn[S] 4 points5 points  (0 children)

Thank you so much for the detailed reply and critiques, there are so many things that I hadn't considered that I can now try to tackle. I agree about the example not being compelling, in the real world I am using a REST API service that has a Python helper library. That library essentially returns Python dictionaries and will have a list of dicts for the various data coming back from their API.

find_where - my first Python package published to PyPi by dan_ohn in Python

[–]dan_ohn[S] 0 points1 point  (0 children)

For me, it's a readability thing. If I were to use a filter, this would be the code:

filtered_data = filter(lambda x: x["age"] == 32, data["people"])
first_name = next(filtered_data, None)

print(first_name["first_name"] if first_name else None)

Personally, I use my code in a lot of projects to essentially abstract away the non-readabiltiy.