I wrote on post on why you should start using polars in 2025 based on personal experiences
https://lrt.one/posts/use-polars-in-2025/
Discussions: https://discu.eu/q/https://lrt.one/posts/use-polars-in-2025/
Setting up the #raspberrypi w a BMP180 sensor to track barometric pressure was easier than I expected, even with a bit of soldering required.
This is a self note about the #python code that does all the heavy lifting while my little DIY weather station quietly logs atmospheric data every hour.
Got set up to go to @NorthBayPython conference in a few weeks.
Fun little surprise for me: my employer (Sonic.net) is a Silver level sponsor this year.
A Simple Path to Python Success http://leanpub.com/set/leanpub/asimplepathtopythonsuccess is the featured Track of online courses on the Leanpub homepage! https://leanpub.com #ComputerProgramming #Devops #python
Need to add some padding characters to a string in #Python?
You can use string methods or f-strings. Here are a few examples:
Show HN: Slipstream – A Python library for stateful stream processing
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.
3 de Abril, às 20h25 Desvendando o Python: Da Simplicidade ao Poder ConFLOSS na Veia - #2509 | SouDevCon 25! UMA CONFERÊNCIA FLOSS
Link direto - https://www.youtube.com/watch?v=OGnTDNjRCKc
Telegram Post Downloader
#Python tool to download posts from multiple telegram feeds (you can set a range of publish dates) and analyse them using LLM.
https://github.com/Ironship/TelegramOSINTPolo
Creator x.com/AryoSomeGumul
Do not use important tg accounts to obtain API keys (risk of blocking)
Diving into #Vermont wildlife for the #30DayChartChallenge "circle" day! Using #Python & #plotly to compare monthly #Moose and #BlackBear sightings
Data wrangled with #BigQuery and #SQL. Any guesses which animal is seen more consistently throughout the year?
#DataViz #Wildlife #RadialChart
Day 4 of the 5-day Generative AI intensive course by Kaggle and Google covered, among other things, Search Grounding:
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.
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: https://www.kaggle.com/code/markishere/day-4-google-search-grounding
Real-Time Speech-to-Speech Chatbot: Whisper, Llama 3.1, Kokoro, and Silero VAD
https://github.com/tarun7r/Vocal-Agent
Discussions: https://discu.eu/q/https://github.com/tarun7r/Vocal-Agent
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.
https://son-link.github.io/pyxel/2025/03/04/tutorial-pyxel-01-introduccion.html
MongoDB is hiring Software Engineer 3, Data Platforms
#golang #javascript #python #typescript #react #api #aws #azure #gcp #kubernetes #mongodb #terraform
New York City, New York
Full-time
MongoDB
Job details https://jobsfordevelopers.com/jobs/software-engineer-3-data-platforms-at-mongodb-com-jan-28-2025-1d08b0?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
#dask is strange. Sometimes using the dask counterpart to numpy functions or arrays makes computations slower. Sometimes not. Also, lots of variability in runtime. #python #dataengineering
Quite often, Python provides multiple ways for performing the same task. Does it matter which one you choose? It might do!
Since the #torpedobat depends on the interaction between a ball and stick - I thought it would be fun to model the #physics collision in #python.