TG
━ archive · 106 entries

The signal, not the noise.

Long-form essays and rapid field notes on AI agents, product engineering, careers, and the craft of shipping.

106 results
mongodbdockerdevops

Deploy cancelled by Out Of Memory: WiredTiger cache in containers

A Dokploy deploy stopped during the Next.js build and was cancelled without a clear error. The cause was memory pressure: two MongoDB instances in containers calculated their WiredTiger cache from the VPS RAM, not from an isolated container limit.

5 min read
rpcgraphqlrest

RPC, REST and GraphQL: the same remote call with different interfaces

In a fullstack TypeScript web app, REST, GraphQL and RPC/tRPC look like three different worlds. But all three serialize data, send it over HTTP and read the response back. They all live on OSI layer 7. What changes is not how remote the call is, it is the mental interface at the top, and the price each abstraction charges. With the tRPC vs Server Action contrast on the same create.

8 min read
aiSoftware Engineeringagents

The harness is the product

WorkOS, Stripe, and OpenAI arrived, through different paths, at the same conclusion about coding agents: senior engineering stopped being about writing code and became about building the harness that makes the agent write code reliably.

6 min read
javaNode.jstypescript

Where Java with Spring Boot still beats Node.js (and where it doesn't)

It is not Java vs Node in the abstract. It is about where the maturity of the Spring ecosystem solves the boring production problems out of the box, the ones Node still puts together piece by piece, and where Node + TypeScript stay the obvious call. With honesty about Virtual Threads, types that vanish at runtime, and what really decides: the requirement.

8 min read
aimachine learningCareer

Back to the fundamentals: I'm taking Andrew Ng's Machine Learning Specialization

Why, after spending every day building with LLMs and agents, I decided to go back to classic ML basics — and what each of the three courses in Andrew Ng's specialization actually covers.

4 min read
aiSoftware Engineering

LlamaIndex: orchestrating your data with LLMs

5 min read
BooksLearning

14 books every engineer should read — and the core lesson of each

Chip Huyen's non-technical reading list, with a summary and the practical takeaway from each book: from complex systems to cryptography, by way of chance, design, and scientific ethics.

7 min read
aiSoftware Engineering

Anatomy of an agent: what tools really are

Starting from Chip Huyen's agents essay and reading the code of an open-source coding agent, we unpack what a tool is, how the model calls it, and why defensive prompt engineering isn't optional.

7 min read
aiagentsmcp

MCP vs CLI: what each is, when to use them and when not to

MCP (Model Context Protocol) standardizes how AI apps discover and use external tools. But not every agent needs MCP — a plain CLI often wins on cost and speed. I walk through what MCP is, the client → server flow, real use cases, when it's overkill, and why CLI beats MCP for popular tooling.

13 min read
aiSoftware EngineeringCareer

My AI journey: from ChatGPT in 2023 to the creative chaos of 2026

How I went from a question-and-answer chat box to an entire agent-driven development workflow — Cursor, Claude Code, Pi.dev, Conductor — and why 2026 is the year to rebuild how we code.

7 min read
airagSoftware Engineering

Why Markdown is the lingua franca of LLMs and what it changes for your RAG

7 min read
aiToolsSoftware Engineering

Conductor: orchestrating multiple AI agents on Mac without the mess

My experience using Conductor to run Claude Code and Codex in parallel inside isolated workspaces, with git worktrees, diff viewer, and merge — without ever opening GitHub.

6 min read
airesearchagents

Reasoning Is Planning: how RAP changes the way LLMs think

How the RAP framework (Reasoning via Planning) turns an LLM into both agent and world model, then uses Monte Carlo Tree Search to unlock deliberate planning — beating GPT-4 + CoT on Blocksworld with just LLaMA-33B.

6 min read
ailocal llm

llama.cpp hits 100k stars: the local agents era has begun

Why llama.cpp's milestone and Pi running Qwen3.6 on a MacBook in airplane mode mark the start of the second AI revolution — local, sovereign, and plural.

7 min read
frontendreactNext.js

Lenis in Next.js: how 19 lines turned the site's scroll cinematic

The site's scroll was native, hard, with that 'step-step-step' feel on long pages. I dropped in Lenis via ReactLenis root and it locked into the rest of the redesign without hijacking the page, without breaking anchors, and without fighting prefers-reduced-motion.

5 min read
postgresDatabaseai

In 2026, use Postgres — until requirements say otherwise

10 min read
aiSoftware Engineeringtutorial

How to build a GenAI platform: a 7-layer tutorial

A practical walk-through to evolve a generative AI app — from a single model call to a full platform with RAG, guardrails, gateway, cache, agents, observability, and orchestration. Based on Chip Huyen's essay.

8 min read
aimachine learningSoftware Engineering

Why Python and PyTorch dominate ML inference

Python is the glue language, PyTorch won on eager mode, and almost no one serves raw PyTorch in production. The rationale behind today's default ML stack.

4 min read
aiSoftware Engineering

What is an agent, actually?

An honest definition of AI agents, distilled from Chip Huyen, Anthropic, and Cedric Chee: perception plus action in an environment, with tools, memory, and a decision loop.

6 min read
airagSoftware Engineering

RAG end to end: Input, Retriever, and Generator explained

A dense overview of RAG (Retrieval-Augmented Generation): what it is, why it matters, what Retrieval, Augmented, and Generation mean, the offline ingestion pipeline, the online query flow, embeddings, cosine similarity, HNSW, and chunking.

13 min read
aiSoftware Engineering

The AI Engineering Stack: an applied summary

7 min read
aiInfrastructure

Pinecone: the default vector database for RAG

What Pinecone is, when it makes sense, how it works, and the trade-offs against pgvector, Qdrant, Turbopuffer, and Upstash Vector.

4 min read
aiDatabasepostgres

pgvector + Aurora PostgreSQL for embeddings: why I picked it (and how I use it)

The rationale for choosing Aurora PostgreSQL with pgvector over a dedicated vector database, plus a hands-on setup, indexing, and query guide using Drizzle.

11 min read
aiToolsopen source

GoodAIList: the living map of open-source AI repositories

Why Chip Huyen's GoodAIList became my go-to lens for tracking the open-source AI ecosystem — and how to actually use it.

3 min read
aiSoftware Engineering

6 common pitfalls when building generative AI applications

Notes and commentary on Chip Huyen's essay — the predictable mistakes teams make when moving from LLM prototype to production.

4 min read
InfrastructureArchitectureSoftware Engineering

Leaving the cloud: why 2026 is the year of the bare metal comeback

5 min read
aiSoftware Engineering

AI stack trends across 7 companies: what The Pragmatic Engineer actually shows

AWS Bedrock, Postgres with pgvector, LangChain, and the move down to the metal: the useful read isn't the list of tools — it's the curve they trace.

4 min read
productSoftware Engineeringai

PRD vs SPEC: which one to write first (and why with AI it matters more)

The practical difference between a Product Requirements Document and a Technical Specification, the natural flow between them, and why skipping the PRD in the AI era is the fastest path to shipping the wrong thing.

4 min read
aiagentsKnowledge Management

LLM Wiki: Karpathy's Idea for Real Memory in AI Agents

Karpathy proposed swapping RAG for a persistent wiki that the LLM maintains on its own. Why it reframes the agent memory debate, and what Fabio Akita adds about the practical side.

7 min read
aiSoftware Engineeringprogramming languages

What would the best programming language for AI agents be?

Akita asked the uncomfortable question: what if the ideal language were built for LLMs to edit, not for humans to read? My bet is the answer is not a new exotic language, but gradual contracts on top of something models already write well.

9 min read
frontendcsssvg

Volumetric light, fog rings and 3D parallax: rebuilding the hero in pure CSS/SVG

13 min read
aiSoftware EngineeringTools

The MacBook and the minimalist distro: why 2026 is the year to test AI tools

A reply to Akita about oh-my-pi and OpenCode. The Linux analogy works — but maybe Claude Code is the MacBook, and Pi is the minimalist distro you admire but can't keep maintaining.

6 min read
CareerSoftware Engineering

I fear regret more than failure

A personal reflection on leaving stability, pursuing an international tech career, and accepting that some decisions are still worth it even when they hurt.

5 min read
designaiSoftware Engineering

The new visual identity of my website and blog: Futurist Minimalism + Agentic AI

The rationale behind the redesign: palette, typography, visual primitives, and engineering decisions to make the website more distinctive, modern, and alive.

4 min read
aiSoftware Engineering

Harness Engineering: what makes AI agents ship real software

Better models help, but the real quality leap in coding agents comes from the environment around them: context, sensors, memory, gates, and orchestration.

8 min read
CareerSoftware Engineering

Software Developer/Engineer Career Levels

13 min read
Software EngineeringCareer

Imposter Syndrome in Tech

A reflection inspired by Julie Pagano's talk on insecurity, anxiety, confidence, and the invisible monsters that follow people through tech careers.

9 min read
aiSoftware Engineering

Agent Harness Engineering in practice

Why coding agent performance depends more on the harness than on the model alone, and how to apply that in day-to-day engineering.

5 min read
gitToolsagents

Git Worktree: The Standard for Juggling Multiple Features and Running Agents in Parallel

Many working trees, one repository. How git worktree kills destructive context switching, runs multiple AI agents in parallel, and why it beats cloning the repo by hand.

8 min read
aiSoftware Engineering

Vibe Coding vs Agentic Engineering

A quick and simple look at the difference between vibe coding and agentic engineering.

2 min read
mongodbDatabasejavascript

Avoiding In-Memory Aggregation and Overfetching in MongoDB with Prisma

9 min read
reactNext.jstutorial

Getting Started with Next.js 15

Learn how to build modern web applications with Next.js 15, the latest version with App Router and React Server Components.

3 min read
typescriptreact

TypeScript Tips for React Developers

Essential TypeScript patterns and tips that will make your React code more type-safe and maintainable.

4 min read
react nativeui

How to Add Blurred Text in React Native

A stylish way to hide information in your React Native app using BlurView.

3 min read
backendArchitecture

Organizing Your Backend: Services or Helpers?

The difference between services and helpers, and how to organize them in your backend folder structure.

2 min read
javascriptasync

Using for await...of to Iterate Sync and Async Arrays in JavaScript

4 min read
gitBest Practices

Conventional Commits in Practice: Patterns for a Better Git History

Hands-on guide to writing better commit messages with Conventional Commits — types, scope, examples, and a cheat sheet.

3 min read
reactjavascriptperformance

AbortController: Manage Memory Efficiently in React

How to use AbortController to cancel fetch requests and prevent memory leaks in React components.

3 min read
javascriptreactValidation

How to Validate US Shipping Addresses with JavaScript and React

Two approaches to validate US shipping addresses: Google Maps Geocoding API and client-side validation with React Hook Form + Zod.

7 min read
monorepoviteNext.js

Sharing Env Vars in a Monorepo with Vite and Next.js

Keep a single .env.shared at the root of your monorepo and generate per-app .env files with the right Vite and Next.js prefixes.

3 min read
LearningProductivity

How to Learn Quick

2 min read
Software Engineering

What Is Technical Debt?

What technical debt is, when it happens, and how to manage it so it doesn't drag your software down.

2 min read
Database

How to create a custom random ID with Postgres

Helper function for creating a custom random ID like a9Kl12

2 min read
web3

Web3 - What to build?

Know about what kind of solutions you can build using web3 technology

1 min read
githubherokumonorepo

How to Deploy a Monorepo with TurboRepo on Heroku

Github + Monorepo + TurboRepo + Heroku

8 min read
github

How to merge two or more repos into a new one without losing the history of commits

4 min read
healthy

Becoming a fitness Dev

The Five Do's for good daily habits that you should begin today.

1 min read
react

React Suspense - in the right way

Study case about how to use React Suspense

19 min read
web3

Basic Wax blockchain

Useful links, sample code about how to interact with

3 min read
Career

How to get the first job

What I tell to my mentees - Tips to getting a Job

5 min read

Using find with delete flag

1 min read
Miscellaneous

Expansion Week at Rocketseat

To infinity and beyond — second edition of EW/RS

23 min read
javascript

Understanding Falsy and Truthy values in JavaScript

Both concepts are very common and essential for JavaScript Developers. They are widely used in Back-end and Front-end Apps.

5 min read
Miscellaneous

My First Next Level Week at Rocketseat

Impressions and reflections on Rocketseat's Next Level Week

5 min read
git

Renaming a Branch in Git

Commands to rename a local and remote branch in your git/GitHub repository

1 min read
Development

Types of Parameters in REST Requests

3 min read
mobile

Quick Tips about React Native

Some quick tips for React Native beginners and I recommend a nice podcast

4 min read
mobile

How to install React Native with Typescript

I'll show how to install React Native with Typescript

2 min read
Development

Introduction to GraphQL with NodeJS and MongoDB

Get started with GraphQL on a Node.js backend backed by MongoDB — schema, resolvers, queries and mutations from scratch.

13 min read
Development

How to access Redis from inside Docker and run queries

Connect to a Redis container and inspect keys/values with the redis-cli

3 min read
mobile

GoBarber - Mobile App with React Native

15 min read
mobile

Using react-native-vector-icons in React Native - ANDROID

How to set up and use react-native-vector-icons on Android in modern React Native projects

2 min read
web

GoBarber Web - Frontend Application with React

My class notes and code from the Rocketseat bootcamp; in this project we build a frontend that consumes the GoBarber Node.js API

33 min read
Development

React Hooks + Redux (useSelector) + Unform

Boosting productivity with React Hooks + Redux (useSelector) and Unform

2 min read
Development

React and Redux Hooks API: a practical guide

Let's continue the GoBarber app and learn some advanced techniques and best practices.

26 min read
Development

Flux Architecture: A Rocketshoes E-commerce

53 min read
javascript

Meet Polished: a JS library for color manipulation

I really enjoyed lightening and darkening colors with the polished library — it pairs nicely with Styled Components for component styling.

1 min read
mobile

Introduction to React Native

How to set up webpack, babel, and the CSS and image loaders, plus the main React lifecycle methods

34 min read
mobile

Using react-native-vector-icons in React Native - iOS

How to install and use react-native-vector-icons on iOS with React Native 0.61+ (autolinking).

2 min read
Development

First Project with ReactJS

Let's build an app with React and Styled Components that fetches a repository from GitHub, persists it to localStorage, and lets us view its GitHub issues.

13 min read
Development

Introduction to React

24 min read
Development

Continuing the GoBarber API

Let's continue the GoBarber application and learn some advanced techniques and best development practices.

36 min read
Development

GoBarber - Backend Application

My class notes and code from Rocketseat's bootcamp — in this project we build an API with NodeJS

30 min read
Development

Creating a Node.js project

See how easy it is to bootstrap a Node.js project in Visual Studio Code

13 min read
Development

Node.js Concepts

An overview of the Node environment, NPM, Yarn, the Event Loop, the Call Stack, and more

7 min read
Development

My Development Environment

4 min read
Development

Ignoring git status when file or folder permissions change in a git-versioned project

If someone runs chmod 777 -Rf * on a project directory or ...

1 min read
Development

How to keep your repository updated with main project

How to keep your repository updated with main project

2 min read
javascript

Higher-Order Function with Reduce

Higher-Order Function with Reduce — Recompose's Compose explained

6 min read
Miscellaneous

Ten Rules for Achieving English Fluency

I read this ebook: 10 Rules for achieving English Fluency, and I really appreciate it. Then I wanna share with you ones, check it out:

1 min read
javascript

High Order Functions — Easy Mode

5 min read
Development

Finding and Sorting Records by Date in Mongo with Meteor

A quick tip on Meteor's Mongo sort syntax and why it differs from the raw MongoDB query.

2 min read
Development

Downloading npm packages behind a proxy

How to install npm packages from inside a network with a proxy.

1 min read
Development

How to install Node.js via binary archive on Linux?

How to install Node.js via binary archive on Linux?

1 min read
Miscellaneous

Help for learning English

A technique for internalizing English content

3 min read
Miscellaneous

Practice Itself

5 min read
Development

Creating a Code Snippet in VSCode

See how easy it is to create a boilerplate in Visual Studio Code

1 min read
Miscellaneous

Basics of Component Composition

Fundação Bradesco course, free online course

3 min read
Development

Importing and exporting files in MongoDB with Meteor

Import/Export files in MongoDB using Meteor to handle the import flow

4 min read
javascript

Reading Tip - JS Cangaceiro

Reading tip: Cangaceiro JavaScript, an adventure in the backlands of programming

4 min read
Development

Configuring a custom domain for GitHub Pages

1 min read
Miscellaneous

Computer Scientist

My graduation ceremony for the Bachelor's in Computer Science at Uniderp in Campo Grande/MS

4 min read
Miscellaneous

Parallel Processing and Distributed Systems

chat_ppsd project — Parallel Processing and Distributed Systems

1 min read
Miscellaneous

A logic book with OO in Java

Reading tip: Applying Object-Oriented Logic in Java

2 min read
Miscellaneous

Emulating your apps directly from the phone

Emulating your apps directly from the phone

1 min read
Miscellaneous

PostgreSQL Course

1 min read