python

Back Open Paginator
23.01.2026 17:35
pbx (@pbx@fosstodon.org)

Fediverse pals, I'm currently #OpenToWork!

The backbone of my experience is big #Python and #Django B2B apps, but I'm open to other ways to apply those skills.

If you have leads, feel free to hit me wth a DM here, pass my info along, or email me — address is on my resume, which is on my portfolio site: paulbissex.com/

Thanks!




Show Original Post


23.01.2026 17:30
JavaScriptBuzz (@JavaScriptBuzz@mastodon.social)

Object Spread vs Dictionary Merge: Object Merging Showdown

JavaScript object spread vs Python dictionary merging. Which language's object merging syntax is more powerful? You won't believe this!

youtube.com/watch?v=dptkvDVbhJs




Show Original Post


23.01.2026 17:30
Reuven (@Reuven@fosstodon.org)

Using uv? The #Python version is stored in .python-version.

> cat .python-version
3.14

Change it with

> uv python pin 3.15 # not out yet!

But:

> uv python pin 3.13

uv gives an error: 3.13 is incompatible with requires-python in pyproject.toml of '>=3.14.'





Show Original Post


23.01.2026 17:23
reddit_tech_vn_bot (@reddit_tech_vn_bot@mastodon.maobui.com)

Giới thiệu SudoAgent – thư viện Python thêm lớp bảo vệ lúc runtime cho các hàm AI agent thực hiện hành động "nguy hiểm" như xóa, hoàn tiền, thay đổi production. Tính năng: kiểm tra chính sách, yêu cầu xác nhận người dùng, ghi log audit an toàn, ẩn dữ liệu nhạy cảm. Thiết kế nhẹ, tích hợp linh hoạt (Slack, DB, v.v.). Góp ý cho v0.2? #AIAgent #Python #DevTool #Security #SudoAgent #AI #BảoMật #CôngCụLậpTrình #HệThốngAI

reddit.com/r/LocalLLaMA/commen




Show Original Post


23.01.2026 17:22
habr (@habr@zhub.link)

Модуль Python для обновления данных в БД — DBMerge

Хочу рассказать о своей разработке и поделиться ей с сообществом habr в виде готового модуля для Python. Этот модуль решает задачу обновления данных в базе данных. Он выполняет insert/update/delete в одном действии. Модуль DBMerge проектировался для упрощения ETL процессов по загрузке данных из множества внешних источников в SQL базу. Для взаимодействия с базой данных используется SQLAlchemy и ее универсальные механизмы, таким образом, разработка не имеет привязки к конкретной БД. (На момент написания статьи, детальные тесты проводились для PostgreSQL, MariaDB, SQLite, MS SQL) Принцип действия Принцип действия следующий: модуль создает временную таблицу в базе и записывает в нее весь входящий датасет через операцию массового insert. Далее он выполняет инструкции UPDATE, INSERT, DELETE для целевой таблицы.

habr.com/ru/articles/985306/

#sql #sqlalchemy #python #etl #postgresql #pandas




Show Original Post


23.01.2026 17:04
driscollis (@driscollis@mastodon.social)

Using semicolons in just for fun





Show Original Post


23.01.2026 17:00
PythonPeak (@PythonPeak@mastodon.social)

Calculate Age from Birthdate via 2 Methods

Calculate Age from Birthdate via 2 Methods This content explores interesting aspects of this topic. The information provided offers valuable insights and perspectives. Understanding this reveals how everyday things are more thoughtful than they appear. Next time you'll notice this detail. This fascinating detail shows how much thought goes into things we take for granted.

...

youtube.com/watch?v=8o4N4QTHEsA




Show Original Post


23.01.2026 16:26
Teckids (@Teckids@bildung.social)

:linux: Unsere Workshop-Angebote "Mini-FrogLabs" bei den diesjährigen Linux-Tagen in #Graz und #Tübingen sind online!

teckids.org/blog/2026/01/frogl

Die verschiedenen Workshops zu #Python, #Pygame, #Luanti werden vielleicht noch um weitere Themen ergänzt, und auch eigene Vorschläge sind willkommen.

🐸 Jetzt anmelden und weitersagen (in euren Hackspaces, Schulen, Freundeskreisen, usw.)!

#Coding #Jugend #Kinder #FediEltern #FediLZ #BaWüEdu #DigitaleBildung

Cc @linuxtage @tuebix




Show Original Post


23.01.2026 16:21
reddit_tech_vn_bot (@reddit_tech_vn_bot@mastodon.maobui.com)

Chúc mừng cột mốc nhỏ nhưng đáng tự hào! 🎉 Extension VS Code đầu tiên của mình, **Code Learn**, đã đạt trên 55 lượt cài đặt. Dự án giúp học Python trực tiếp trong VS Code một cách có hướng dẫn. Vẫn đang phát triển, nhưng mỗi phản hồi và lượt dùng đều rất ý nghĩa. Cảm ơn vì sự ủng hộ! #SideProject #VSCode #Python #Programming #MởNguồn #CodeLearn #HọcLậpTrình #DevTool #Extension #Developer #LậpTrìnhViên

reddit.com/r/SideProject/comme




Show Original Post


23.01.2026 16:12
habr (@habr@zhub.link)

Как создать чат-бота с LLM?

История о том как я потратил 5 лет на изучении llm ботов и в итоге написал своего за пол года. Пути реализации и ошибки.

habr.com/ru/articles/988358/

#llm #ai_и_ml #rag #agi #python #гайд #машинное+обучение #nlp #личный_опыт #ии




Show Original Post


23.01.2026 16:09
ginimod (@ginimod@mastodon.social)

La culture stellaire Maya

inimod.org/graphestellar/maya/





Show Original Post


23.01.2026 15:43
Toxic_Flange (@Toxic_Flange@infosec.exchange)

On one hand, I wanna know why #Claude likes to over-complicate shell scripts with putting nearly everything into a function and have a main() defined and call, but I think i nnow why. Its because most LLMs are heavily biased to #Python -isms I think as well as the fact that its training data is likely from many people who just do everything that way.

On one hand the small advantage of doing that for shell scripts means that all the functions are read into /defined in mem before the execution of main(), but that means if for some reason the file changes mid-run and things are NOT in functions, you can change what the script does mid-execution.

#programming




Show Original Post


1 ...601 602 603 604 605 606 607 608 609 610 611 ...1585
UP