Btw, the latest rixpress version now supports Sub-Pipelines! rixpress: reproducible analytical pipelines in #RStats, #Python and #Julia using #Nix as the underlying build tool!

My preteen nephews want to learn programming with guided instructions. Please share any resources for teaching this age group. I am looking for #Python or #RStats resources for making mini games/other projects that teach programming concepts. #programming
Make an improved interactive unit converter with tkinter in Python
https://rodstephensbooks.com/unit_converter_tk2.html

Cursos Gratuitos FIAP: 20 opções em Tecnologia e Negócios com Certificado
https://guiadeti.com.br/cursos-gratuitos-fiap/
#bigdata #carreiratecnologia #cloudcomputing #cursosgratuitos #devops #fiap #inteligenciaartificial #python #tecnologia
https://guiadeti.com.br/cursos-gratuitos-fiap/?fsp_sid=347
#genuary #genurary27 #genuary2026 #LSystem
Find the sketch-a-day archives and tip jar at: https://abav.lugaralgum.com/sketch-a-day
Code for this sketch at: https://github.com/villares/sketch-a-day/tree/main/2026/sketch_2026_01_27 #Processing #Python #py5 #CreativeCoding
What the? The #python code formatter ruff’s smallest wheel is still over 10MB? With the sdist coming in at a slim 4.5MB. Why?
Discord is hiring Staff Software Engineer - Safety Experience
🔧 #golang #javascript #python #rust #typescript #django #flask #react #android #ios #api #kafka #postgresql
🌎 San Francisco, Bay Area
⏰ Full-time
🏢 Discord
Job details https://jobsfordevelopers.com/jobs/staff-software-engineer-safety-experience-at-discord-com-dec-19-2025-47f514?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
Embedding Python into an Android app using Chaquopy
https://github.com/mariobodemann/talk-python-on-android by @mariobodemann
#androiddev #python @berlindroid @cbase

Wait, you want me to pay #microslop to run #python? how about no

Phân tích 6 framework (Rust, JS, Python, Go, Java, TS) cho thấy: Kích thước code không đồng nghĩa phức tạp cấu trúc. Tokio (Rust) dù lớn nhất (92k dòng) vẫn có độ liên kết thấp. Vòng lặp phụ thuộc cục bộ, không lan rộng. Java (Gson) có 1000+ class, Go (Prometheus) phân chia rõ ràng chức năng. #PhátTriểnPhầnMềm #TốiƯuHệThống #CodeStructure #SoftwareEngineering
**Tags:** #CôngNghệ #PhânTíchPhầnMềm #Rust #JavaScript #Python #GoLang #Java #TypeScript
https://www.reddit.com/r/programming/comments
Why bother learning Python?
It automates the grind (pentest scripts in minutes!), crushes cyber tasks like OSINT & malware digs, fuels AI threat hunts, and builds killer tools.
Join the online course (February 10-12) and discover the secret power of Python!
https://hackers-arise.com/
#cybersecurity #hacking #python
Python Tip #28 (of 365):
Read large files line-by-line by looping over them.
If you are working with a file that could be very large (such as a log file that could be gigabytes in size), don't read the whole file all at once.
When working with potentially large text files, process the file line-by-line by looping over it:
with open("logs.txt") as log_file:
for line in log_file:
... # Process the line
🧵(1/2)