Joan Maria Talarn Espelta's Avatar

Joan Maria Talarn Espelta

@jmtalarn.com.bsky.social

Web developer jmtalarn.com

47 Followers  |  78 Following  |  63 Posts  |  Joined: 05.09.2023  |  2.5666

Latest posts by jmtalarn.com on Bluesky

① Sorting: Ordena datos eficientemente
② Dijkstra: Busca el camino más corto
③ Transformers: Entienden el lenguaje
④ Link Analysis: Clasifica páginas web
⑤ RSA: Cifra mensajes seguros
⑥ Factorization: Divide números en primos
⑦ CNN: Reconoce imágenes
⑧ Huffman: Comprime datos
⑨ SHA: Hashing de datos

13.11.2025 14:58 — 👍 5    🔁 1    💬 0    📌 0
Infografía titulada “9 Algorithms that Dominate Our World” con ilustraciones de los algoritmos más influyentes en la tecnología moderna. Muestra desde burbujas ordenando números hasta redes neuronales, cifrados RSA y transformadores tipo GPT. Una especie de dream team de algoritmos: los que hacen que Internet, la IA y hasta los mapas funcionen sin que nos demos cuenta.

Infografía titulada “9 Algorithms that Dominate Our World” con ilustraciones de los algoritmos más influyentes en la tecnología moderna. Muestra desde burbujas ordenando números hasta redes neuronales, cifrados RSA y transformadores tipo GPT. Una especie de dream team de algoritmos: los que hacen que Internet, la IA y hasta los mapas funcionen sin que nos demos cuenta.

Los 9 algoritmos que dominan el mundo.

13.11.2025 14:58 — 👍 26    🔁 5    💬 1    📌 0
06.11.2025 11:31 — 👍 46    🔁 9    💬 1    📌 1
Preview
a stuffed animal in a tuxedo drinking from a glass ALT: a stuffed animal in a tuxedo drinking from a glass

Ratafia para todos!

06.11.2025 15:47 — 👍 0    🔁 0    💬 0    📌 0
It's a scene from Texas Chainsaw massacre 2, where the father of the antagonist family won a prize with his special recipee.

It's a scene from Texas Chainsaw massacre 2, where the father of the antagonist family won a prize with his special recipee.

Buen chili hacian estos

05.11.2025 14:27 — 👍 1    🔁 0    💬 0    📌 0
20.10.2025 14:44 — 👍 140    🔁 20    💬 3    📌 2
Preview
GitHub - jmtalarn/school-timetable Contribute to jmtalarn/school-timetable development by creating an account on GitHub.

Here it is the source code

github.com/jmtalarn/sch...

Deployed on #netlify

#localfirst #lofi #WebDevelopment #PWA #react #typescript

03.10.2025 13:47 — 👍 4    🔁 0    💬 0    📌 0
School timetable

I've created this little app to manage school timetables and share them to others so they can import and edit it on their own device.

🚸Multiple kids
📶App works offline once installed #lofi
🔊CA/ES/EN languages

horari-pwa.netlify.app

03.10.2025 13:47 — 👍 1    🔁 0    💬 1    📌 0
School timetable

He fet aquesta petita aplicació #PWA per crear i consultar horaris escolars i poder compartir-los.

Un cop importats es poden editar, les dades es guarden al teu dispositiu.
L'aplicació treballa offline. Un cop instal·lada no necessita connexió.

horari-pwa.netlify.app

03.10.2025 13:47 — 👍 0    🔁 0    💬 1    📌 0
Post image

This only happens to you once

26.09.2025 19:39 — 👍 21749    🔁 4250    💬 350    📌 181

Ets accionista del Sabadell?

19.09.2025 09:09 — 👍 0    🔁 0    💬 1    📌 0
Post image

Sus movimientos son exactamente los mismos que los de las piezas de derechas.

Lee la noticia completa en la web: www.elmundotoday.com/2025/09/el-a...

03.09.2025 14:09 — 👍 542    🔁 197    💬 11    📌 8
Preview
a man stands in front of a car that says dmc Alt: a man stands in front of a car that says dmc, the delorean from Back to the future

Toma, necesitarás uno de estos para volver

20.08.2025 16:36 — 👍 1    🔁 0    💬 0    📌 0
Video thumbnail

356. DILO, REINA.

03.08.2025 21:35 — 👍 760    🔁 476    💬 2    📌 13

Si te se cae el niño no te va a caer la leche ...

04.08.2025 06:21 — 👍 0    🔁 0    💬 0    📌 0

