From 0700bf795bf66bc853798c1165540a073aab1fe9 Mon Sep 17 00:00:00 2001 From: pixelead0 <info@pixelead0.com> Date: Tue, 24 Jun 2025 02:18:45 -0600 Subject: [PATCH 1/2] Meetup 202507 --- docs/meetups/2025/202507-julio.md | 16 ++++++++-------- metadata_json/meetup-202507.json | 28 ++++++++++++++++++++++++---- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/docs/meetups/2025/202507-julio.md b/docs/meetups/2025/202507-julio.md index 5c4b906..5e70eab 100644 --- a/docs/meetups/2025/202507-julio.md +++ b/docs/meetups/2025/202507-julio.md @@ -92,23 +92,23 @@ Ven a platicar de estas y otras mejores prácticas con nosotros.</p> <div class="tech-stack" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0;"> <div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> - <h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4> - <p style="margin: 0; font-size: 0.9rem;"></p> + <h4 style="margin: 0 0 0.5rem 0; color: #3776AB;"><i class="fab fa-python"></i> Python</h4> + <p style="margin: 0; font-size: 0.9rem;">Lenguaje de programación</p> </div> <div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> - <h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4> - <p style="margin: 0; font-size: 0.9rem;"></p> + <h4 style="margin: 0 0 0.5rem 0; color: #FF6B35;"><i class="fas fa-bolt"></i> UV</h4> + <p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes y entornos virtuales</p> </div> <div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> - <h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4> - <p style="margin: 0; font-size: 0.9rem;"></p> + <h4 style="margin: 0 0 0.5rem 0; color: #FFD43B;"><i class="fas fa-download"></i> pip</h4> + <p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes de Python</p> </div> <div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> - <h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4> - <p style="margin: 0; font-size: 0.9rem;"></p> + <h4 style="margin: 0 0 0.5rem 0; color: #28A745;"><i class="fas fa-layer-group"></i> venv</h4> + <p style="margin: 0; font-size: 0.9rem;">Entornos virtuales de Python</p> </div> </div> diff --git a/metadata_json/meetup-202507.json b/metadata_json/meetup-202507.json index b3a55af..9dde9a0 100644 --- a/metadata_json/meetup-202507.json +++ b/metadata_json/meetup-202507.json @@ -23,10 +23,30 @@ "twitter": null }, "tech_stack": [ - "Python", - "UV", - "pip", - "venv" + { + "name": "Python", + "description": "Lenguaje de programación", + "icon": "<i class=\"fab fa-python\"></i>", + "color": "#3776AB" + }, + { + "name": "UV", + "description": "Gestor de paquetes y entornos virtuales", + "icon": "<i class=\"fas fa-bolt\"></i>", + "color": "#FF6B35" + }, + { + "name": "pip", + "description": "Gestor de paquetes de Python", + "icon": "<i class=\"fas fa-download\"></i>", + "color": "#FFD43B" + }, + { + "name": "venv", + "description": "Entornos virtuales de Python", + "icon": "<i class=\"fas fa-layer-group\"></i>", + "color": "#28A745" + } ], "duration": "50 minutos" } From 961bcb348273ab6ba769af0d1bf02dfceaa9fcc4 Mon Sep 17 00:00:00 2001 From: pixelead0 <info@pixelead0.com> Date: Tue, 24 Jun 2025 02:19:14 -0600 Subject: [PATCH 2/2] publicar en github pages --- .github/workflows/deploy.yml | 4 +-- .gitignore | 58 ++++++++++++++++++++++++++++++++++++ docs/CNAME | 1 + 3 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 docs/CNAME diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f84b097..d7e0b45 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,10 +24,10 @@ jobs: with: fetch-depth: 0 - - name: Setup Python + - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.10' - name: Install dependencies run: | diff --git a/.gitignore b/.gitignore index 09b8591..5403a8a 100644 --- a/.gitignore +++ b/.gitignore @@ -213,3 +213,61 @@ logs/ .Trashes ehthumbs.db Thumbs.db + +# MkDocs build output +site/ + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Logs +*.log + +# Temporary files +*.tmp +*.temp diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..2c78134 --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +python-cdmx.github.io