Anatomy of an Odoo Module
Series: Odoo 18 Development for Python Developers Target Audience: Python developers who are new to web development and want to […]
Series: Odoo 18 Development for Python Developers Target Audience: Python developers who are new to web development and want to […]
Series: Odoo 18 Development for Python Developers Target Audience: Python developers who are new to web development and want to […]
Project Requirements Review Over the past 17 lectures, you built a blog platform piece by piece — each lecture adding […]
Building a Production JAR with Maven The Executable JAR Spring Boot packages your entire application — code, dependencies, embedded Tomcat […]
Identifying Performance Bottlenecks Before optimizing anything, you need to know what is slow. Premature optimization — fixing things that are […]
Testing Pyramid — Unit, Integration, End-to-End Why Test? You have built a blog API with authentication, file uploads, pagination, and […]
Why API Documentation Matters You have built a fully functional blog API with authentication, file uploads, validation, and pagination. But […]
Handling Multipart File Uploads What is a Multipart Request? When a browser or API client uploads a file, it sends […]
Session-Based vs Token-Based Authentication In Lecture 11, we configured HTTP Basic authentication. On every request, the client sends the username […]
Web Security Fundamentals — Authentication vs Authorization Before diving into Spring Security, you need to understand two concepts that form […]