07.08.2026 18:39
I wondered how long it would take to manually check if any user across all my Linux servers had an expired password.
SSH. Check. Repeat.
Yeah... no thanks.
So I built PEXA.
It connects to multiple servers, audits password expiration for human users, and generates reports in seconds.
And... OOPS! 😄
Now I have all my password audit reports in one place.
You can find the project and the source code here:.
🔗 https:// github.com/hosnizaaraoui/OOPS
#Linux #SysAdmin #Python #Automation
Show Original Post copy and reply to the post Report 07.08.2026 17:43
I've updated gemtext to v1.1.0, adding support for the Spartan `=:` line type.
https:// blog.davep.org/2026/08/07/gemt ext-v1-1-0.html
#SpartanProtocol #Spartan #SmallWeb #smolweb #python #programming
Show Original Post copy and reply to the post Report 07.08.2026 17:30
Which is faster in #Python #Pandas , | or isin?
I prefer isin; it's clearer to write and read. Plus, fewer worries about parentheses.
But is it faster? Depends on the column type! isin edges out | on strings, but | wins on ints. Which surprised me.
Bottom line: Use %%timeit to check. Don't just guess!
Show Original Post copy and reply to the post Report 07.08.2026 15:35
With the Django 6.1 release, Threadmill officially leaves beta. 🎉
https:// github.com/codingjoe/threadmill
#Django #Python #celery #async #tasks
Show Original Post copy and reply to the post Report 07.08.2026 15:08
Calling =TECHTO_MLREGRESSION for Machine Learning supervised regression in Excel is just a matter of copying and pastinghttps:// thierrymoudiki.github.io/blog/ 2025/07/06/r/python/techto-ml
#Python #DataScience #MachineLearning #rstats #Techtonique
Show Original Post copy and reply to the post Report 07.08.2026 14:32
“EmScriptenはWebAssemblyにC およびC++をコンパイルします。 LLVMLLVMおよび Binaryenバイナリーエン。Emscriptenの出力は実... / “GitHub - emscripten-core/emscripten: Emscripten: An LLVM-to-WebAssembly Compiler” https:// htn.to/Wd7NgNL77R #github #MITライセンス #c ++ #javascript #python …
Show Original Post copy and reply to the post Report 07.08.2026 14:12
Код решает, LLM помогает: как я строил AI-тренера для бегунов
Я уже несколько месяцев разрабатываю AI-тренера для бегунов в Telegram — придумал ему имя и образ, Клод де Пейс, — и это ещё далеко не финал. В какой-то момент я дал ему возможность менять расписание по свободной фразе в чате. Первый же реальный тест: пользователь пишет «поменяй мне лёгкую в субботу» — имея в виду «перенеси лёгкую тренировку на субботу». План действительно поменялся. Не в субботу — в четверг. Расследование заняло пару минут: в четверг у пользователя стояла лёгкая тренировка, и модель формально нашла в сообщении два признака — easy и Saturday — и уверенно ( confidence: 0.92 ) выбрала тот объект, который был ближе, а не тот, который имел в виду человек. С точки зрения классификации всё было сделано правильно. С точки зрения пользователя — совсем не то, о чём он просил. Именно в этот момент сложился принцип, вокруг которого сейчас построена вся система: модель не обязана знать, какие ограничения являются бизнес-инвариантами продукта, если я сам не превратил их в явные правила . Код обязан это знать. Модель — нет.
https:// habr.com/ru/articles/1067942/
#LLM #Telegram_боты #Python #промптинжиниринг #AIагенты #Клод_де_Пейс #разработка_продукта #RAG
Show Original Post copy and reply to the post Report 07.08.2026 13:59
Meet Vanta Stealer, a new Python infostealer that has been targeting browsers, crypto wallets, gaming accounts, and Discord credentials.
Listen/Read: https:// hackread.com/vanta-stealer-mal ware-gamers-crypto-users-web-apps/
#CyberSecurity #VantaStealer #Python #Malware #InfoStealer
Show Original Post copy and reply to the post Report 07.08.2026 13:52
ROS 2のcallback/CallbackGroup構造を「ビルドせず・実行せず」ソースから抽出するツールを作ったhttps:// qiita.com/MrBearing/items/2619 eeed124bcd3c997e?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Python #静的解析 #ROS2 #tree_sitter
Show Original Post copy and reply to the post Report 07.08.2026 13:44
Dew Drop Weekly Newsletter 495 - Week Ending August 7, 2026
https:// zc.vg/kFZfL?m=0
#dewdrop #newsletter #javascript #azure #css #aspnetcore #blazor #xaml #windowsdev #cpp #csharp #dotnet #ai #dotnetmaui #appdev #mcp #agile #devops #python #podcasts #IoT #m365 #sqlserver #data #terminal #devtools
Show Original Post copy and reply to the post Report 07.08.2026 13:41
try: pycon.ticket() except SoldOutError: regret()
Don't test the exception. Grab your PyCon Netherlands ticket today. 🐍🎟️#PyConNL #Python #try #except
Show Original Post copy and reply to the post Report 07.08.2026 12:56
💡 Python‑Blosc2 tip #10: store unbounded text as `utf8()`, not fixed‑width `string()`.
`string(max_length=200)` rides on NumPy's `<U` dtype, which is UCS‑4: 800 bytes per row in memory on *every* read, three characters or two hundred.
Instead of: title: str = blosc2.field(blosc2.string(max_length=200))
Do: title: str = blosc2.field(blosc2.utf8())
Massive memory savings. More info:
https:// blosc.org/python-blosc2/guides /optimization_tips.html#store-unbounded-text-as-utf8-not-fixed-width-string
Compress Better, Compute Bigger 🚀
#Python #DataScience #Blosc2
Show Original Post copy and reply to the post Report