python

Back Open Paginator
15.01.2026 23:20
fugahogeds (@fugahogeds@mastodon.social)

更新されたよ、見に来てね!→ の父がついに 堕ち!? 常識が覆るカーネル開発の最前線 の堅牢化と「ヒーローの日」 2026年1月16日(金) youtube.com/watch?v=bYJrwlbQhjY




Show Original Post


15.01.2026 23:04
brianna (@brianna@gts.tassaron.com)

I copied Pac-Man drawing code from one component into another one to make Pac-Man sync with the sound. Working on a new video about how I made it.

I have two other videos recorded that I need to edit as well, but this will probably be the next one I upload. #Python





Show Original Post


15.01.2026 22:20
RodStephens (@RodStephens@hachyderm.io)

Implement a floating-point range function in Python
rodstephensbooks.com/frange.ht

#Python #Loops





Show Original Post


15.01.2026 21:52
djangonews (@djangonews@mastodon.social)

💼 [Jobs] Senior Django Developer

djangojobboard.com/608/senior-




Show Original Post


15.01.2026 21:12
towardsdatascience (@towardsdatascience@hachyderm.io)

Learn how to build a data-driven vision board to track daily habits and long-term goals. Sabrine Bendimerad shares this new complete guide using #Python, Streamlit, and Neon.

towardsdatascience.com/the-202




Show Original Post


15.01.2026 21:03
TechKeysX (@TechKeysX@mastodon.social)

S1 EP17 Lab 2 - Machine Learning in Python - del keyword Deletes Single - & Multiple List Items#machinelearningtutorial





Show Original Post


15.01.2026 20:52
Reuven (@Reuven@fosstodon.org)

How much oil does Venezuela export vs. Saudi Arabia?

Which country's exports are more highly correlated with oil prices?

And how much has oil consumption changed in Venezuela in the last 15 years?

We calculate it all, using #Python #Pandas, in the latest Bamboo Weekly!





Show Original Post


15.01.2026 20:45
dphilippus (@dphilippus@fediscience.org)

TempEst 2 is now available as a #Python package: pypi.org/project/TempEst2/

The Python package reimplements the basic functionality of the R reference implementation, but is generally more modular and flexible. It will eventually include standalone (non-Google-Earth-Engine) data retrieval, and an option optimized for very large-domain analyses.




Show Original Post


15.01.2026 20:21
treyhunner (@treyhunner@mastodon.social)

Python Tip #15 (of 365):

Don't forget about slicing!

To get all command-line args but the first, you COULD do this:
import sys
arguments = list(sys.argv)
arguments.pop(0)

But slicing is better for "get all but the first":
import sys
arguments = sys.argv[1:]

Slicing is commonly used to...

Get the first few:
first3 = items[:3]

Get the last few (note the negative):
last3 = items[-3:]

Exclude first or last:
all_but_first = items[1:]
all_but_last = items[:-1]

🧵(1/2)




Show Original Post


15.01.2026 20:02
hasanaligultekin (@hasanaligultekin@me.dm)

How to Estimate Volatility with EWMA (Risk Control) — Python Solution

A simple volatility estimate you can use for position sizing and risk limits.
EWMA reacts faster than a simple rolling window and captures volatility clustering with one clean update rule.

This post shows the method, Python code, and how to turn σ̂ into a practical risk control.

:medium: hasanaligultekin.medium.com/ho

#Python #Quant #Volatility #RiskManagement #Trading #investing

@programming @ai @pythonclcoding @chartrdaily





Show Original Post


15.01.2026 20:00
r (@r@fed.brid.gy)

Adding Aspire to a Python RAG Application devblogs.microsoft.com/aspire/addin... #aspire #python #ai #rag #azure #typescript

Adding Aspire to a Python RAG ...




Show Original Post


15.01.2026 20:00
r (@r@bsky.brid.gy)

Adding Aspire to a Python RAG Application devblogs.microsoft.com/aspire/addin... #aspire #python #ai #rag #azure #typescript

Adding Aspire to a Python RAG ...




Show Original Post


1 ...645 646 647 648 649 650 651 652 653 654 655 ...1584
UP