's Avatar

@marcorichetta

27
Followers
52
Following
32
Posts
19.11.2024
Joined
Posts Following

Latest posts by @marcorichetta

Preview
PyCamp España | Python, comunidad y naturaleza ¡Programar a tope en medio de la naturaleza rodeados de excelentes personas!

Del 30/4 al 3/5, en Sevilla, un encuentro armado por la comunidad para trabajar en proyectos reales (o no), compartir conocimiento y conectar con gente que disfruta de #Python.

Toda la info acá: pycamp.es/2026/

Alla nos vemos, miarma! 💃

19.02.2026 22:48 👍 0 🔁 1 💬 0 📌 0
Preview
PyCamp España | Python, comunidad y naturaleza ¡Programar a tope en medio de la naturaleza rodeados de excelentes personas!

<influencerHook>

¿Estás pensando aprender Python, aportar con lo que sabés o simplemente pasar unos buenos días programando en el medio de la naturaleza?

Entonces el PyCamp España es para vos.

Hay código, hay mate/café, y nadie te va a pedir slides 😎

</influencerHook>

19.02.2026 22:48 👍 1 🔁 2 💬 1 📌 0

The part of "everyone becomes a manager" in AI that I didn't really think about until now was the mental fatigue of context switching and keeping many tasks going at once, which of course is one of the hardest parts of being a manager and now you all get to enjoy it too

11.02.2026 01:30 👍 240 🔁 35 💬 9 📌 11
The calendar for the first three months of 2026, with today, Saturday, January 31, highlighted. February begins on Sunday and lasts for exactly four weeks, ending on Saturday.

The calendar for the first three months of 2026, with today, Saturday, January 31, highlighted. February begins on Sunday and lasts for exactly four weeks, ending on Saturday.

We have a perfect Rectangular February coming up, first time we’ve had one since 2015

Maybe this is what finally closes the loop and fixes the world

31.01.2026 23:28 👍 1328 🔁 393 💬 25 📌 56
Post image

Google Meet show how late people will be based on meeting history

12.01.2026 17:58 👍 641 🔁 100 💬 28 📌 136

"Varias investigaciones muestran que, cuando un grupo formado por personas con posturas similares discute sobre un tema de política, la actitud de cada persona se vuelve más extrema luego de la discusión." (Polarización de grupo)

Guadalupe Nogués - Pensar con otros

Martes, 10 de noviembre de 2020

11.01.2026 11:54 👍 0 🔁 0 💬 0 📌 0
Your intellectual fly is open | The Observation Deck

Your intellectual fly is open
bcantrill.dtrace.org/2025/12/05/y...

06.12.2025 03:36 👍 87 🔁 18 💬 7 📌 4
Python para Ciencia y Tecnología Libro sobre Python en la Ciencia

🎉 ¡Regalo de fin de año! 🐍

Para cerrar el 2025 @manux.bsky.social y yo les traemos la versión 1.0.1 del libro "Python para Ciencia y Tecnología", completo, en castellano… ¡y totalmente gratis! 😍📘

Y con algunas algunas correcciones menores :)

💾 PDF para descargar en 👉 libropython.science

30.12.2025 20:12 👍 9 🔁 6 💬 0 📌 1
Calculating Empires Calculating Empires is a large-scale research visualization exploring how technical and social structures co-evolved over five centuries. View the contemporary period in a longer trajectory of ideas, ...

calculatingempires.net

30.12.2025 15:08 👍 0 🔁 0 💬 0 📌 0
Preview
Volunteer Responsibility Amnesty Day Volunteer Responsibility Amnesty Day

Today is Volunteer Responsibility Amnesty Day

"Volunteer Responsibility Amnesty Day is about checking with yourself, and ending the commitments you need to end – maybe by taking a break, or by rotating it on to someone else, or by sunsetting a project."

volunteeramnestyday.net

21.12.2025 07:58 👍 7 🔁 4 💬 1 📌 0

#GuildOfEducators is launching global online meetups early next year!

Software development educators, share your insights! Submit your talk here: sessionize.com/guild-of-ed....

Join us for live sessions and discussions on Discord. Learn more: guildofeducators.org/.

16.12.2025 10:00 👍 3 🔁 1 💬 0 📌 0
Post image

Slack chat with deceased coworkers

21.11.2025 19:59 👍 111 🔁 6 💬 4 📌 4
Diagram showing the trick in action.

Code before simplification:

done = False
for n in range(1, len(switches) + 1):
    for group in combinations(switches, n):
        state = simplify(group)
        if state == target:
            print("found!")
            done = True
            break
    if done:
        break

Code after simplification:

def groups_of_switches(switches):
    for n in range(1, len(switches) + 1):
        for group in combinations(switches, n):
            yield group

for group in groups_of_switches(switches):
    state = simplify(group)
    if state == target:
        print("found!")
        break

Diagram showing the trick in action. Code before simplification: done = False for n in range(1, len(switches) + 1): for group in combinations(switches, n): state = simplify(group) if state == target: print("found!") done = True break if done: break Code after simplification: def groups_of_switches(switches): for n in range(1, len(switches) + 1): for group in combinations(switches, n): yield group for group in groups_of_switches(switches): state = simplify(group) if state == target: print("found!") break

