I'm back trying to make #ParticleLife run faster, this time with #scipy #cKDTree. #ScipySpatial Code at: https://github.com/villares/sketch-a-day/tree/main/2025/sketch_2025_11_11
More sketch-a-day: https://abav.lugaralgum.com/sketch-a-day
If you like this, support my work:
https://www.paypal.com/donate/?hosted_button_id=5B4MZ78C9J724
https://liberapay.com/Villares
https://wise.com/pay/me/alexandrev562 #Processing #Python #py5 #CreativeCoding

Paste an image onto another image with PIL in Python
https://rodstephensbooks.com/paste_image.html
#Python #PIL #ImageProcessing

Gaphor 3.2.0 is now out! Some highlights include:
- Troubleshooting info can now be found in the About dialog
- Introduction of CSS classes: .item for all items you put on the diagram
- Improved updates in Model Browser for attribute/parameter types
- macOS: native window decorations and window menu
https://gaphor.org/download #python #GNOME #modeling
Quest 5 of #EverybodyCodes 2025 (in #Python)
https://everybody.codes/event/2025/quests/5
First appearance of functools (cmp_to_key) for some custom sorting goodness. Beyond that it was code that could have been written in any other language, probably.
https://codeberg.org/jochie/EverybodyCodes/src/branch/main/2025/Q05
75 lines of code in #Beeware (Calc White) vs 81 in #Kivy (Calc Black) 🧐
#Python
#Devtools
#Android
#Coding
Jemand war so freundlich subprocess.run zu registrieren und automatisch zur #Python Doku weiterzuleiten :D
dns-benchmark-tool v0.2.3 đã chính thức lên kệ PyPI! 🚀 Công cụ CLI này giúp kiểm tra tốc độ & độ tin cậy của DNS resolver nhanh chóng. Phiên bản mới: workflows gọn gàng, tài liệu cập nhật, cải thiện nhỏ. Cài đặt bằng pip: `pip install dns-benchmark-tool`. Dự án mở nguồn: [GitHub](...), tài liệu tại [PyPI](...). Mọi góp ý đều được hoan nghênh!
#DNSBenchmark #PyPI #Sysadmin #Python #ToolMới #DNSResolver #TriểnKhảiMởnguồn #CôngCụLậpTrình
https://www.reddit.com/r/selfhosted/comments/1oupth3/new
If you ever have imposter syndrome, take solace in the fact that I, a person who has been writing #python for at least 15 years in a professional capacity, just fixed a bug of my own making caused by case insensitive string comparison.
10 Smart Performance Hacks For Faster Python Code
https://blog.jetbrains.com/pycharm/2025/11/10-smart-performance-hacks-for-faster-python-code/
#python #development #technology
If you’re going to PyCon Ireland this weekend I’ll be at the Python Ireland community table, I’ll also have some 3D printed coasters available.
Also looking forward to some sticker swapping!
#PyConIe #Python #PyCon #PythonIe

エンジニアが覚えておきたい英単語 - AIコード読解時代の必須語彙
https://qiita.com/Sakai_path/items/b11badaa8daff2984f8d?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Python #C #初心者 #英語 #コードリーディング
Find the least common multiple of an array of numbers with #Python #QP
#!/usr/bin/python3
import sys
from math import gcd
def lcm_list(nums):
from functools import reduce
def lcm(a, b):
return a * b // gcd(a, b)
return reduce(lcm, nums)
nums = list(map(int, sys.argv[1:]))
print(lcm_list(nums))
