<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: @venelouis</title>
    <description>The latest articles on Forem by @venelouis (@venelouis).</description>
    <link>https://forem.com/venelouis</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1272370%2F7feffc7b-74cd-45fa-a9ac-e83c4d15f240.gif</url>
      <title>Forem: @venelouis</title>
      <link>https://forem.com/venelouis</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/venelouis"/>
    <language>en</language>
    <item>
      <title>A jornada natural de um webapp:</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Wed, 29 Apr 2026 03:42:22 +0000</pubDate>
      <link>https://forem.com/venelouis/a-jornada-natural-de-um-webapp-5d37</link>
      <guid>https://forem.com/venelouis/a-jornada-natural-de-um-webapp-5d37</guid>
      <description>&lt;h2&gt;
  
  
  A jornada natural de um webapp:
&lt;/h2&gt;

&lt;p&gt;Fase 1 — Início          VPS simples, LEMP ou Docker&lt;br&gt;
(0–50k usuários/mês)     R$26–70/mês&lt;/p&gt;

&lt;p&gt;Fase 2 — Crescimento     VPS maior + Docker Compose&lt;br&gt;
(50k–300k usuários/mês)  R$50–150/mês&lt;/p&gt;

&lt;p&gt;Fase 3 — Escala          Cloud + Docker + Container orchestration&lt;br&gt;
(300k–1M usuários/mês)   R$300–1.000+/mês&lt;br&gt;
                         (Azure Container Apps, AWS ECS, Google Cloud Run)&lt;/p&gt;

&lt;p&gt;Fase 4 — Grande escala   Kubernetes (K8s) na Cloud&lt;br&gt;
(1M+ usuários/mês)       R$2.000+/mês&lt;br&gt;
                         (AKS, EKS, GKE)&lt;/p&gt;

&lt;p&gt;Créditos acabam mais rápido com muitos usuários no  Azure Cloud?&lt;br&gt;
Não! E esse é um ponto muito importante sobre App Service e MySQL Flexible:&lt;/p&gt;

&lt;p&gt;App Service B1   → cobra por HORA rodando = $13/mês fixo&lt;br&gt;
MySQL B1ms       → cobra por HORA rodando = $12/mês fixo&lt;br&gt;
10 usuários/dia  → $25/mês&lt;br&gt;
10.000 usuários/dia → $25/mês  ← IGUAL!&lt;br&gt;
Os custos SÓ aumentam se você escalar manualmente (mudar para B2, B3, etc.) ou se o armazenamento do MySQL ultrapassar 20GB. Para um site de comunidade de estudos, isso não vai acontecer tão cedo.&lt;/p&gt;

&lt;p&gt;Os $100 duram ~4 meses independente do tráfego. 🎉&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;MySQL → Docker? Trivial! ✅
Sim, é a coisa mais simples. O workflow completo no futuro (Hetzner VPS):&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;bash&lt;/p&gt;

&lt;h1&gt;
  
  
  1. Exportar da Azure (ou Hostinger)
&lt;/h1&gt;

&lt;p&gt;mysqldump -h host -u usuario -p cosmos_scriptura &amp;gt; backup.sql&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Subir Docker na VPS com MySQL incluído
&lt;/h1&gt;

&lt;p&gt;docker compose up -d&lt;/p&gt;

&lt;h1&gt;
  
  
  3. Importar o banco no container Docker
&lt;/h1&gt;

&lt;p&gt;docker exec -i cosmos_db mysql -u cosmos_admin -p cosmos_scriptura &amp;lt; backup.sql&lt;/p&gt;

&lt;h1&gt;
  
  
  Pronto! ✅
&lt;/h1&gt;

&lt;p&gt;E o docker-compose.yml na VPS ficaria assim (adicionamos um serviço db):&lt;/p&gt;

&lt;p&gt;yaml&lt;br&gt;
services:&lt;br&gt;
  app: &lt;br&gt;
  # Laravel (já existe)&lt;br&gt;
  db:&lt;br&gt;
    image: mysql:8.0&lt;br&gt;
    volumes:&lt;br&gt;
      - mysql_data:/var/lib/mysql  # dados persistem entre restarts&lt;br&gt;
    environment:&lt;br&gt;
      MYSQL_DATABASE: ***&lt;br&gt;
      MYSQL_ROOT_PASSWORD: senha_forte&lt;br&gt;
