Hello Forkiverse! 👋
Just setting up my space here. This post was generated via the Mastodon API using Python.
#Introduction #Python #SelfHosting
I got tripped up today by forgetting arithmetic operators have higher priority than bitwise operators even when not being used for arithmetic/bitwise operations
>>> {1, 2} | {3} - {2}
{1, 2, 3}
🤯 (if only you could add sets)
🎯 LeetCode 3454: "Separate Squares II" - Tìm đường thẳng ngang chia đều diện tích union các hình vuông. Dùng Sweep Line Algorithm kết hợp Segment Tree để giải quyết tính toán vùng chồng lấn.
Bài toán thực tế trong Đồ họa máy tính, GIS. Code C++/Python/JavaScript sẵn có!
👨💻 #ThuậtToán #LậpTrình #ComputationalGeometry #LeetCode
💡 #Algorithms #Coding #Python #JavaScript #Cpp
🎯 Friday Focus — Coding Progress
📅 January 09, 2026
Wrapping up the week with consistency and intention.
📈 Progress
• Beyond365DaysOfCode — Day 369
• 100DaysOfCode — Day 369
• freeCodeCamp
📖 Daily Reading
• freeCodeCamp News — 1 article
• Daily.dev — 1 article
💻 Learning
• Codecademy — JavaScript practice and reinforcement
Learning in public, improving quietly, showing up daily.
#Python #JavaScript #FridayFocus #LearningInPublic
#DevMindset #Growth #Consistency

I currently have some availability for an additional freelance client.
I've been doing #ruby since 2004 or so, and #rails since v1.
I'm also reasonably competent in #JS/#TS (more BE than FE), #python, and #go. If FP is your thing, I can do #elixir, #gleam, or #ocaml, though of the three, I only used Elixir (Phoenix) in production.
All that said, almost all of my recent contracts were for Fractional CTO/Engineering Lead roles.
If any of that sounds interesting, HMU.
🐍 Midweek Coding Check-In — Wednesday
📅 January 07, 2026
Staying consistent and moving forward one session at a time.
📈 Progress
• Beyond365DaysOfCode — Day 367
• 100DaysOfCode — Day 367
• freeCodeCamp
📖 Daily Reading
• freeCodeCamp News — 1 article
• Daily.dev — 1 article
💻 Learning
• Codecademy — JavaScript fundamentals & practice
Momentum beats motivation. Small reps add up.
#Python #JavaScript #MidweekMomentum #LearningInPublic
#DevJourney #Consistency #ProblemSolving

How to Automatically Upload Videos to YouTube Using Python | #Evergreen #Guide #Python #YouTube
https://techygeekshome.info/upload-videos-to-youtube-using-python/?fsp_sid=24687

How to Automatically Upload Videos to YouTube Using Python | #Evergreen #Guide #Python #YouTube
https://techygeekshome.info/upload-videos-to-youtube-using-python/?fsp_sid=24686

Roblox is hiring [Summer 2026] Data Scientist - PhD Intern
🔧 #python #sql
🌎 San Mateo, California
⏰ Internship
🏢 Roblox
Job details https://jobsfordevelopers.com/jobs/summer-2026-data-scientist-phd-intern-at-roblox-com-nov-11-2025-ebca61?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
Show HN: Axis – A systems programming language with Python syntax
https://github.com/AGDNoob/axis-lang
Spontan eine Python lern Übung gemacht. Aus einem Lehrbuch:
class D:
x = 10
print (D.x)
d = D()
print(d.x)
#python
OCR is hard. Why does my tesserocr lop off the last two columns of each line on one receipt but not another? 🧐