phpc.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A server for PHP programmers & friends. Join us for discussions on the PHP programming language, frameworks, packages, tools, open source, tech, life, and more.

Administered by:

Server stats:

798
active users

#python

344 posts280 participants4 posts today

One of my favorite Python two liners is this:

with open(myfilename, 'r') as f:
lines = [stripped for line in f if (stripped := line.strip()) and not stripped.startswith('#')]

It's a bit nicer than the previous version I used pre walrus operator.

Day 4 of the 5-day Generative AI intensive course by Kaggle and Google covered, among other things, Search Grounding:

:blobcoffee: With this technique, you can enrich generative AI models with up-to-date and reliable information from the internet — in this case by connecting them to Google Search.

That means the model no longer relies solely on its training data but also integrates information retrieved from search results.

:blobcoffee: So what's the difference to RAG (Retrieval-Augmented Generation)?

There’s no need to build and manage your own retrieval system (like a vector database), since the additional data is fetched via an API from a search engine.

Here is the link to the corresponding Kaggle notebook: kaggle.com/code/markishere/day

www.kaggle.comDay 4 - Google Search groundingExplore and run machine learning code with Kaggle Notebooks | Using data from No attached data sources
#ai#GenerativeAI#ki

Ya está disponible en mi blog la primera entrega de mi serie de tutoriales de #Pyxel, donde enseñaré a programar un clon de Pong.

En esta primera entrega de introducción explico un poco que es Pyxel y programar el típico Hola mundo.

son-link.github.io/pyxel/2025/

Blog de Son Link · Tutorial Pyxel 01: IntroducciónEsta es la primera entrega de como desarrollar juegos con el motor para Python Pyxel