python

Back Open Paginator
15.09.2025 23:03
ehmatthes (@ehmatthes@fosstodon.org)

The 1.2.1 release of django-simple-deploy allows plugins to extend the core CLI.

For example, the dsd-flyio plugin now supports a `--vm-size` option.

This is what was needed to make plugins much more powerful than simply "give me the smallest possible working deployment".

#Python #Django





Show Original Post


15.09.2025 22:45
treyhunner (@treyhunner@mastodon.social)

This works because functions are just objects in Python and like every object we can point variables to them and pass them around.

Read more 👉 trey.io/4u4pj0




Show Original Post


15.09.2025 22:10
rhettallain (@rhettallain@mastodon.social)

New video - analysis of a collision between a and a missile to estimate the UAP mass. code included (for visualization).

youtu.be/wFscSDiLjJk




Show Original Post


15.09.2025 22:06
huseyinozbekar (@huseyinozbekar@mastodon.social)

Veri Bilimi ve Yazılımın Kesişim Noktaları

, , , , , , , , ,

huseyinozbekar.com/veri-bilimi




Show Original Post


15.09.2025 22:02
huseyinozbekar (@huseyinozbekar@mastodon.social)

Python ile Yapılabilecek En İyi Projeler
, , , , , , , , ,

huseyinozbekar.com/python-ile-




Show Original Post


15.09.2025 22:01
pybay (@pybay@fosstodon.org)

🐍PyBay 2025 Speaker Highlight🎤 Mason Egger “Events are the Wrong Abstraction”

Event-Driven Architecture can create complexity and scattered logic. Learn how Durable Execution shifts the focus, centralizes business logic, and builds reliable, scalable systems while keeping event-driven benefits.

📍 Oct. 18, 2025, San Francisco, CA: pybay.org/
🎟️ Tickets: pretix.eu/bapya/pybay-2025/
🎤 More talks: pybay.org/speaking/talk-list-2

#PyBay #Python #PyBay2025





Show Original Post


15.09.2025 21:57
huseyinozbekar (@huseyinozbekar@mastodon.social)

2025’in En Popüler Yazılım Dilleri
, , , , , , , , ,

huseyinozbekar.com/2025in-en-p




Show Original Post


15.09.2025 21:42
linuxgal (@linuxgal@techhub.social)

Calculus fun with #Python #6A

#!/usr/bin/python3
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-4, 4, 400)
f = np.arctan(x**2)
df = 2*x / (x**4 + 1)
plt.plot(x, f, 'b', label='f(x) = arctan(x²)')
plt.plot(x, df, 'r', label="f'(x) = 2x/(x⁴+1)")
plt.axhline(0, color='black', linewidth=0.5)
plt.axvline(0, color='black', linewidth=0.5)
plt.ylim(-2, 2)
plt.legend()
plt.xlabel('x')
plt.ylabel('y')
plt.title('f(x) and f\'(x)')
plt.grid(True, linestyle=':', alpha=0.7)
plt.show()





Show Original Post


15.09.2025 21:34
natera (@natera@hachyderm.io)

On today’s newsletter issue: I’m mixing photography with code to uncover the hidden rhythms inside my images.
#Photography + #Python = 💜

Read it here: luisnatera.photo/005-pixels-pa





Show Original Post


15.09.2025 21:32
r (@r@bsky.brid.gy)

Just released: Version 10.6.23 of passagemath, the pip-installable modularized #SageMath fork, a general-purpose #Mathematics system in #Python. github.com/passagemath/... #FOSS #MathSky #cddlib #GAPSystem #circuits #cryptography

Release passagemath-10.6.23 · ...




Show Original Post


15.09.2025 21:20
GripNews (@GripNews@mastodon.social)

🌗 Semlib:利用大型語言模型建構語意化資料處理與分析管線
➤ 以自然語言描述驅動的智慧型資料分析管線建構框架
github.com/anishathalye/semlib
Semlib 是一個 Python 函式庫,旨在讓開發者能夠利用大型語言模型(LLM)的能力,來建構強大的資料處理與分析管線。它提供了一系列熟悉的函式式程式設計原語,如 map、reduce、sort 和 filter,但獨特之處在於,這些操作的實作是透過自然語言描述來完成,而非傳統的程式碼。Semlib 底層自動處理提示工程、輸出解析、並行控制、快取和成本追蹤等複雜性,使開發者能專注於高質量的資料分析任務。
+ 這聽起來很有趣!用自然語言來描述資料處理步驟,簡直是為 LLM 量身打造的應用。希望它能真正簡化複雜的數據分析流程。
+ 將 LLM 的能力與函式式程式設計結合,解決了單次提示的侷限性。好奇它在實際處理大量數據時的效能和成本如何?




Show Original Post


15.09.2025 20:28
podryban (@podryban@wspanialy.eu)

Mam ciągły niedobór czasu wolnego. Mając więc wieczór dla siebie, zamiast pograć, poczytać, czy malować figurkę, spędziłem kilka godzin – bez znajomości kodowania przydatnej w tym przypadku – na przygotowanie skryptu / aplikacji, który będzie mi co 10 sekund robił zrzuty ekranu w trakcie grania.

Czy mogłem znaleźć gotowe rozwiązanie? Oczywiście. Czy mogłem poprosić o pomoc kogoś, kto się na tym zna? Naturalnie. Zamiast tego męczyłem się sam, próbując dojść do ładu z tym cholerstwem.

Ale się udało. Na pewno kod jest do bani, można było to zrobić lepiej i prościej. Ale jest. Zrobiłem. Ja sam!

#linux #python




Show Original Post


1 ...1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 ...1551
UP