volumes:&lt;br&gt;
  mysql_data:  # volume persistente&lt;/p&gt;

&lt;h2&gt;
  
  
  Quantos usuários uma VPS aguenta?
&lt;/h2&gt;

&lt;p&gt;Depende do que o site faz — mas para um webapp Laravel de comunidade/estudos como o seu:&lt;/p&gt;

&lt;p&gt;VPS RAM/CPU Usuários simultâneos  Usuários ativos/dia    Usuários/mês&lt;br&gt;
Hetzner CX23 (R$26) 2 vCPU / 4GB    50–150    ~5.000  ~100.000&lt;br&gt;
Hetzner CX33 (R$51) 4 vCPU / 8GB    150–400   ~15.000 ~300.000&lt;br&gt;
DO 2GB (R$69)   1 vCPU / 2GB    30–100    ~3.000  ~60.000&lt;br&gt;
NOTE&lt;/p&gt;

&lt;p&gt;Esses números assumem OPcache ativado no PHP (acelera 3–5x), Nginx como servidor web e queries MySQL bem otimizadas. Sem OPcache, divide por 3.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quando a VPS começa a sofrer:
&lt;/h2&gt;

&lt;p&gt;CPU &amp;gt; 80% constantemente&lt;br&gt;
Tempo de resposta &amp;gt; 2 segundos&lt;br&gt;
Erros 502/504 frequentes nos horários de pico&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Quando migrar da VPS para Cloud?
Não é só sobre número de usuários — é sobre o que você precisa:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;VPS é suficiente enquanto:&lt;br&gt;
  ✅ &amp;lt; 500 usuários simultâneos&lt;br&gt;
  ✅ Um servidor aguenta o pico&lt;br&gt;
  ✅ Queda de 30 min/mês é aceitável&lt;br&gt;
  ✅ Você faz backup manual&lt;br&gt;
Hora de ir para Cloud quando:&lt;br&gt;
  ❌ Picos imprevisíveis de tráfego (ex: viral nas redes sociais)&lt;br&gt;
  ❌ Precisa de 99.9%+ de uptime (SLA garantido)&lt;br&gt;
  ❌ Usuários em múltiplos países (latência)&lt;br&gt;
  ❌ Time cresceu e deploy manual virou risco&lt;br&gt;
  ❌ Dados críticos precisam de backup automático e compliance&lt;/p&gt;

&lt;p&gt;Em números práticos para o seu app:&lt;/p&gt;

&lt;p&gt;Hoje → ???  usuários  →  VPS Hetzner R$26/mês ✅&lt;br&gt;
100k+ usuários/mês     →  VPS maior ou Cloud básica&lt;br&gt;
500k+ usuários/mês     →  Cloud com auto-scaling&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Na Cloud com muitos usuários — usar Docker também?
Sim, e aí o Docker vira essencial, não opcional. É a diferença entre escalar manualmente e escalar automaticamente:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;SEM Docker na Cloud (tradicional):&lt;br&gt;
  Tráfego dobra → você acorda às 3h → sobe servidor maior → reza&lt;/p&gt;

&lt;p&gt;COM Docker na Cloud (moderno):&lt;br&gt;
  Tráfego dobra → Cloud sobe 2 containers automaticamente → você dorme&lt;/p&gt;

&lt;p&gt;Aqui está uma comparação realista para quando você tiver usuários pagantes:&lt;/p&gt;

&lt;p&gt;🔵 Continuar na Azure (Cloud Gerenciada)&lt;br&gt;
Custo: ~R$ 1.500/ano (no plano básico).&lt;br&gt;
Vantagem: Paz de espírito. Se o banco de dados cair, a Microsoft resolve. Se precisar de mais potência, você clica em um botão. O backup é automático.&lt;br&gt;
Custo-benefício: Excelente se você tem usuários pagantes. O seu tempo vale mais do que R$ 120 por mês. Se você passar 2 horas por mês consertando um servidor que caiu, já "perdeu" dinheiro.&lt;/p&gt;

