AI can generate a thousand articles a minute. But it can't do your thinking for you. Hashnode is a community of builders, engineers, and tech leaders who blog to sharpen their ideas, share what they've learned, and grow alongside people who care about the craft.
Your blog is your reputation — start building it.
12h ago · 17 min read · Prerequisite (Recommended) To understand this article you must know the following: Basic familiarity with Docker and you've run a container before. Basic Go knowledge (It's okay if you can read Go
Join discussion
3h ago · 3 min read · TL;DR No — you cannot run Oracle Exadata on Google Compute Engine, even though GCE uses Google’s Colossus storage system. Colossus improves storage — but it does not replace Exadata’s engineered archi
Join discussion
46m ago · 39 min read · TLDR: Before AQE, Spark compiled your entire query into a static physical plan using size estimates that were frequently wrong — and a wrong estimate at planning time meant a skewed join, 800 small tasks, or a missed broadcast opportunity that no amo...
Join discussion9h ago · 4 min read · Where we are: In Part 1 you set up an environment and built your first agent. In Part 2 you learned what each parameter actually means. Now it's time to get your hands dirty — let's take that default
AArchit commented
15h ago · 4 min read · TL;DR: I stopped relying on blog cover images for my Open Graph (OG) previews. Instead, I wired up Satori and Sharp to generate branded, text-rich social cards programmatically at build time in Astro.
Join discussion
9h ago · 3 min read · Graph Systems Interview: Sharding Is Not Optional—It’s the Performance Lever In large-scale graph systems, sharding isn't optional—it's the primary performance lever. A graph with a billion nodes and 10 billion edges cannot live on one machine, so y...
Join discussion
9h ago · 19 min read · For years I deployed Lambda functions by zipping the dist folder on my laptop and running aws lambda update-function-code from a terminal. It worked. It also failed at 11pm on a Friday when I forgot t
Join discussionCEO @ United Codes
1 post this month#cpp #design-patterns #rust
1 post this monthObsessed with crafting software.
8 posts this monthBuilding backend systems. Occasionally understanding why they work.
1 post this monthSecurity Researcher | Red Team
1 post this monthCEO @ United Codes
1 post this month#cpp #design-patterns #rust
1 post this monthObsessed with crafting software.
8 posts this monthBuilding backend systems. Occasionally understanding why they work.
1 post this monthSecurity Researcher | Red Team
1 post this monthCompletely agree, most failures I’ve seen come from poor context management and unclear data flow, not the model itself. State handling also becomes a major issue when workflows scale, especially with multiple tools and agents interacting. In my experience, debugging improves a lot once you treat it as a system design problem rather than just an AI model issue.
Hmm, I think AI tools are actually pretty helpful, but you still have to double-check everything — they’re not perfect 🙂
Most companies haven't answered a basic question yet: who is accountable when an AI agent takes an action? Until that's resolved, they'll keep defaulting to safe, surface-level AI features instead of truly rethinking workflows. The bottleneck isn't the technology; it's the accountability layer nobody wants to own.
API docs get attention. The frontend/API contract usually doesn't. TypeScript helps, but types lie without runtime validation. The API returns an unexpected null, a renamed field, an edge case you never tested and your types had no idea. Zod fixes this. Parse at the boundary. If the API changes shape, you catch it at the schema. Not in a Sentry alert a week later. We do this with Next.js Server Actions too. The server/client boundary is the natural place to validate. Keep the schema next to the call. Documentation problem and type-safety problem are usually the same problem.
Intersting learning experience. The way you explained Python features makes it easy to connect with real learning experiences.
Really solid walkthrough, Dimitri. The CLAUDE.md approach resonates — I've been doing something similar with project-specific context files for automation workflows, and the difference in output quality is night and day. Curious about your experience with the local Docker setup for Oracle DB 26ai — how does the sync with your cloud DEV database work in practice? That's always been a tricky part in my client projects where we need consistent environments across teams.
As AI applications move into real workflows, the engineering problem changes. It is no longer only about model quality. Teams also need a clearer way to review AI activity, narrow capability boundarie
Interesting direction — this feels like the natural next layer for AI systems once they move from “single model usage” to production-grade a...