Skip to content

Commit dbe2071

Browse files
committed
fix: restore visibility of old posts by removing published: false
1 parent 53a76bf commit dbe2071

12 files changed

Lines changed: 0 additions & 12 deletions

_posts/2025-02-12-welcome-to-jekyll.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
- blog
99
- tutorial
1010
canonical_url: https://ewertoncodes.github.io/jekyll/update/2025/02/12/welcome-to-jekyll.html
11-
published: false
1211
---
1312
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
1413

_posts/2025-02-20-como-os-sites-evoluiram-ajax-ssg-spa-e-ssr.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ tags:
1414
description: Uma jornada pela evolução da web, desde os sites estáticos tradicionais
1515
até as modernas Single Page Applications (SPAs) e Server-Side Rendering (SSR).
1616
canonical_url: https://ewertoncodes.github.io/frontend/web/2025/02/20/como-os-sites-evoluiram-ajax-ssg-spa-e-ssr.html
17-
published: false
1817
---
1918
![image](/images/evolucao.jpg)
2019

_posts/2025-03-21-introducao-reactjs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
- frontend
99
- javascript
1010
canonical_url: https://ewertoncodes.github.io/frontend/reactjs/2025/03/21/introducao-reactjs.html
11-
published: false
1211
---
1312
O React.js é uma biblioteca JavaScript para criar interfaces dinâmicas na web. Quando desenvolvemos com React, pensamos em componentes, que são pequenos blocos reutilizáveis da interface, como menus, botões e formulários. Basicamente, um componente é uma função que retorna a renderização de um HTML.
1413

_posts/2025-06-04-blocos-procs-lambdas.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tags:
1212
description: Entenda definitivamente as diferenças entre Blocos, Procs e Lambdas no
1313
Ruby, incluindo o comportamento único do return em cada um deles.
1414
canonical_url: https://ewertoncodes.github.io/backend/ruby/2025/06/04/blocos-procs-lambdas.html
15-
published: false
1615
---
1716
Ruby é famoso por sua sintaxe elegante e recursos poderosos, entre eles os **Blocos**, **Procs** e **Lambdas**. Se você está começando com Ruby ou quer reforçar o entendimento, este post vai ajudar a esclarecer o que são esses recursos, como funcionam, e quando usá-las.
1817

_posts/2025-12-24-entendendo-json-web-token-jwt.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ tags:
99
- seguranca
1010
- auth
1111
canonical_url: https://ewertoncodes.github.io/backend/2025/12/24/entendendo-json-web-token-jwt.html
12-
published: false
1312
---
1413
Em algum momento, ao criar uma aplicação web, precisamos desenvolver uma solução de autenticação para o sistema. Existem várias estratégias para isso, como autenticação por senha,
1514
tokens, OAuth, entre outras.

_posts/2026-02-23-O-problema-N+1.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ tags:
1414
description: Entenda o que é o temido problema de performance N+1, como ele afeta
1515
seu banco de dados e as melhores estratégias para resolvê-lo no Ruby on Rails.
1616
canonical_url: https://ewertoncodes.github.io/backend/performance/2026/02/23/O-problema-N+1.html
17-
published: false
1817
---
1918
Performance é uma das minhas preocupações quando estou desenvolvendo uma aplicação. E um dos problemas mais conhecidos relacionado a performance é o problema N+1. Ele acontece quando temos uma consulta que retorna N registros, e para cada um desses registros, fazemos uma nova consulta para buscar informações relacionadas.
2019

_posts/2026-02-27-gin-sql.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ tags:
1313
description: Aprenda a turbinar o desempenho de suas consultas JSONB no PostgreSQL
1414
utilizando o índice Gin, transformando scans sequenciais lentos em buscas ultrarrápidas.
1515
canonical_url: https://ewertoncodes.github.io/backend/database/2026/02/27/gin-sql.html
16-
published: false
1716
---
1817
![image](/images/jason-drink-gin.webp)
1918

_posts/2026-03-17-heranca-no-ruby.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
- heranca
99
- poo
1010
canonical_url: https://ewertoncodes.github.io/backend/2026/03/17/heranca-no-ruby.html
11-
published: false
1211
---
1312
<img src="/images/treasure.jpeg" alt="Diagrama de Herança no Ruby" width="800" height="300">
1413

_posts/2026-03-27-como-eu-penso-e-escrevo-testes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
- testes
99
- rspec
1010
canonical_url: https://ewertoncodes.github.io/backend/2026/03/27/como-eu-penso-e-escrevo-testes.html
11-
published: false
1211
---
1312
![Como eu penso e escrevo meus testes](/images/xfb6xdd39lglaxle9ns9.png)
1413

_posts/2026-05-04-size-length-count.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ tags:
1010
description: Descubra as diferenças cruciais entre os métodos size, length e count
1111
no Ruby e no ActiveRecord e como eles impactam a performance do seu app Rails.
1212
canonical_url: https://ewertoncodes.github.io/backend/2026/05/04/size-length-count.html
13-
published: false
1413
---
1514
![Size, Length e Count: Qual a diferença?](https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy1w4rtghzi8wrwax5il9.png)
1615

0 commit comments

Comments
 (0)