Skip to Content Skip to Navigation
Profile image for Python Podcast

Python Podcast

@show@python-podcast.de
Ein deutschsprachiger Podcast rund um die Programmiersprache Python.
41 Posts Posts & Replies 39 Following 41 Followers Search
Pinned post

🎧 Django-Fans aufgepasst!

Fühlt euch wie vor Ort bei der Europe mit unserer neuen Live-Episode aus Dublin. Talks, Community & Open-Source-Diskussionen mit Django Fellow @sarahboyce und natürlich @shezi:, @oryon_dominik und @jochen:

python-podcast.de/show/live-vo

Python Podcast boosted

Sweet, libuv merged their first part of io_ring support! And it’s the file I/O part no less!

This is kinda the most interesting part too, because true async file I/O wasn’t practical with existing Linux APIs (threads were usually used as a crutch)!

🎉🎉🎉

github.com/libuv/libuv/pull/39

Python Podcast boosted

@marcoarment I know, changing workflows is a hassle, but @ultraschall Ultraschall.fm has specifically been designed for podcasting in high-quality, including chapter marks and images with everything drag-and-drop in the timeline.
So if you’re finally fed up with jumping through hoops in Logic you might want to give it a try.

→ Don’t get led astray by the German website.

→ Documentation in English: ultraschall.github.io/ultrasch

Also, the software is in English.

Edited 2y ago
Python Podcast boosted

This tutorial by Martin Heinz on the per-interpreter GIL feature that's coming in 3.12 is excellent

It's not an easy feature to preview (you have to compile your own Python first) but the steps here were enough for me to get it running martinheinz.dev/blog/97

Edited 2y ago
Python Podcast boosted

Neue Episode: @miaplan
(Martin), Dominik und @jochen unterhalten sich über GUI-Applikation
en am Beispiel von MiaPlan python-podcast.de/show/gui-app

Python Podcast boosted

LET'S
FUCKING
GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

apps.apple.com/us/app/pythonis

Python Podcast boosted

Der Hattrick ist geschafft! Unsere Mini-Serie zu ist jetzt. mit drei Folgen vollständig. Im dritten Teil haben @thsch und @monoxyd Prof. Philipp Hacker zu Gast, der zu KI-Recht lehrt und berät.

Er erklärt was die EU mit dem Gesetz „AI Act“ vor hat - und warum das ganze zwar eine gute Idee aber dann doch irgendwie nicht so ganz durchdacht ist. Viel Spaß beim Hören!

rechtsbelehrung.com/116-ai-act

Python Podcast boosted

Django reached 70k stars 🤩 on GitHub 📢

⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ⭐

Python Podcast boosted
Python Podcast boosted

FS264 Die Große Elchwanderung freakshow.fm/fs264-die-grosse-

The Freak Show Returns!

Python Podcast boosted

Measuring the overhead of multiprocessing v.s. the new PEP684 subinterpreter. Starting 100 sub interpreters (each with its own GIL and therefore able to run truly in parallel) is 5.6x faster.

Python Podcast boosted

Reduce - The Power of a Single Python Function

martinheinz.dev/blog/93

Python Podcast boosted

I wrote ✏️ 🎉 an article about Running Tasks Concurrently in Django Asynchronous Views Emoji django Buckle-up for our async-journey together! 🚗

fly.io/blog/running-tasks-conc

Edited 2y ago
Python Podcast boosted

Für alle, die meinen ich würde zu wenig - schaltet doch mal heute Abend 20:00 hier ein:

freakshow.fm/freak-show-season

Python Podcast boosted

Yesterday I presented at the "Modern Frontend" Meetup in Microsoft Berlin about , and what means for developers, showing off a lot of features. Here's my edited recording.
www.youtube.com/watch?v=Ou8S9o
Blog: christianheilmann.com/2023/03/

Python Podcast boosted

NEW POST: Recently I had an enlightening chat with Xu Hao (our Head of Technology in China) about the techniques he's using to prompt ChatGPT to generate useful code

martinfowler.com/articles/2023

Edited 2y ago
Python Podcast boosted

@marcthiele übers podcasten, kann aber genauso aufs bloggen umgelegt werden.

“Letzten Endes muss man sich einfach, also ich zumindest mich davon freimachen, auf die Zahlen zu gucken. Ich hab bei mir auf den Webseiten auch keine Analytics-Tools mehr laufen, gar nichts, weil's einfach nur ablenkt. Mach den Scheiß einfach für dich. Wenn du's für dich machst und es gerne machst, dann passt schon.”

workingdraft.de/564/

Python Podcast boosted
Python Podcast boosted

I agree very much with @simon 's message here: "These are incredibly powerful tools. They are far harder to use effectively than they first appear. Invest the effort, but approach with caution: we accidentally invented computers that can lie to us and we can’t figure out how to make them stop."

simonwillison.net/2023/Apr/7/c

Python Podcast boosted

Fun GPT-4 use-case: comparing how different languages/frameworks solve common problems

My prompt:

> Show me code examples of different web frameworks in Python and JavaScript and Go illustrating how HTTP routing works - in particular the problem of mapping an incoming HTTP request to some code based on both the URL path and the HTTP verbDon't show installation instructions, just get straight to the code snippets. Don't show installation instructions, just get straight to the code snippets

Neue Episode: @mnl, @shezi, Dominik und @jochen unterhalten sich über Große Sprachmodelle - GPT-4, LLaMA & Co 🎙️: python-podcast.de/show/grosse-

Python Podcast boosted

Some nice progress on PyPy's 3.10 branch: I just merged my implementation of PEP 626 (precise line numbers for debugging and other tools) and our backport (from CPy 3.11) of PEP 657 (Fine-grained error locations in tracebacks). The latter was implemented by Batuhan Taskaya and me.

Python Podcast boosted

Recently at work I got the chance to use a couple of features I'd never used before: positional-only arguments, and keyword-only arguments.

If you've never seen this before, the general form is:

def my_function(a, b, /, c, d, *, e, f)

Where a and b *must* be passed as positional (not keyword) arguments, e and f must be passed as keyword (not positional), and c and d can be passed either way.

Still not sure how I feel about them being first-class language features, but they did solve a kind of weird niche problem I was having and that would have needed more code to solve in other ways.

Python Podcast boosted

I wrote about how AI-enhanced development makes me more ambitious with my projects simonwillison.net/2023/Mar/27/

Python Podcast boosted

TIL from @adamchainz that when doing type annotations in , `object` is preferable to `Any`, since the latter basically tells `mypy` to opt out of type checking.

adamj.eu/tech/2021/05/07/pytho