├── .gitignore ├── Images ├── header.jpg └── pro.jpg ├── LICENSE ├── Proyectos └── 01 - Pasarela de pago con Stripe │ ├── .env │ ├── README.md │ ├── requirements.txt │ └── stripe_payments_gateway.py └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ -------------------------------------------------------------------------------- /Images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouredev/logica-aplicada/b21e4548c3b0a38ebce546c4a63d50e73397edfe/Images/header.jpg -------------------------------------------------------------------------------- /Images/pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mouredev/logica-aplicada/b21e4548c3b0a38ebce546c4a63d50e73397edfe/Images/pro.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Proyectos/01 - Pasarela de pago con Stripe/.env: -------------------------------------------------------------------------------- 1 | STRIPE_SECRET_KEY=TU_SECRET_KEY_DE_STRIPE -------------------------------------------------------------------------------- /Proyectos/01 - Pasarela de pago con Stripe/README.md: -------------------------------------------------------------------------------- 1 | # #01 PASARELA DE PAGO CON STRIPE 2 | > #### Dificultad: Fácil | Publicación: 10/02/2025 3 | 4 | ## Ejercicio 5 | 6 | ``` 7 | /* 8 | * Procesa pagos por internet con tarjeta de crédito en más de 135 divisas. 9 | * https://stripe.com/es 10 | * 11 | * - Cómo recoger información del usuario. 12 | * - Cómo realizar un cargo asociado a un importe. 13 | * - Gestión de productos y precios. 14 | * - Manejo de errores. 15 | */ 16 | ``` 17 | #### Tienes toda la información extendida sobre los proyectos de lógica aplicada en **[retosdeprogramacion.com/logica-aplicada](https://retosdeprogramacion.com/logica-aplicada)**. 18 | 19 | Sigue las **[instrucciones](../../README.md)**, consulta las correcciones y aporta la tuya propia utilizando el lenguaje de programación que quieras. 20 | 21 | ## Proyecto 22 | 23 | ### Tutorial en vídeo 24 | 25 | 26 | 27 | *Explicación paso a paso del desarrollo del proyecto.* 28 | 29 | ### Información y código 30 | 31 | El proyecto se ha realizado utilizando Python, pero ten en cuenta que lo más importante en estos ejercicios es comprender la lógica detrás de la plataforma, en este caso, Stripe. Puedes usar prácticamente cualquier lenguaje de programación actual para implementar la pasarela (en la documentación hay ejemplos de todos). 32 | 33 | * [Código del proyecto](./): Instala las dependencias y añade tu clave de Stripe como variable de entorno antes de ejecutar el fichero stripe_payments_gateway.py 34 | * Implementación: [stripe_payments_gateway.py](./stripe_payments_gateway.py) 35 | * Variables de entorno: [.env](./.env) 36 | * Dependencias: [requirements.txt](./requirements.txt) 37 | * [Web se Stripe](https://stripe.com/es) 38 | * [Documentación de Stripe](https://docs.stripe.com/get-started/development-environment) 39 | * [Testing Stripe](https://docs.stripe.com/testing) 40 | * Stripe elements: [[Web](https://docs.stripe.com/payments/elements)]/[[App](https://docs.stripe.com/payments/mobile)] 41 | 42 | 43 | ## Proyectos de la comunidad 44 | 45 | Correcciones aportadas por la comunidad. Agrupadas según el lenguaje de programación utilizado. 46 | 47 | > Participa haciendo "fork" al repositorio principal y enviado una "pull request" añadiendo tu nombre de usuario y la url del repositorio de tu corrección (crea la categoría del lenguaje de programación si aún no existe). 48 | 49 | ### Nombre lenguaje principal 50 | * Nombre usuario GitHub: [url_repositorio](url_repositorio) -------------------------------------------------------------------------------- /Proyectos/01 - Pasarela de pago con Stripe/requirements.txt: -------------------------------------------------------------------------------- 1 | stripe>=11.5.0 2 | python-dotenv>=1.0.1 -------------------------------------------------------------------------------- /Proyectos/01 - Pasarela de pago con Stripe/stripe_payments_gateway.py: -------------------------------------------------------------------------------- 1 | import os 2 | import dotenv 3 | import stripe 4 | import stripe.error 5 | 6 | # Configuración del entorno 7 | 8 | dotenv.load_dotenv() 9 | STRIPE_SECRET_KEY = os.getenv("STRIPE_SECRET_KEY") 10 | 11 | stripe.api_key = STRIPE_SECRET_KEY 12 | 13 | # Crear método de pago 14 | 15 | 16 | def create_payment_method() -> str: 17 | 18 | try: 19 | payment_method = stripe.PaymentMethod.create( 20 | type="card", 21 | card={"token": "tok_visa"} 22 | ) 23 | 24 | print(f"Método de pago creado con ID: {payment_method.id}") 25 | 26 | return payment_method.id 27 | except stripe.error.StripeError as e: 28 | print(f"Error en Stripe: {e.user_message}") 29 | 30 | # Crear un pago 31 | 32 | 33 | def create_payment(client_id: str, payment_method_id: str, product_id: str, amount: int, currency: str): 34 | 35 | try: 36 | 37 | payment = stripe.PaymentIntent.create( 38 | amount=amount, 39 | currency=currency, 40 | customer=client_id, 41 | payment_method=payment_method_id, 42 | payment_method_types=["card"], 43 | confirm=True, 44 | metadata={ 45 | "product_id": product_id 46 | } 47 | ) 48 | 49 | print(f"Pago con ID {payment.id} realizado correctamente.") 50 | 51 | except stripe.error.CardError as e: 52 | print(f"Error en la tarjeta: {e.user_message}") 53 | except stripe.error.StripeError as e: 54 | print(f"Error en Stripe: {e.user_message}") 55 | 56 | # Crear usuario 57 | 58 | 59 | def create_user(name, email): 60 | 61 | try: 62 | client = stripe.Customer.create( 63 | name=name, 64 | email=email 65 | ) 66 | 67 | print(f"Client {name} creado correctamente con ID {client.id}") 68 | 69 | return client.id 70 | except stripe.error.StripeError as e: 71 | print(f"Error en Stripe: {e.user_message}") 72 | 73 | # Asociar método de pago a usuario 74 | 75 | 76 | def add_payment_method_to_user(client_id, payment_method_id): 77 | 78 | try: 79 | stripe.PaymentMethod.attach( 80 | payment_method_id, 81 | customer=client_id 82 | ) 83 | 84 | print("Método de pago asociado al usuario.") 85 | 86 | except stripe.error.StripeError as e: 87 | print(f"Error en Stripe: {e.user_message}") 88 | 89 | # Obtener productos 90 | 91 | 92 | def get_product(): 93 | 94 | products = stripe.Product.list(limit=1) 95 | 96 | return products["data"][0]["id"] 97 | 98 | 99 | def get_product_price(product_id): 100 | 101 | price = stripe.Price.list(product=product_id, limit=1) 102 | 103 | price_id = price["data"][0]["id"] 104 | amount = price["data"][0]["unit_amount"] 105 | currency = price["data"][0]["currency"] 106 | 107 | return price_id, amount, currency 108 | 109 | # Prueba 110 | 111 | 112 | client_id = create_user("Brais Moure", "mouredev@gmail.com") 113 | 114 | payment_method_id = create_payment_method() 115 | 116 | add_payment_method_to_user(client_id, payment_method_id) 117 | 118 | product_id = get_product() 119 | price_id, amount, currency = get_product_price(product_id) 120 | 121 | create_payment(client_id, payment_method_id, product_id, amount, currency) 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![https://retosdeprogramacion.com](./Images/header.jpg) 2 | 3 | # Lógica aplicada a proyectos reales [2025] 4 | 5 | ### Proyectos para practicar lógica y aprender a implementar diferentes funcionalidades reales y habituales en todo tipo de aplicaciones. 6 | 7 | #### [https://retosdeprogramacion.com/logica-aplicada](https://retosdeprogramacion.com/logica-aplicada) 8 | [![Retos programación web](https://img.shields.io/github/stars/mouredev/retos-programacion-web?label=Web%20Retos%20Programación&style=social)](https://github.com/mouredev/retos-programacion-web) 9 | 10 | ## Proyectos 11 | 12 | | # | Proyecto | Fecha | Código | Vídeo | Comunidad | 13 | |---|----------|-------|--------|-------|-----------| 14 | | 1 | **PASARELA DE PAGO CON STRIPE**: Procesa pagos por internet con tarjeta de crédito en más de 135 divisas. | 10/02/2025 | [💻](./Proyectos/01%20-%20Pasarela%20de%20pago%20con%20Stripe) | [▶️](https://youtu.be/gOWCCkUq2nc) | [👥](./Proyectos/01%20-%20Pasarela%20de%20pago%20con%20Stripe/README.md) | 15 | | 2 | Próximamente... 16 | 17 | ## Información importante 18 | 19 | * El directo donde se implementará el proyecto (indicado en la fecha) se realizará desde [Twitch](https://twitch.tv/mouredev) y mi [canal principal de YouTube](https://youtube.com/@mouredev). 20 | * La fecha y horario de cada nuevo proyecto en directo se publicará en la [web principal](https://retosdeprogramacion.com/logica-aplicada) y la sección de "eventos" en [Discord](https://discord.gg/mouredev). 21 | * Una vez finalizado el proyecto se subirá el código a este repositorio y se publicará un vídeo con la clase en [mi canal secundario de YouTube](https://youtube.com/@mouredevtv). 22 | * La comunidad podrá enviar sus proyectos utilizando el lenguaje y la tecnología que quiera una vez se realice la corrección principal (revisa la sección de "instrucciones para participar"). 23 | 24 | ## Instrucciones para participar 25 | 26 | * Haz un "fork" del repositorio principal. 27 | * Envía una "pull request" editando el README.md del proyecto en el que estás paticipando. Añade la siguiente información (hay un ejemplo en cada README asociado a un proyecto): 28 | * Nombre del lenguaje de programación principal utilizado. 29 | * Tu nombre de usuario. 30 | * Enlace al repositorio de tu corrección. 31 | * La corrección del ejercicio debe estar en un repositorio propio del usuario. 32 | * El repositorio principal de los proyectos de lógica aplicada sólo contendrán las correcciones aportadas por MoureDev y los enlaces a las correcciones de la comunidad (nunca el código de ellas). 33 | 34 | ## Guía rápida Git y GitHub 35 | 36 | 1. Realiza un [FORK](https://github.com/mouredev/logica-aplicada/fork) del repositorio de retos desde GitHub. 37 | 2. CLONA ese repositorio a tu máquina local `git clone [TU-REPOSITORIO]`. 38 | 3. (Opcional) Crea una RAMA para la solución y desplázate a ella `git checkout -b [EL-NOMBRE-DE-TU-RAMA]`. 39 | 4. Modifica el README del proyecto donde quieres participar añadiendo la información indicada en las instrucciones 40 | 5. Añáde el README modificado al STAGE `git add [FICHERO-DE-TU-RETO]`. 41 | 5. Haz COMMIT con el mensaje de la solución `git commit -m "#[NÚMERO-RETO] - [LENGUAJE-UTILIZADO]"`. 42 | 6. Haz PUSH `git push [EL-NOMBRE-DE-TU-RAMA]` (puede ser la "main" o la que creaste en el paso 3) 43 | 7. En el repositorio principal debes ir a la rama y hacer [PULL REQUEST](https://docs.github.com/es/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). 44 | 8. CONTRIBUTE. 45 | 9. CREATE PULL REQUEST (cubre la plantilla que te aparecerá). 46 | 10. Si el proceso de entrega se ha realizado de forma correcta, se añadirá tu corrección al repositorio. En caso contrario, se te notificarán los cambios a realizar o los motivos del rechazo. 47 | 48 | ## Más retos de programación 49 | 50 | **Consulta los más de 150 retos de programación resueltos y las 12 aplicaciones para tu portfolio que ya hemos desarrollado.** 51 | 52 | [![Roadmap programación 2024](https://img.shields.io/github/stars/mouredev/roadmap-retos-programacion?label=Roadmap%20Programación%202024&style=social)](https://github.com/mouredev/roadmap-retos-programacion) 53 | [![Retos programación 2023](https://img.shields.io/github/stars/mouredev/retos-programacion-2023?label=Retos%20Programación%202023&style=social)](https://github.com/mouredev/retos-programacion-2023) 54 | [![Retos programación 2022](https://img.shields.io/github/stars/mouredev/Weekly-Challenge-2022-Kotlin?label=Retos%20Semanales%202022&style=social)](https://github.com/mouredev/Weekly-Challenge-2022-Kotlin) 55 | [![Aplicaciones portafolio](https://img.shields.io/github/stars/mouredev/Monthly-App-Challenge-2022?label=Aplicaciones%20portafolio&style=social)](https://github.com/mouredev/Monthly-App-Challenge-2022) 56 | 57 | ## Únete al campus de programación de la comunidad 58 | 59 | ![https://mouredev.pro](./Images/pro.jpg) 60 | 61 | #### Te presento [mouredev pro](https://mouredev.pro), mi proyecto más importante para ayudarte a estudiar programación y desarrollo de software de manera diferente. 62 | 63 | > **¿Buscas un extra?** Aquí encontrarás mis cursos editados por lecciones individuales, para avanzar a tu ritmo y guardar el progreso. También dispondrás de ejercicios y correcciones, test para validar tus conocimientos, examen y certificado público de finalización, soporte, foro de estudiantes, reunionnes grupales, cursos exclusivos y mucho más. 64 | > 65 | > Entra en **[mouredev.pro](https://mouredev.pro)** y utiliza el cupón **"PRO"** con un 10% de descuento en tu primera suscripción. 66 | 67 | ## ![https://mouredev.com](https://raw.githubusercontent.com/mouredev/mouredev/master/mouredev_emote.png) Hola, mi nombre es Brais Moure. 68 | ### Freelance full-stack iOS & Android engineer 69 | 70 | [![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCxPD7bsocoAMq8Dj18kmGyQ?style=social)](https://youtube.com/mouredevapps?sub_confirmation=1) 71 | [![Twitch Status](https://img.shields.io/twitch/status/mouredev?style=social)](https://twitch.com/mouredev) 72 | [![Discord](https://img.shields.io/discord/729672926432985098?style=social&label=Discord&logo=discord)](https://mouredev.com/discord) 73 | [![Twitter Follow](https://img.shields.io/twitter/follow/mouredev?style=social)](https://twitter.com/mouredev) 74 | ![GitHub Followers](https://img.shields.io/github/followers/mouredev?style=social) 75 | ![GitHub Followers](https://img.shields.io/github/stars/mouredev?style=social) 76 | 77 | Soy ingeniero de software desde 2010. Desde 2018 combino mi trabajo desarrollando Apps con la creación de contenido formativo sobre programación y tecnología en diferentes redes sociales como **[@mouredev](https://moure.dev)**. 78 | 79 | Si quieres unirte a nuestra comunidad de desarrollo, aprender programación, mejorar tus habilidades y ayudar a la continuidad del proyecto, puedes encontrarnos en: 80 | 81 | [![Twitch](https://img.shields.io/badge/Twitch-Programación_en_directo-9146FF?style=for-the-badge&logo=twitch&logoColor=white&labelColor=101010)](https://twitch.tv/mouredev) 82 | [![Discord](https://img.shields.io/badge/Discord-Servidor_de_la_comunidad-5865F2?style=for-the-badge&logo=discord&logoColor=white&labelColor=101010)](https://mouredev.com/discord) [![Pro](https://img.shields.io/badge/Cursos-mouredev.pro-FF5500?style=for-the-badge&logo=gnometerminal&logoColor=white&labelColor=101010)](https://mouredev.pro) 83 | [![Link](https://img.shields.io/badge/Links_de_interés-moure.dev-14a1f0?style=for-the-badge&logo=Linktree&logoColor=white&labelColor=101010)](https://moure.dev) [![Web](https://img.shields.io/badge/GitHub-MoureDev-087ec4?style=for-the-badge&logo=github&logoColor=white&labelColor=101010)](https://github.com/mouredev) 84 | --------------------------------------------------------------------------------