¿Quién creéis que tiene más experiencia vital, una persona que ha afrontado
muchas dificultades o una persona de la misma edad que haya tenido una vida
fácil? ¿Quién será más competente?
Nosotros tenemos el control, la agencia de tomar el camino difícil o el fácil,
pero lo más complicado es detectarlos y tener el valor, fuerza, convencimiento
de tomarlo, porque es bueno para nosotros. ¿Qué tipo de persona quieres ser?
¿Tomarás la píldora roja o la píldora azul?
I’m diving headfirst into using uv in my daily grind to be more efficient in
my pile of work. So, I’m throwing myself into all sorts of random scenarios.
On this journey, I’ve stumbled upon some [bugs][uv-bug] and nifty features like
a super-powered cache. But, hold up! The real point of this post is how an
innovation affects to the production process.
I’m sure you’ve found yourself needing to do quick calculations in the
terminal. Sure, you could use a calculator app or a fancy spotlight bar, but
sometimes the calculation is so simple that typing it directly would be easier.
Wouldn’t it be nice if you could just type math "200 ** 2 / 200" and get your
answer right away?
This is a revisited version of my previous post about Makefiles, but this time
I’m using uv (the shiny new Python package manager that’s faster than a
caffeinated cheetah! 🐆).
I was tired of typing the same commands over and over in my Python projects, so
I made this super cool Makefile using uv.
Hey there! Here’s a collection of GitHub Actions I’ve found handy for
automation. I’ll keep adding to this list as I discover more useful ones. Feel
free to grab what you need for your CI/CD workflows!
Let’s explore a few different ways to run commands in our terminal from
the comfort of neovim. Trust me, it’s cooler than it sounds! 😎
Here’s a list of commands that I use all the time (and you should too!).
# run a command:!sh <cmd>
# execute the line and replace with the output:.!sh
# execute without replacing:.w !sh
# execute without replacing selection and it will persist until next selection!:'<,'>w !sh
# execute a the line 8:8w !sh
# execute and replace a the line 8:8 !sh
# execute the selection in python:'<,'>w !python -c "$(cat)"# execute and replace the selection in python:'<,'>!python -c "$(cat)"
Hands-on
Hey! This is my absolute favorite command ever! I use it all the time when I’m
writing docs or README files because, let’s face it - who wants to manually
copy-paste code outputs? Not me! 😅 Instead of doing things the boring way, I
use this neat little trick to get things done quickly. Plus, it’s super handy
when you want to format text using other tools too like sql queries!
Let’s dive into the world of Docker Compose and environment variables, where
hilarity ensues and variables come alive (or do they?).
We’ve all been there. Playing hide and seek with environment variables in
Docker Compose. Let’s see how our dear friend MYVAR enjoys this grand game of
Peekaboo!