Prediction intervals (not only) for Boosted Configuration Networks in Python
https://thierrymoudiki.github.io/blog/2022/10/05/python/explainableml/interpretation-and-PI-for-BCN
#Python #DataScience #MachineLearning #rstats #Techtonique

Prediction intervals (not only) for Boosted Configuration Networks in Python
https://thierrymoudiki.github.io/blog/2022/10/05/python/explainableml/interpretation-and-PI-for-BCN
#Python #DataScience #MachineLearning #rstats #Techtonique

[Перевод] ESP32 + MicroPython + трубка Гейгера: как за вечер собрать детектор радиации
Радиация окружает нас повсюду – естественный радиоактивный фон присутствует всегда и везде. Имея под рукой плату ESP32 за 8 долларов, OLED-дисплей за 3 доллара, MicroPython и трубку Гейгера – Мюллера, можно без труда собрать полноценный детектор радиации. Он сможет не только выводить текущие показатели на экран, но и отправлять данные на GMCMap, в Home Assistant и другие сервисы. А в качестве бонуса в конце статьи я покажу несколько забавных научных экспериментов – например, как засечь радон у себя дома с помощью носка и обычного пылесоса.
https://habr.com/ru/companies/timeweb/articles/1067542/
#ESP32 #Python #MicroPython #счетчик_Гейгера #трубка_Гейгера__Мюллера #радиация #Home_Assistant #timeweb_статьи_перевод
Как я перенёс проверку цен с VPS на компьютеры пользователей — и зачем всё-таки оставил сервер
Сначала PriceTrack проверял страницы маркетплейса на VPS. Селекторы были корректными, но сервер вместо карточек товара получал 403. В итоге я перенёс браузер и извлечение данных на компьютеры пользователей, а сервер оставил управляющим контуром. В статье рассказываю, как устроена эта архитектура, зачем понадобились базовый профиль и локальный рецепт и какие проблемы появились с фоновыми проверками, треем и несколькими аккаунтами.
https://habr.com/ru/articles/1067564/
#архитектура_ПО #desktopприложение #Python #FastAPI #Playwright #парсинг #маркетплейсы #локальная_обработка #распределённая_система #Windows
[$] Bringing BPF to binfmt_misc
The kernel is able to run a few types of executable files, including native binaries in the ELF format and interpreted programs that begin with the #! marker. It also, however, ha [...]
“The concurrency lobby quickly discovered they could trade developer sanity for performance.”
Lovely deep dive into some of the concerns Python developers should be aware of when dealing with concurrency #Python #async
Archimedes spiral with #Python turtle graphics:
#!/usr/bin/env python3
from turtle import *
from math import *
color("blue")
speed(0)
down()
for i in range(200):
t = i*pi/20
r = 1+5*t
goto(r*cos(t), r*sin(t))
done()

Vanta Stealer uses dual-layer PyArmor obfuscation to evade detection while stealing credentials across 8 app categories. 9 detections, 28 IOCs. Full analysis + IOCs: https://intel.threadlinqs.com/threat/TL-2026-1914 #ThreatIntel #Python #Expressjs #Vanta #VantaStealer #PyArmor

>>>
while not keynote_speaker:
print("Still looking... 👀")
👾 Help us break the loop! 🐍
We are still looking for our keynote speakers who can inspire, challenge, and maybe even settle a tabs vs. spaces debate (or wisely avoid it).
Do you know someone who can be our keynote speaker?
submit(speaker)
RPweave: Unified R + Python + LaTeX System using uv
https://thierrymoudiki.github.io/blog/2025/10/19/r/python/RPweave
Today in things that couldn't have aged well:
"Unpin flit-core dependency" 2 years ago without actually updating the metadata to use the newer pyproject.toml format.
https://github.com/sethmlarson/socksio/commit/b326406915fd98a8185c1c160165c5b8963b30c1
Calculate the nth prime with #Python
#!/usr/bin/env python3
import sys
import time; max=int(sys.argv[1]); n=1; p=1
t0 = time.perf_counter()
while n<=max:
f=0; j=2; s = int(p**0.5)
while f < 1:
if j >= s:
f=2
if p % j == 0:
f=1
j+=1
if f != 1:
n+=1;
#print(n,p);
p+=1
t1 = time.perf_counter()
print(f"n = {max}")
print(f"nth prime = {p-1}")
print(f"Elapsed time = {t1-t0:.6f} seconds")

Задаём UserGate неудобные вопросы
Всем привет! Меня зовут Артем, я занимаюсь информационной безопасностью и иногда автоматизирую задачи, в которых ручная проверка требует слишком много времени и внимания. В одном из проектов такой задачей стал анализ политики NGFW: правил много, связанных объектов ещё больше, а определить, какие настройки действительно требуют внимания, нужно было без автоматического изменения конфигурации. Так появилась read-only утилита, которая получает данные через API, приводит их к единому виду, выполняет набор проверок и собирает результаты в удобный Excel-отчёт для администратора.
https://habr.com/ru/companies/gazpromcps/articles/1067374/
#информационная_безопасность #ngfw #usergate_ngfw #автоматизация #python