Aprenda programação, IA e engenharia
Tutoriais aprofundados sobre linguagens de programação, desenvolvimento web, machine learning, algoritmos, robótica e hardware — gratuitos e abertos a todos.
Explorar categorias
Linguagens de programação
Tutoriais de Python, C, C++, Java, JavaScript, TypeScript, Go, R e Haskell — da sintaxe básica às técnicas avançadas.
Desenvolvimento Web
Guias e projetos de HTML5, React, Angular, Next.js, Vite e desenvolvimento frontend moderno.
Desenvolvimento Backend
Desenvolvimento no lado do servidor com Node.js, NestJS, Spring Boot, Python, sockets, Nginx e integração de pagamentos.
Algoritmos e estruturas de dados
Ordenação, árvores, hashing, algoritmos de grafos, KMP, prática de LeetCode e análise de algoritmos.
IA e Machine Learning
Machine learning, geração aumentada por recuperação (RAG), aplicações de IA e web crawling.
Bancos de dados
Projeto de bancos de dados SQL e NoSQL, consultas, otimização e exercícios práticos.
Fundamentos da computação
Organização de computadores, sistemas operacionais, fundamentos de Linux e teoria essencial da computação.
Hardware e sistemas embarcados
Arduino, RISC-V, MSP430, PLC, drivers de Linux e engenharia de sistemas embarcados.
Robótica e sistemas autônomos
ROS 2, robôs humanoides, drones e sistemas de veículos autônomos.
Redes e DevOps
Redes de computadores, TCP/IP, pipelines CI/CD e prática de DevOps.
Desenvolvimento móvel
Tutoriais de desenvolvimento de aplicativos Android e iOS.
Finanças quantitativas e Blockchain
Finanças quantitativas, sistemas de trading e tecnologia blockchain.
Projetos e estudos de caso
Projetos reais: microsserviços de gateway de pagamento, aplicações full-stack, backends Django, sistemas RAG e mais.
Artigos recentes
Comprehensive Machine Learning & Deep Learning Curriculum
A complete set of professional, textbookquality teaching PDFs covering a depthfirst path from mathematical foundations to production deep learning — written for someone who already codes well but wants real understanding
Ler artigo →Preface: how to use this book
For most of the 1990s and 2000s, if you wanted the best off-the-shelf classifier, you reached for a Support Vector Machine. SVMs combined a beautiful geometric idea — separate the classes with the — with deep optimizatio
Ler artigo →Formulas, Kernels, and Hyperparameter Reference
A compact reference for the formulas, kernels, and knobs used throughout the book.
Ler artigo →What Are Support Vector Machines?
Imagine two groups of points on a page and a ruler you must lay down to separate them. Many positions work — but which is ? A Support Vector Machine answers: the line that leaves the between the groups. That single insti
Ler artigo →The Maximal Margin Classifier
Now we make the widest-street idea precise. For data that be perfectly separated by a line, the maximal margin classifier (the hard-margin SVM) is the cleanest version of the story: a little geometry turns ``make the str
Ler artigo →Soft Margins and Slack
Real data overlaps, contains noise, and is rarely perfectly separable. The — the model people actually use — relaxes the hard constraints by allowing a controlled budget of margin violations. This single change makes SVM
Ler artigo →Hinge Loss and the Primal Problem
We ended the last chapter with a striking reformulation: the soft-margin SVM is just L_2 regularization plus a special loss. That loss is the , and viewing the SVM as ``minimize regularized hinge loss'' (the problem) dem
Ler artigo →Lagrangian Duality and the KKT Conditions
The primal view trains SVMs by gradient descent, but it hides two treasures: support vectors appear, and the kernel trick becomes possible. Both emerge when we rewrite the SVM through . This is the most mathematical chap
Ler artigo →The Kernel Trick
Here is the idea that turned a linear classifier into one of the most powerful tools in machine learning. A linear SVM can only draw straight boundaries — useless for data shaped like rings or spirals. The lets the very
Ler artigo →