python

Back Open Paginator
19.01.2026 22:33
pytexas (@pytexas@fosstodon.org)

1 tutorial masters #Python foundations.
1 prepares you for the #AI future.

2 expert-led hands-on tutorials designed to help you ship better code today (and beyond 🚀) at the 20th anniversary #PyTexasConference2026 🐍

Get your early bird ticket before 11:59p CST tonight before prices go up 🚨
pytexas.org/2026





Show Original Post


19.01.2026 21:46
driscollis (@driscollis@mastodon.social)

Learn how to create an amazing TUI application with and textual today





Show Original Post


19.01.2026 21:41
stephenblum (@stephenblum@mastodon.social)

Dunder methods like __str__ and __init__ make classes feel native.





Show Original Post


19.01.2026 21:40
stephenblum (@stephenblum@mastodon.social)

Practice coding in your head while walking; the syntax will stick.





Show Original Post


19.01.2026 21:39
stephenblum (@stephenblum@mastodon.social)

Python + compiled libs deliver GPU speed with simple code.





Show Original Post


19.01.2026 21:35
borutzki (@borutzki@mastodon.social)

What if I told you that the following way of taking the second object from a Django `QuerySet` might be unreliable and can lead to non-deterministic failures under some circumstances?

And if you think it's a bad idea whatsoever - can you explain why?

Take a look on my recent blog post for more details: borutzki.github.io/2026/01/19/





Show Original Post


19.01.2026 21:34
stephenblum (@stephenblum@mastodon.social)

Use Rust with Python to speed up slow code fast.





Show Original Post


19.01.2026 21:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

PayU is hiring Software Engineer

🔧 #java #python #aws #mvc #mysql #sql
🌎 Bangalore, India; Gurgaon, India
⏰ Full-time
🏢 PayU

Job details jobsfordevelopers.com/jobs/sof
#jobalert #jobsearch #hiring




Show Original Post


19.01.2026 20:30
ology (@ology@musician.social)

It's one of those "drive your eurorack with #python and #perl code" kind of days. :)




Show Original Post


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

Python Tip #19 (of 365):

Prefer "for" loops over "while" loops.

Whenever you find yourself using a "while" loop, ask "is there any way to use a "for" loop here instead?"

Instead of this:

n = 1
while n < 10:
print(n)
n += 1

Prefer this:

for n in range(1, 10):
print(n)

And instead of this:

i = 0
while i < len(colors):
print(f"I like the color {colors[i]}")
i += 1

Prefer this:

for color in colors:
print(f"I like the color {color}")

🧵(1/2)




Show Original Post


19.01.2026 19:30
Reuven (@Reuven@fosstodon.org)

Had enough #Python classes and exercises? It's time to dirty your hands, creating a personal project!

Join HOPPy (Hands-On Projects in Python), where you create a data dashboard using Marimo under my mentorship.

Questions? Join my Jan 26 info session: us02web.zoom.us/webinar/regist





Show Original Post


19.01.2026 19:29
kevinthomas (@kevinthomas@defcon.social)

I created a FREE #Python tutorial from scratch all the way to neural network and #GPT development to help everyone struggling with the basic skills needed in 2026. github.com/mytechnotalent/pyth




Show Original Post


1 ...624 625 626 627 628 629 630 631 632 633 634 ...1585
UP