&lt;p&gt;🐧 Mudar para uma VPS (Hetzner/DigitalOcean)&lt;br&gt;
Custo: ~R$ 300/ano.&lt;br&gt;
Vantagem: Economia pura. É 5x mais barato que a Azure.&lt;br&gt;
Desvantagem: Trabalho manual. Você é o "zelador" do servidor. Você precisa configurar o firewall, renovar o SSL (HTTPS), garantir que o backup está funcionando e atualizar o Linux. Se o site cair às 3 da manhã, é você quem tem que entrar via SSH para descobrir o porquê.&lt;/p&gt;

&lt;p&gt;Minha Opinião Sincera:&lt;br&gt;
Fase 1 (Agora): Use os $100 de estudante da Azure. É grátis, é profissional e você aprende a usar uma ferramenta de ponta.&lt;br&gt;
Fase 2 (Crédito acabou):&lt;br&gt;
Se o site estiver dando lucro: Fique na Azure. A "tranquilidade" de um serviço gerenciado compensa o custo extra. Você foca em ganhar mais dinheiro com o site, não em mexer em terminal de Linux.&lt;br&gt;
Se o site for um hobby ou o lucro for baixo: Mude para uma VPS (Hetzner). Com o Docker que já criamos, essa migração será muito rápida (questão de 1 hora).&lt;/p&gt;

&lt;p&gt;Conclusão: Para quem tem usuários pagantes, a Cloud (Azure) costuma ter o melhor custo-benefício porque o risco de o site ficar fora do ar e você perder clientes é muito menor.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Curto Prazo (Agora): Azure ✅&lt;br&gt;
Não tem nem o que pensar. Você tem $100 de graça. É a melhor nuvem do mundo enquanto você não está pagando por ela. Use esse tempo para aprender e validar seu site sem gastar um centavo.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Longo Prazo (Quando você tiver que pagar do bolso):&lt;br&gt;
Se o seu público é brasileiro, a Azure é excelente porque o servidor no Brasil (Brazil South) é muito rápido e estável.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Porém, se eu fosse recomendar algo além da Azure, as melhores alternativas para o seu perfil (Laravel + Comunidade) seriam:&lt;/p&gt;

&lt;p&gt;DigitalOcean (App Platform): 🥇 Minha recomendação número 1 pós-Azure. É muito mais simples de configurar que a Azure, o preço é fixo e transparente (você sabe exatamente quanto vai pagar), e eles amam o Laravel. É o equilíbrio perfeito entre a VPS barata e a Cloud complexa.&lt;/p&gt;

&lt;p&gt;Google Cloud (GCP): Ótimo se você quiser usar o Cloud Run. O custo pode ser quase zero se você tiver pouco tráfego, mas o banco de dados (Cloud SQL) é caro.&lt;/p&gt;

&lt;p&gt;AWS: É a maior de todas, mas é um "labirinto". Eu evitaria para um projeto solo, a menos que você queira muito aprender para o seu currículo.&lt;/p&gt;

&lt;p&gt;Meu Veredito:&lt;br&gt;
Fique na Azure agora para aproveitar os créditos. Se um dia você decidir que a Azure está cara ou complexa demais, mude para a DigitalOcean.&lt;/p&gt;

&lt;p&gt;Dica de Ouro: O Laravel tem uma ferramenta oficial chamada Laravel Forge. Ela gerencia servidores para você (na DigitalOcean, Hetzner ou AWS). Se o seu site crescer e você quiser o preço baixo de uma VPS com a facilidade da Azure, o Forge é o caminho que 90% dos profissionais de Laravel usam.&lt;/p&gt;

&lt;p&gt;Novo Cálculo (Azure for Students):&lt;br&gt;
App Service (F1): $0.00 (Sempre gratuito).&lt;br&gt;
MySQL Flexible Server (B1ms): $0.00 durante os primeiros 12 meses (A conta de estudante inclui 750 horas/mês gratuitas deste banco por um ano).&lt;br&gt;
Crédito de $100: Como seu custo mensal será praticamente zero no primeiro ano, seus $100 dólares ficarão guardados!&lt;br&gt;
Resultado:&lt;/p&gt;

