@emmatyping I don't really know how to write even basic #Python scripts anymore, but I still miss being able compare strings like that, or concatenating them with "+", when I'm working with #RStats
The 23 ways of dividing a 3x3 grid into 2, 3 and 4 triangles, excluding rotations.
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_02_20 #Processing #Python #py5 #CreativeCoding

Ok donc si tu fais du #Python mais que t'es sans emploi apparemment t'existes pas

Airbnb is hiring Senior Analyst, Advanced Analytics
🔧 #python #nosql #sql #seniorengineer
🌎 Bangalore, India
⏰ Full-time
🏢 Airbnb
Job details https://jobsfordevelopers.com/jobs/senior-analyst-advanced-analytics-at-airbnb-com-feb-10-2026-c6c1b1?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
📣 DjangoCon US 2026 is coming to Chicago and we want YOUR talk! Whether you're a first-time speaker or a seasoned pro, we'd love to hear your ideas about Django, Python, and the web.
CFP closes March 16 at 11am CDT
https://pretalx.com/djangocon-us-2026/cfp

Just released Scientific Toolkit v2.0 — an open‑source, cross‑disciplinary environment for geochemistry, archaeology, GIS, and lab/field analysis.
Designed to make advanced scientific workflows accessible, modular, and fully reproducible.
🔗 GitHub: https://github.com/Sefy76-Curiosity/Basalt-Provenance-Triage-Toolkit (github.com in Bing)
📄 DOI: https://doi.org/10.5281/zenodo.18727756 (doi.org in Bing)
#OpenScience #ResearchSoftware #Geochemistry #Archaeology #GIScience #Python #OpenSource #AcademicTools #DataAnalysis
CharlieKirk Credential Theft Malware Targeting Windows
CharlieKirk Grabber is a Python-based Windows infostealer that rapidly steals browser credentials
Pulse ID: 699a25c4c3fd0bde93c72263
Pulse Link: https://otx.alienvault.com/pulse/699a25c4c3fd0bde93c72263
Pulse Author: cryptocti
Created: 2026-02-21 21:38:12
Be advised, this data is unverified and should be considered preliminary. Always do further verification.
#Browser #CyberSecurity #InfoSec #InfoStealer #Malware #OTX #OpenThreatExchange #Python #Windows #bot #cryptocti
@Pomegranatepirate Incidentally, I am considering using some of this so-called #AI to help literally screen read Facebook posts into #RSS feeds. So far, I've just tried to get Google Gemini (company account) to do it but it's useless. Just goes on about how Facebook prevents scraping (yeah, no shit) and offers to give me #Python scripts so that I can do it myself (no, I want you, robot, to do it for me). Anyway, it's not super important I guess.
#python #technology #finance
#riskmanagement #investing
#automation #optimization #statistics #algorithmictrading
👉 Azapy: A Feature-Rich Python Toolkit for Multi-Risk Portfolio Optimization & Flexible Asset Management 🤖 📈 🐍
Explore 10 Risk Measures × 6 Strategies = 60 Ways to Optimize Your Regime-Robust Portfolios in Pythonic Asset Management 💰

Python Tip #52 (of 365):
Use deep tuple unpacking (when it's helpful).
Instead of this:
for n, value in iterable:
item, color = value
...
Do this:
for n, (item, color) in iterable:
...
Tip 49 (list-like unpacking) included a deep unpacking example:
[(item, max_count)] = Counter(items).most_common(1)
That unpacks a 2-item tuple with a 1-item list into 2 variables.
Compare that to this:
[pair] = Counter(items).most_common(1)
item, max_count = pair
Using tqdm everywhere in Python, when doing machine learning, make my quick and dirty experiments feel SO professional.
PEP 813: The Pretty Print Protocol