aaaaaaaaaaand it's on codeberg nowwwww!!!!!
https://codeberg.org/vantablack/ily
#TokiPona #python #ValentinesDay
used my newfound python powers to make @ka_so an extremely early valentine's day gift :3
<3 <3 <3
#TokiPona #ValentinesDay #python
R言語入門2~Googleコラボラトリで学ぶ Rでのデータ読込みの基本
#Python #r入門 #r言語 #どっちがいい #プログラミング #ベクトル #学院 #情報 #早大 #早稲田大学 #早稲田大学高等学院 #R言語基礎・入門 #R言語基礎・入門 #Python #r入門 #r言語 #どっちがいい #プログラミング #ベクトル #学院 #情報 #早大 #早稲田大学 #早稲田大学高等学院

Content warning:AdventOfCode musings/spoilers
Adding the non-recursive implementation in there as well (thanks to @mina and @tshirtman for the nudges, even if perhaps they weren't intended as such):
https://codeberg.org/jochie/adventofcode/src/branch/main/2025/07/program.py#L117
It runs in about half the time and doesn't require the caching structure of course. Performance stats over 10k runs:
[Duration min: 760.29µs -30.29µs/+126.71µs] Part 2, filename 'input'
vs
[Duration min: 1.93ms -106.95µs/+849.05µs] Part 2, filename 'input'
I just completed "Laboratories" - Day 7 - Advent of Code 2025
I thought my Part 2 approach couldn't be right, since it tossed all of Part 1 and used a couple lines of memoized recursion in <10ms. Part 1 was trickier to count.
https://github.com/jstanden/advent-of-code-python/blob/main/2025/day7.ipynb
#AdventOfCode #Python #Programming
🚨 Deadline: Dec 7 @ 11:59p CST 🚨
We’re in the 👉 FINAL HOURS 👈 of the #PyTexasConference2026 #CFP! 🐍
Don’t miss your chance to speak at our 20th anniversary #Python conference 🎉
Your perspective could spark someone’s next breakthrough. 💛
Learn more here → https://www.pytexas.org/2026

Aprender Django https://myblog.clonbg.es/aprender-django/ #Programación #Python https://clonbg.es

Today was the first day where i gave up on the second part. The first part was pretty straightforward, which is always a bad omen.
Ill give it a shot again another day.
#adventofcode #code #python #AdventOfCode2025
With free-threaded #python getting closer to production ready, and a side-project that gets a bit of a speed-boost from real threads vs multiprocessing, I'm finally playing around with samply per https://py-free-threading.github.io/profiling/
It's pretty decent. Unfortunately it's telling me the bottlenecks are largely the ones I already know about 😂. But it's nice to see the modern tooling with much more intuitive visualization back that up effectively. #profiling #softwaredev

Nearing my end of day 3 of the #7dfps #gamejam. Got the core gameplay mechanics going. The weapon has two chambers, load one of two colors in each, only hurtful to the same colored enemy. I had a similar #mechanics in an older game of mine but it works better here.
Started experimenting with gl lines for #explosions. Its getting to that point where I'm playing the game more than I'm coding it, which is exactly where I want to be.
#gamedev #screenshotsaturday #indiegame #panda3d #python
Use image filters to create disabled button images in Python
https://rodstephensbooks.com/disabled_buttons.html
#Python #ImageProcessing #GUI #Buttons

Content warning:AOC Day 7 Chatter
I just completed "Laboratories" - Day 7 - Advent of Code 2025
Today got tricky. Part 1 was easy, but I initially overthought part 2. Second try was simpler, but would run forever. Restructuring and adding function-level caching once again performed magic and it went from a computational space heater to running in 20ms.
Thank you 'functools.cache', which I only learned from doing last year's AOC.
https://adventofcode.com/2025/day/7
https://github.com/adw99/advent-of-code-2025/tree/main/day-7