&lt;p&gt;Primeiros 12 meses: Custo $0. Você não gasta nada dos seus $100.&lt;br&gt;
Após 12 meses: O banco passa a custar ~ $15/mês. Seus $100 começariam a ser usados então, durando mais uns 6 a 7 meses.&lt;br&gt;
Total: Você consegue manter o projeto rodando por cerca de 18 meses (1 ano e meio) sem tirar um centavo do bolso!&lt;/p&gt;

</description>
      <category>webapp</category>
      <category>azure</category>
      <category>money</category>
      <category>vps</category>
    </item>
    <item>
      <title>Building the Impossible: How I Built Two Complex Platforms with PHP, Next.js, and AI</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Sun, 26 Apr 2026 22:45:32 +0000</pubDate>
      <link>https://forem.com/venelouis/building-the-impossible-how-i-built-two-complex-platforms-with-php-nextjs-and-ai-2ji5</link>
      <guid>https://forem.com/venelouis/building-the-impossible-how-i-built-two-complex-platforms-with-php-nextjs-and-ai-2ji5</guid>
      <description>&lt;p&gt;Many times, we have ideas that seem too big for our current skill set. For a long time, I dreamed of creating tools that merged technology, science, and ancient languages, but the technical complexity felt like an insurmountable barrier.&lt;/p&gt;

&lt;p&gt;Recently, with the help of AI, I finally managed to launch two robust projects. I want to share the process and the tech stack I used to make it happen.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Dream: Why were these projects "impossible" for me?
&lt;/h2&gt;

&lt;p&gt;Even though I already knew how to code, building a gamified platform with the level of polish I envisioned required a depth of knowledge I hadn't fully mastered.&lt;/p&gt;

&lt;p&gt;I knew that even if I could build it alone, the time investment and the "head-scratching" involved in debugging would be massive. AI changed the game by acting not just as a code generator, but as a partner that could fix bugs and suggest intelligent solutions to complex architectural problems. It made the development workflow much faster and more accessible.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project 1: creio.eu (Gamified Learning)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://creio.eu" rel="noopener noreferrer"&gt;creio.eu&lt;/a&gt; was born from a desire to unite scientific and biblical knowledge into a gamified environment.&lt;/p&gt;

&lt;p&gt;Tech Stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Backend: Laravel (PHP)&lt;/li&gt;
&lt;li&gt;Frontend: Blade / Tailwind CSS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://creio.eu" rel="noopener noreferrer"&gt;https://creio.eu&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;How AI helped me here:&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data Structuring: Organizing massive volumes of information into coherent Laravel migrations.&lt;/li&gt;
&lt;li&gt;Gamification Logic: Designing the leveling system and user progress tracking.&lt;/li&gt;
&lt;li&gt;Database Optimization: Fine-tuning queries for the quizzes to ensure high performance.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The Technical Challenge: biblia.creio.eu (Interlinear Bible)
&lt;/h2&gt;

&lt;p&gt;This was my most ambitious project. Dealing with ancient languages like Hebrew, Aramaic, Ge'ez, and Armenian requires extreme technical precision.&lt;/p&gt;

