News
WWDC 2026 - Build Real-Time Apps and Services with g RPC and Swift
1+ day, 20+ hour ago (1099+ words) If you have ever hand-written networking code to talk to a backend, you know the pain. You read some documentation, design your request and response types, write the URL handling and JSON decoding, and eventually get something that seems to…...
Day 3 " REST API Routes, Models, and Open API Docs in Fast API
2+ day, 7+ hour ago (103+ words) In the previous Day 3 blog, we learned why the backend exists and how to run the Fast API server. Now we will look at the actual API routes inside Plan Pilot AI. This blog focuses on: The goal is to…...
BFS: The Jedi's Shortcut Through the Graph Galaxy
5+ day, 6+ hour ago (672+ words) That's when I realized I was missing a fundamental tool: Breadth'First Search (BFS). It's not just another traversal trick; it's the reason we can guarantee the shortest path in an unweighted graph without having to explore every possible route. Once…...
Open API, ORM, SVG, and Lottie
6+ day, 11+ hour ago (856+ words) An Open API 3. x client generator that turns a spec into typed Codename One code, a JPA-shaped SQLite ORM, JAXB-shaped JSON / XML mappers, build-time SVG and...
Production-Ready Fast API Project Structure (2026 Guide)
6+ day, 18+ hour ago (25+ words) Most Fast API tutorials show you a single main. py file with three routes. That works for a demo. It. .. Tagged with python, fastapi, webdev, tutorial....
Working with Graph QL APIs in Falcon Foundry
1+ week, 15+ hour ago (513+ words) You want to call a Graph QL API from your Falcon Foundry app, and you've just discovered that API integrations only accept Open API specs. Graph QL endpoints don't have Open API specs. So what do you do? The answer…...
Postgre SQL 19 Beta Introduces SQL Graph Queries and Concurrent Table Repacking
1+ week, 22+ hour ago (285+ words) Postgre SQL 19 Beta has been announced, with general availability expected in September, following the project's yearly major-release cadence. This release introduces native SQL Property Graph Queries...
Open API Specs automatisch in saubere Markdown-Doku konvertieren
1+ week, 1+ day ago (615+ words) Testen Sie Apidog noch heute Markdown l'st ein anderes Problem: Es macht die API dort lesbar, wo kein Open API-Renderer l'uft. Es gibt keinen offiziellen Open API-Befehl f'r Markdown-Export. In der Praxis nutzen Teams entweder Konverter, ein eigenes Skript oder…...
Spec-First API Development: Make Your Open API File the Source of Truth
2+ week, 3+ hour ago (338+ words) Here's how to actually do it. Start with a minimal but precise Open API 3. 1 document. Describe the shape of requests and responses, not the implementation. Because this is written before the code, frontend and backend can agree on the contract…...
I built a tool that generates API docs from your source code - no annotations, no server running, no Swagger config
2+ week, 3+ hour ago (552+ words) Before I get into it, yes, I know Fast API gives you /docs out of the box. Yes, I know Spring Boot has Spring Doc. That is exactly why I want to explain what Docu Points actually does differently, because…...