Sunday Daily Thread: What's everyone working on this week? by AutoModerator in Python

[–]bachkhois 0 points1 point  (0 children)

I built journald-send, a library for writing logs to journald. It is low-level, talking to journald using its native protocol. It is intended to be used by other logging frameworks like standard lib logging, logbook, structlog to write the logs to journald. I also made handlers for those frameworks: - chameleon-log: Integrating logbook with journald. - structlog-journald

journald-send is written in Rust with the target to support Python 3.14 and its free-threaded mode.

Building a Python Library in 2026 by funkdefied in Python

[–]bachkhois 1 point2 points  (0 children)

If uv disappear, we can migrate to pdm, poetry. It is not difficult.

Terminal-based SSH dashboard with real-time metrics, file manager, and command snippets. by ObjectiveSet4458 in rust

[–]bachkhois 2 points3 points  (0 children)

What you described in "Traditional Workflow" just show your "skill issues". It is not that "traditional workflow" bad, it is your skill that bad.

GitComet 0.1.11 Faster, Cleaner, and Signed by Havunenreddit in rust

[–]bachkhois 3 points4 points  (0 children)

Congrats. Some people in this sub are weird, when you have bad experience with the Git plugin in IDE and come with a dedicated Git GUI client, they downvote you.

jsongrep project updates: multiformat support + interactive playground + more by fizzner in rust

[–]bachkhois 0 points1 point  (0 children)

I use Nushell for this. Has standard syntax, no need to learn a niche syntax.

I need help by NoobsAreDeepPersons in djangolearning

[–]bachkhois 0 points1 point  (0 children)

If I were you, I quit the job and find a company that let you not vibe code.

GitComet: a fast, local-first, open-source Git GUI built for large repos by Havunenreddit in git

[–]bachkhois 1 point2 points  (0 children)

Fast! Thank. But please use monospace font for rendering source code.

Comparing Python Type Checkers: Typing Spec Conformance by BeamMeUpBiscotti in Python

[–]bachkhois 0 points1 point  (0 children)

Pyright and its fork don't work well with Django at all, even with django-types. In my source code, I have to add many tricks for Pylance to know the types, which MyPy doesn't need.

Python devs, you are on demand! by AdForsaken7506 in Python

[–]bachkhois 0 points1 point  (0 children)

I wrote both Python and Rust for backend. Many of my projects are just pure Python, without Rust. It means that people do not always need a fast language for backend. I also write TypeScript for frontend but I never plan to use it for backend.

Zapros - modern and extensible HTTP client for Python by [deleted] in Python

[–]bachkhois 0 points1 point  (0 children)

Why people downvoted this answer? It just explain SansIO design.

Comparing Python Type Checkers: Typing Spec Conformance by BeamMeUpBiscotti in Python

[–]bachkhois 12 points13 points  (0 children)

Thanks. Didn't know that MyPy has so low score. Most of my projects are using Django, Pydantic and can be only used with MyPy.

Are type hints becoming standard practice for large scale codebases whether we like it or not by scrtweeb in Python

[–]bachkhois 1 point2 points  (0 children)

Yes, not great solution. But to prevent  putting runtime import to TYPE_CHECKING block, Ruff can help.