open.substack.com/pub/tacosded...
open.substack.com/pub/tacosded...
It's by the folks at Every and it's incredible. You can use a local model if you want and
It's by the folks at Every and it's incredible. You can use a local model if you want and
Amanda Makulec propone que el data storytelling no está muriendo, solo está madurando.
💡 5 ideas clave + mini-caso visual
open.substack.com/pub/tacosded...
#dataviz #datajournalism #storytelling #tacosdedatos
Amanda Makulec propone que el data storytelling no está muriendo, solo está madurando.
💡 5 ideas clave + mini-caso visual
open.substack.com/pub/tacosded...
#dataviz #datajournalism #storytelling #tacosdedatos
Menos multi-verso, más foco digo más concentración
Regresa #tacosdedatos con tips prácticos de datos cada 2 semanas.
Arrancamos con:
Busca lo más vital, no más open.substack.com/pub/tacosded...
Menos multi-verso, más foco digo más concentración
Regresa #tacosdedatos con tips prácticos de datos cada 2 semanas.
Arrancamos con:
Busca lo más vital, no más open.substack.com/pub/tacosded...
nos coma el diablo amor
nos coma el diablo amor
1. Install uv
2. Init project with `uv init --app --package mycli`
3. Write code
4. Install with `uv tool install . -e`
5. Use `mycli` anywhere in your computer
1. Install uv
2. Init project with `uv init --app --package mycli`
3. Write code
4. Install with `uv tool install . -e`
5. Use `mycli` anywhere in your computer
If you're looking for a non-fash alternative, Ghost is a non-profit and even has a cool horror sounding name! And its not run by right wing dipshits!
If you're looking for a non-fash alternative, Ghost is a non-profit and even has a cool horror sounding name! And its not run by right wing dipshits!
youtu.be/Jre3hFs0yFQ
Este año planeo escribir más código y hacer más contenido, así que tendré este espacio para charlar de cosas que me interesen.
Dense una vuelta para ver el primer vídeo sobre qué realmente pasó con la IA para programación.
youtu.be/Jre3hFs0yFQ
Este año planeo escribir más código y hacer más contenido, así que tendré este espacio para charlar de cosas que me interesen.
Dense una vuelta para ver el primer vídeo sobre qué realmente pasó con la IA para programación.
anyways
anyways
all i want is to give the author some money for their work and be able to read the book however i want.
all i want is to give the author some money for their work and be able to read the book however i want.
1. You understand and can evaluate the message
2. The scoped code change is small
3. Your model is fast enough
Still playing around but this script+ prompt works fairly well out of the box:
gist.github.com/veekaybee/db...
1. You understand and can evaluate the message
2. The scoped code change is small
3. Your model is fast enough
Still playing around but this script+ prompt works fairly well out of the box:
gist.github.com/veekaybee/db...
Ahora TODA la documentación de FastAPI está traducida al español. 🎉
Ya no son 22 páginas, sino todas las 109, traducidas. 🤓
fastapi.tiangolo.com/es/
Ahora TODA la documentación de FastAPI está traducida al español. 🎉
Ya no son 22 páginas, sino todas las 109, traducidas. 🤓
fastapi.tiangolo.com/es/
youtu.be/omX7uo6lnZs
youtu.be/omX7uo6lnZs
>>> with open('cc1.csv', 'r') as f:
... sniffer = csv.Sniffer()
... sniffer.has_header(f.read(2048))
...
False
>>> with open('cc2.csv', 'r') as f:
... sniffer = csv.Sniffer()
... sniffer.has_header(f.read(2048))
...
True
#python
>>> with open('cc1.csv', 'r') as f:
... sniffer = csv.Sniffer()
... sniffer.has_header(f.read(2048))
...
False
>>> with open('cc2.csv', 'r') as f:
... sniffer = csv.Sniffer()
... sniffer.has_header(f.read(2048))
...
True
#python