&lt;p&gt;Tech Stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend: Next.js&lt;/li&gt;
&lt;li&gt;Status: Open Source 🚀&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://biblia.creio.eu" rel="noopener noreferrer"&gt;https://biblia.creio.eu&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  The challenge of ancient scripts:
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Working with different scripts—especially Right-to-Left (RTL) languages like Hebrew—and specific fonts was a constant hurdle. AI was fundamental for:&lt;/li&gt;
&lt;li&gt;Interlinear Formatting: Correcting the alignment between multiple languages and writing directions.&lt;/li&gt;
&lt;li&gt;Data Curation: I used AI to find public domain texts and open-source fonts, ensuring the project remained legally compliant and truly open.&lt;/li&gt;
&lt;li&gt;Character Rendering: Solving encoding and font-rendering issues for Ge'ez and Armenian within Next.js components.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;I am a firm believer in free knowledge. Because of that, the code for the Interlinear Bible is open to the community:&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/cristianismohumilde" rel="noopener noreferrer"&gt;
        cristianismohumilde
      &lt;/a&gt; / &lt;a href="https://github.com/cristianismohumilde/biblia.eu.creio" rel="noopener noreferrer"&gt;
        biblia.eu.creio
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;📜 Biblia.Creio.EU&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/cristianismohumilde/biblia.eu.creio/README.pt-BR.md" rel="noopener noreferrer"&gt;Leia em português 🇧🇷&lt;/a&gt;&lt;/p&gt;
&lt;div&gt;
  &lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;🏛️ Ancient Manuscripts | 🔍 Interlinear Study | 🚀 Static-First Architecture&lt;/h3&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://github.com/cristianismohumilde/biblia.eu.creio/actions/workflows/deploy-pages.yml" rel="noopener noreferrer"&gt;&lt;img src="https://github.com/cristianismohumilde/biblia.eu.creio/actions/workflows/deploy-pages.yml/badge.svg" alt="Deploy Next.js site to Pages"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8e285d6c04022c2a7b4d9c10ab4261dae0236525c30a21caddeb90740d2294bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4e6578742e6a732d31352d626c61636b3f6c6f676f3d6e6578742e6a73"&gt;&lt;img src="https://camo.githubusercontent.com/8e285d6c04022c2a7b4d9c10ab4261dae0236525c30a21caddeb90740d2294bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4e6578742e6a732d31352d626c61636b3f6c6f676f3d6e6578742e6a73" alt="Next.js"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/3167eb3714c4c4a64b192a6842ed1833bdb87ac0f08eeed9f44c563853161a2e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f52656163742d31392d3134394543413f6c6f676f3d7265616374"&gt;&lt;img src="https://camo.githubusercontent.com/3167eb3714c4c4a64b192a6842ed1833bdb87ac0f08eeed9f44c563853161a2e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f52656163742d31392d3134394543413f6c6f676f3d7265616374" alt="React"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e"&gt;&lt;img src="https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e" alt="License: MIT"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Biblia.Creio.EU&lt;/strong&gt; is a high-level open-source interlinear Bible study platform. Built with &lt;strong&gt;Next.js&lt;/strong&gt; for high-performance static generation, it provides a professional tool for deep analysis of original manuscripts across multiple linguistic traditions.&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🎯 Project Objectives&lt;/h2&gt;
&lt;/div&gt;
&lt;p&gt;Biblia.Creio.EU provides a complete, academia-grade interlinear experience:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;💎 Ancient Manuscript Witnesses:&lt;/strong&gt; Hebrew, Aramaic, Greek, Latin, Ge'ez, Syriac, Coptic, and Armenian.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;✍️ Curation-based Literal Translation:&lt;/strong&gt; Word-for-word literal translations developed for structural fidelity.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;📚 Multi-Language Lexicons:&lt;/strong&gt; Comprehensive support for &lt;strong&gt;Strong (Hebrew/Greek)&lt;/strong&gt;, &lt;strong&gt;Jastrow (Aramaic)&lt;/strong&gt;, &lt;strong&gt;Dillmann (Ge'ez)&lt;/strong&gt;, &lt;strong&gt;LSJ&lt;/strong&gt;, &lt;strong&gt;L&amp;amp;S&lt;/strong&gt;, and more.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;⚖️ Multi-traditional Comparison:&lt;/strong&gt; Simultaneous analysis across key linguistic witnesses of biblical history.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🛡️ Legal Compliance &amp;amp; Transparency&lt;/h2&gt;

&lt;/div&gt;
&lt;p&gt;This project is a pillar of &lt;strong&gt;Open Data&lt;/strong&gt;. We ensure absolute legal safety for contributors and users:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;🔓 Public Domain:&lt;/strong&gt; All linguistic databases (lemmas, morphology, and base dictionaries) use…&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/cristianismohumilde/biblia.eu.creio" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  My Workflow with AI
&lt;/h2&gt;

&lt;p&gt;To bring these ideas to life, I used a mix of tools. I started with GitHub Copilot Student until I hit my token limits, and then moved to Antigravity, which proved to be an excellent resource.&lt;/p&gt;