¿Queréis llegar a un elemento cuando se clica con React?

medium.com/@taraparakj7...

09.07.2025 17:07 — 👍 4    🔁 3    💬 0    📌 0

entreu la roba

07.07.2025 15:02 — 👍 0    🔁 0    💬 1    📌 0
It's an image of an http status 500 error due a java.lang.nullpointerexception

It's an image of an http status 500 error due a java.lang.nullpointerexception

El regalo

03.07.2025 12:11 — 👍 0    🔁 0    💬 0    📌 0
01.07.2025 21:20 — 👍 299    🔁 100    💬 5    📌 0

Trezeguet 2.0

30.06.2025 14:55 — 👍 0    🔁 0    💬 0    📌 0
Video thumbnail

Here's a little overview of my app PocketCal, if you haven't tried it yet!

pocketcal.com

24.06.2025 21:26 — 👍 433    🔁 80    💬 21    📌 13
Mejora los imports de tu código.

// ❌ No uses rutas relativas en los imports
import { Button } from '../../../../components/Button'
import { Icon } from '../../../../components/Icon'
import { URL } from '../../../constants/config'

// ✅ Usa rutas absolutas
import { Button } from '@/components/Button'
import { Icon } from '@/components/Icon'
import { URL } from '@/constants/config'


// Configuración de ejemplo para tu tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

Mejora los imports de tu código. // ❌ No uses rutas relativas en los imports import { Button } from '../../../../components/Button' import { Icon } from '../../../../components/Icon' import { URL } from '../../../constants/config' // ✅ Usa rutas absolutas import { Button } from '@/components/Button' import { Icon } from '@/components/Icon' import { URL } from '@/constants/config' // Configuración de ejemplo para tu tsconfig.json { "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["./src/*"] } } }

¡Evita usar imports relativos y complejos en tu código!
Son difíciles de mantener y de leer.

Usa mejor un alias con rutas absolutas.
Funciona en proyectos de JavaScript y TypeScript ↓

26.06.2025 18:33 — 👍 10    🔁 2    💬 0    📌 0

For a while I thought it was an advice

26.06.2025 13:51 — 👍 1    🔁 0    💬 0    📌 0

Dir "He fet [tal cosa] amb el ChatGPT" és com dir "Hem guanyat la Champions!" quan mires lo futbol per la tele.

26.06.2025 08:04 — 👍 2    🔁 1    💬 1    📌 0
Post image

Wow, revolucionari. Posem-li nom a aquests curiós procés, què tal... PENSAR?

24.06.2025 20:26 — 👍 40    🔁 4    💬 4    📌 0

¿No os molestan las pelucas con los cascos?

23.06.2025 14:31 — 👍 0    🔁 0    💬 0    📌 0
Post image

«Vamos a dejar que Trump haga con su país lo que no conseguiríamos hacerle nosotros con todo el arsenal que la tecnología ofrece hoy en día».

Puedes leer el artículo completo aquí: www.elmundotoday.com/2025/06/iran...

23.06.2025 14:09 — 👍 398    🔁 129    💬 9    📌 4

Lugar de la performance?

23.06.2025 14:24 — 👍 0    🔁 0    💬 0    📌 0
Bill Mitchell @askbillmitchell.bsky.social • 20h

Signal will some sort of LLM integration in it soon.

Meredith Whittaker @meredithmeredith.b...• 11h

No ❤️

Bill Mitchell @askbillmitchell.bsky.social • 6h

They will, likely be timing up with Anthropic's Claude or Perplexity, but its coming. The engineers have already began laying out the ground work for such support.

Meredith Whittaker @meredithmeredith.bs... •5h

 ...he says to Signal's president

Bill Mitchell @askbillmitchell.bsky.social • 20h Signal will some sort of LLM integration in it soon. Meredith Whittaker @meredithmeredith.b...• 11h No ❤️ Bill Mitchell @askbillmitchell.bsky.social • 6h They will, likely be timing up with Anthropic's Claude or Perplexity, but its coming. The engineers have already began laying out the ground work for such support. Meredith Whittaker @meredithmeredith.bs... •5h ...he says to Signal's president

version with alt text for accessibility

17.06.2025 22:49 — 👍 657    🔁 146    💬 15    📌 12
Preview
a bald man in a black suit and tie is standing with his hands in his pockets . Alt: a bald man called Jason Statham in a black suit and tie is standing with his hands in his pockets .
13.06.2025 09:19 — 👍 2    🔁 0    💬 1    📌 0

@jmtalarn.com is following 20 prominent accounts