It's so ANNOYING to break out of nested loops.

Auxiliary variables, conditional statements, non-linear paths through your code...

It's a mess!

But if you extract the looping logic to a generator, you get:

- less indentation ✨
- a flat loop you can easily break out of ✨

11.12.2025 13:51 👍 17 🔁 2 💬 1 📌 0

Your contributions to the community are enormous. Since EuroPython '25, I've seen you participating nonstop, almost omnipresent haha.

Without meaning to, you spoiled us by making us think "Cristian is always there".
I hope you can take a good break soon 😌

01.12.2025 22:16 👍 1 🔁 0 💬 1 📌 0
Exploring the CPython JIT — Diego Russo
Exploring the CPython JIT — Diego Russo YouTube video by EuroPython Conference

Now that @europython.eu talks are live, I want to plug some of the very cool things™ my friends presented:

- @diegor.it's talk on the JIT: www.youtube.com/watch?v=5si4...

- @maureira.dev's talk on what comes after Rust in the Python ecosystem: www.youtube.com/watch?v=yJPX...

(🧵 Cont'd below!)

05.11.2025 23:42 👍 16 🔁 8 💬 1 📌 0
Preview
pyladies/pyladiescon-portal PyLadiesCon Global Conference Web Portal. Contribute to pyladies/pyladiescon-portal development by creating an account on GitHub.

Pull requests wanted!

I've just opened a whole bunch of issues in the PyLadiesCon Portal repo and all of these are up for grabs.

Check it out if you know some Python, Django, and maybe a little of HTML or CSS.

github.com/pyladies/pyl...

#Python #Django #OpenSource

02.11.2025 03:29 👍 16 🔁 7 💬 0 📌 0

"Savings without a spending goal gives you options and flexibility, the ability to wait and the opportunity to pounce. It gives you time to think. It lets you change course on your own terms."

Morgan Housel - The Psychology of Money

24.10.2025 10:11 👍 0 🔁 0 💬 0 📌 0

Me encantó el abanico, miarma 🤩

21.10.2025 18:55 👍 0 🔁 0 💬 0 📌 0
Preview
DSPy - El nuevo ORM? LLegué a esta charla de Drew Breunig compartida por Simon Let the LLM Write the Prompts: An Intro to DSPy in Compound Al Pipelines Drew resume la filosofía de DSPy de la siguiente manera: Quote “There...

blog.marcorichetta.dev/Notes/DSPy--...

10.10.2025 13:09 👍 0 🔁 0 💬 0 📌 0
OpenAI's Nvidia, AMD Deals Boost $1 Trillion AI Boom With Circular De…

i for one can't wait to watch margot robbie in a bubble bath explaining to us how financially illiterate we were in 2025

archive.is/N9dtq

09.10.2025 10:54 👍 2 🔁 1 💬 0 📌 0
Post image

"It's the weirdest job market in my 15 years in tech" -- from a Big Tech recruiter. But why is the job market so weird?

Talking to 30+ hiring managers and recruiters, it doesn't seem like AI. It seems more like.. interest rates.

My longer analysis: newsletter.pragmaticengineer.com/p/state-of-t...

07.10.2025 15:59 👍 87 🔁 8 💬 3 📌 6
Video thumbnail
16.09.2025 14:40 👍 11081 🔁 4659 💬 90 📌 258

De a poco mi feed de bsky se va pareciendo al que tenía en twitter, donde puedo leer a la gente que me interesa 😌

17.09.2025 18:31 👍 0 🔁 0 💬 0 📌 0
Post image

iMessage see what they’re typing as they type

13.09.2025 04:20 👍 104 🔁 3 💬 4 📌 1
Post image Post image Post image Post image

📣 The “People from PSF” interview series continues! 🐍💬
Meet the people behind the @python.org staff, directors & contributors making the magic happen.

💟 Meet @maureira.dev

🔗Read the full interview 👇
bit.ly/PSF-Cristian...

#Python #PyLadies #PSF #PeopleFromPSF

09.09.2025 16:00 👍 7 🔁 7 💬 0 📌 0
Video thumbnail

v1.108 is rolling out today 🚚

Now live, at long last: Bookmarks, aka Saved Posts. For all those posts you'll definitely plan to come back to!

Update the app and give it a try. The button is right down there 👇

08.09.2025 18:24 👍 23896 🔁 6128 💬 1113 📌 2430
Preview
End of 10 Windows 10 ends in 2025. Don’t buy a new PC — revive yours with Linux. It's fast, secure, and help is available to get you started.

endof10.org

13.08.2025 06:52 👍 2 🔁 0 💬 0 📌 0
Paul Everitt - Python 1994
Paul Everitt - Python 1994 YouTube video by EuroPython Conference

Loved this piece of Python's digital memorabilia by @pauleveritt.org youtu.be/vyz7zdGiPVY?...

07.08.2025 16:55 👍 0 🔁 0 💬 1 📌 0

"If you don't know if something is good or right, how can you merge it to prod"

01.08.2025 14:59 👍 0 🔁 0 💬 0 📌 0
The Fundamentals
The Fundamentals YouTube video by HAProxy Technologies

youtu.be/Jlqzy02k6B8?...

01.08.2025 14:53 👍 0 🔁 0 💬 1 📌 0