&lt;p&gt;A story from the trenches: At one point, the Aramaic fonts simply wouldn't align with the translations. I fed the AI a detailed prompt describing my JSON structure and the expected CSS behavior. It suggested a flexbox solution combined with specific direction: rtl overrides that I hadn't considered, fixing the layout instantly.&lt;/p&gt;

&lt;p&gt;
  Click to see the type of prompt I used for the font logic
  &lt;br&gt;
"I need to render an interlinear text where the top line is Hebrew (RTL) and the bottom is English (LTR). How can I structure my Next.js components so the word-mapping remains visually synchronized even on responsive screens?"&lt;br&gt;


&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion: The Future of Development
&lt;/h2&gt;

&lt;p&gt;Without these tools, I would still be in the "what if..." phase. Today, both sites are live. AI doesn't replace the creator, but it certainly gives wings to those who want to build something new by removing the "fear" of technical barriers.&lt;/p&gt;

&lt;p&gt;Let’s Talk!&lt;br&gt;
I’d love to know: do you have a project that only exists because of AI? Or do you think we are becoming too dependent on these tools?&lt;/p&gt;

&lt;p&gt;Leave a comment below, let's exchange experiences!&lt;/p&gt;

&lt;p&gt;Since it's Open Source, I use the Liquid tag to invite contributors:&lt;br&gt;
&lt;a href="https://github.com/cristianismohumilde/biblia.eu.creio" class="crayons-btn crayons-btn--primary" rel="noopener noreferrer"&gt;Contribute on GitHub!&lt;/a&gt;
&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ia</category>
      <category>webdev</category>
      <category>laravel</category>
    </item>
    <item>
      <title>No future without sustainability</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Wed, 12 Mar 2025 02:01:53 +0000</pubDate>
      <link>https://forem.com/venelouis/no-future-without-sustainability-29p</link>
      <guid>https://forem.com/venelouis/no-future-without-sustainability-29p</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://future.forem.com/challenges/writing-2025-02-26"&gt;Future Writing Challenge&lt;/a&gt;: How Technology Is Changing Things.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Dear Family and Friends,&lt;/p&gt;

&lt;p&gt;Technology is changing our world at lightning speed, and I wanted to share some thoughts on what we can expect in the coming years.&lt;/p&gt;

&lt;p&gt;The Rise of Artificial Intelligence (AI)&lt;/p&gt;

&lt;p&gt;Remember when getting information meant going to the library and flipping through dusty books? Now, we can ask an AI chatbot almost anything! Imagine AI as a super-smart friend who knows the answer to almost every question. But just like a friend, sometimes they need our help to get things right. It's like having a robot that helps with homework, but we still need to think and learn to do it correctly!&lt;/p&gt;

&lt;p&gt;AI is transforming how we learn and work. In the future, we might have personalized lessons and more creative jobs. However, we also need to learn how to use technology responsibly and ethically. AI can help solve complex problems like climate change and diseases, but we must be careful not to rely on it too much and lose our ability to think for ourselves.&lt;/p&gt;

&lt;p&gt;Connectivity and Robotics&lt;/p&gt;

&lt;p&gt;Connectivity is also evolving rapidly. Remember when we played "telephone" as kids? Now, we can talk to people on the other side of the world in real-time, seeing their faces on our phone screens! Robots are learning to do more and more, like self-driving cars and machines that help care for the sick.&lt;/p&gt;

&lt;p&gt;Technology is changing how we communicate, have fun, and connect with each other. Social media connects us with people worldwide but can also make us feel isolated and anxious. Automation is changing the job market, creating new opportunities and challenges. We need to prepare for the jobs of the future by learning new skills and adapting to change.&lt;/p&gt;

&lt;p&gt;The Importance of Sustainability&lt;/p&gt;

&lt;p&gt;We must take care of our planet so that all animals and people can live happily and healthily. Technology can help us create new things without polluting the air and water. It's like using recycled materials to build cool new toys without cutting down more trees or littering.&lt;/p&gt;

