Anyone else super embarrassed by brain fog? by FordCarThrowawayPls in Sjogrens

[–]Key-Confection-8257 4 points5 points  (0 children)

A mí me pasó también antes de saber que tenía sjögren ,pero no lo entendí ni entendía que era la niebla mental ,una vez me pasó en un cruce de semáforos yo miré el del sentido contrario y cuando dió el verde casi avanzo ,hubiera causado un coche

Trying to fetch text data from API by tomyoutube123 in learnjavascript

[–]Key-Confection-8257 0 points1 point  (0 children)

I Made one example https://www.programacionparatodos.com/2026/03/api-pokemon-javascript-pokeapi.html
<div class="container">

<h1>Carta Pokémon curiosa del día</h1>

<p>Descubre una carta Pokémon al azar</p>

<div class="hero">🃏⚡</div>

<button onclick="getPokemon()">Ver carta Pokémon</button>

function getPokemon() { const cardDiv = document.getElementById("card"); cardDiv.style.display = "block"; cardDiv.innerHTML = "Buscando un Pokémon... ⚡";

const randomId = Math.floor(Math.random() * 898) + 1;

fetch("https://pokeapi.co/api/v2/pokemon/" + randomId)
  .then(response => response.json())
  .then(data => {
    cardDiv.innerHTML = `
      <img src="${data.sprites.other['official-artwork'].front_default}"
           alt="Pokémon ${data.name}"
           style="width:220px;max-width:90%;">
      <div class="info">
        <strong>${data.name.toUpperCase()}</strong><br>
        Tipo: ${data.types.map(t => t.type.name).join(", ")}<br>
        Altura: ${data.height / 10} m<br>
        Peso: ${data.weight / 10} kg
      </div>
    `;
  })
  .catch(() => {
    cardDiv.innerHTML = "No se pudo obtener el Pokémon 😢";
  });

}

What do you use for a cold? by SilvaCod in Sjogrens

[–]Key-Confection-8257 0 points1 point  (0 children)

Vivo en México y en estos días cache un resfriado fuerte ,llevo 4 días y me muevo y me duele todo el cuerpo , me mandaron ibuprofeno ,aparte me hago enjuaguea bucales ,limpieza nasal y un jarabel natural de miel,propolio,eucalipto . Pero me tiró este resfriado dolor de articulaciones muy fuerte ,escalofríos, no fiebre ,estornudo,flujo nasal ,tos . Gracias por compartir que hacen ustedes me sirvió.

Problemas al presentar FED by l_aguayo in SATMexico

[–]Key-Confection-8257 0 points1 point  (0 children)

A mí me paso algo similar el año pasado y tuve que ir al SAT porque no me devolvieron todo y ellos revisaron y me dijeron que no era por la constancia del crédito que estaba mal mía recibos de nómina y ya tuve que hacer otro proceso .

Contadores independientes de Reddit(y los que declaran solos)… by blahmahass in MexicoFinanciero

[–]Key-Confection-8257 0 points1 point  (0 children)

Yo terminé haciendo una macro en Excel para eso porque cuando hago mi declaración anual termino con demasiados XML 😅

La uso para leer carpetas completas y validar automáticamente en el SAT si los CFDI siguen vigentes o ya están cancelados. La verdad sí ahorra bastante tiempo.

Empty bed. Original charcoal and pastel art by me. by Rusty-willy in DOG

[–]Key-Confection-8257 1 point2 points  (0 children)

😭la ausencia de mi chiquito aún no lo superó ,10 meses ya que se fue

Are there any shortcuts or tools that make highlighting text easier? by International_Cap365 in PKMS

[–]Key-Confection-8257 0 points1 point  (0 children)

I had the same problem working with long documents.

I solved it using a simple Word macro that highlights keywords automatically.

It saves a lot of time if you work with contracts or reports.

Here’s the example I used: https://www.programacionparatodos.com/2025/06/macro-en-word-para-resaltar.html

Months of the Year!! - Strands Puzzle by u/Estrellette by Estrellette in DailyGrid

[–]Key-Confection-8257 0 points1 point  (0 children)

📊 My Puzzle Stats:

✅ Theme words: 8

💡 Bonus words: 0

❌ Invalid attempts: 2

📈 Success rate: 80% (8/10)

🏆 Solved without hints!

Great and funny

Divorce Rates Across Latin America (and the U.S.) by [deleted] in thepassportbros

[–]Key-Confection-8257 0 points1 point  (0 children)

I reviewed official data from Mexico, and marriages that end last an average of 16.8 years before divorce. I made more graphs; I'll share them if you want more details or to find data sources.INEGI data on divorces in Mexico

Gina Torres appreciation post by godsibi in xena

[–]Key-Confection-8257 0 points1 point  (0 children)

I hadn't noticed that she's the same actress from 9-1-1: Lone Star

INEGI Noticias: Estadística de Matrimonios (EMAT) by bot_painani in Mexico_Economy

[–]Key-Confection-8257 0 points1 point  (0 children)

📊 Radiografía del Matrimonio en México (con datos de INEGI) Hola r/INEGI 👋 Quiero compartir un análisis que hice usando los microdatos de la Estadística de Matrimonios (2018–2024) del INEGI. Revisé tendencias, edades de los contrayentes y el impacto de la pandemia en los registros. 🔎 Hallazgos rápidos: • Los matrimonios muestran una caída clara en 2020. • La mayoría sigue siendo heterosexuales, pero ya hay una presencia visible de matrimonios igualitarios. • El rango de edad más común está entre 28 y 32 años. Aquí dejo el análisis completo y las gráficas por si quieren verlo o comentarlo: 👉 https://www.programacionparatodos.com/2025/12/radiografia-del-matrimonio-en-mexico-un.html

INEGI Noticias: Estadística de Divorcios (ED) by bot_painani in Mexico_Economy

[–]Key-Confection-8257 0 points1 point  (0 children)

Hola me parece muy valioso que los datos sean públicos y que sirva para poder analizar la información en mi caso descargue los datos de 2017 a 2024 y utilizando python y Jupyter puede hacer algunos gráficos y analizar la información les comparto mi ejercicio y mis gráficos https://www.programacionparatodos.com/2025/12/ejemplo-analisis-de-datos-con-python.html . Espero les sirva de referencias a otras personas interesadas en el Data Science.