&lt;p&gt;Sustainable technology is essential for ensuring a better future for everyone. We need to invest in renewable energy, biodegradable materials, and technologies that reduce our environmental impact. Technology can help us monitor and protect the environment, creating early warning systems for natural disasters and solutions for pollution.&lt;/p&gt;

&lt;p&gt;A Message of Hope and Optimism&lt;/p&gt;

&lt;p&gt;The future of technology can be amazing! We can create incredible things that will help people and the planet. But we must use technology wisely and take care of each other. Together, we can build a better world with the help of technology!&lt;/p&gt;

&lt;p&gt;Technology has the potential to transform the world for the better, creating innovative solutions to the challenges we face. But we need to work together to ensure that technology is used ethically and responsibly. I believe that with the help of technology, we can build a more just, sustainable, and happy future for all.&lt;/p&gt;

&lt;p&gt;I hope this gives you a glimpse into the exciting and rapidly changing world of technology. I'm excited to see what the future holds!&lt;/p&gt;

&lt;p&gt;Warmly,&lt;/p&gt;

&lt;p&gt;Venelouis T. S. Palhano&lt;/p&gt;

&lt;h3&gt;
  
  
  Additional Prize Categories
&lt;/h3&gt;

&lt;p&gt;Explain Like I'm Five and Ripple Effects&lt;/p&gt;

</description>
      <category>futurechallenge</category>
      <category>sustainability</category>
      <category>ai</category>
    </item>
    <item>
      <title>Most Known Penetration Testing Linux distributions</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Fri, 30 Aug 2024 11:20:47 +0000</pubDate>
      <link>https://forem.com/venelouis/free-ethical-hacking-course-1k7b</link>
      <guid>https://forem.com/venelouis/free-ethical-hacking-course-1k7b</guid>
      <description>&lt;p&gt;Several #Linux distributions include numerous penetration testing tools. 🛠️&lt;/p&gt;

&lt;p&gt;These are just some of the most popular ones. Do you agree? Make a comment below.&lt;/p&gt;

&lt;p&gt;To learn more about penetration testing, check out the #SkillsForAll Free Cisco course on ethical hacking! 💻&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="http://cs.co/6049mdRaN" rel="noopener noreferrer"&gt;http://cs.co/6049mdRaN&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ethical</category>
      <category>cisco</category>
      <category>linux</category>
    </item>
    <item>
      <title>Sharing MLH Survey (chances to win a brand new laptop)!</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Fri, 17 May 2024 23:28:08 +0000</pubDate>
      <link>https://forem.com/venelouis/sharing-mlh-survey-chances-to-win-a-brand-new-laptop-2j7n</link>
      <guid>https://forem.com/venelouis/sharing-mlh-survey-chances-to-win-a-brand-new-laptop-2j7n</guid>
      <description>&lt;p&gt;Sharing MLH Survey (chances to win a brand new laptop)! It doesn't even matter if you don't know MLH! Participe and have a chance! Major League Hacking #MLH #MajorLeagueHacking #Survey&lt;/p&gt;

&lt;p&gt;&lt;a href="https://hackp.ac/community-census-s2024" rel="noopener noreferrer"&gt;https://hackp.ac/community-census-s2024&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mlh</category>
      <category>majorleaguehacking</category>
      <category>survey</category>
    </item>
    <item>
      <title>I got a testimonial on Exercism</title>
      <dc:creator>@venelouis</dc:creator>
      <pubDate>Mon, 13 May 2024 23:41:39 +0000</pubDate>
      <link>https://forem.com/venelouis/i-got-a-testimonial-on-exercism-1bgc</link>
      <guid>https://forem.com/venelouis/i-got-a-testimonial-on-exercism-1bgc</guid>
      <description>&lt;p&gt;&lt;a href="https://exercism.org/profiles/venelouis/testimonials?uuid=daef1645-d5ac-462c-89d7-ba3d6609dee8" rel="noopener noreferrer"&gt;https://exercism.org/profiles/venelouis/testimonials?uuid=daef1645-d5ac-462c-89d7-ba3d6609dee8&lt;/a&gt;&lt;/p&gt;

</description>
      <category>exercism</category>
      <category>python</category>
    </item>
  </channel>
</rss>
