Writing
Building reliable systems
agent-systemsagentic-aiarchitectureauthenticationconferencedjangomachine-learningnextjspythonreliabilityresearchweb-engineering
Agent reliability is a systems problem, not a prompt problem
April 22, 2026 · 1 min readMost agent failures I see in production are not bad prompts. They are missing boundaries, missing observability, and a planning loop nobody can inspect.
#agent-systems#reliability#architecture
PST2025 Industry Summit: reflections and key takeaways
August 31, 2025 · 7 min readField notes from the 2025 Privacy, Security and Trust Industry Summit: AI as a threat amplifier, cyber attribution, and agentic-AI risk frameworks from TD Bank, Mastercard, and the CIC.
#research#conference#agentic-ai
Role-based access control using Next.js middleware
May 5, 2024 · 6 min readA walkthrough for enforcing role-based page access in a multi-role Next.js App Router app: JWT decoding in middleware, whitelists per role, and redirect logic with the full code.
#nextjs#authentication#web-engineering
Content-based recommendation system with Django and scikit-learn
April 30, 2024 · 1 min readBuilding a content-based recommendation API with Django, Django REST Framework, TF-IDF vectorization, and cosine similarity, with the trained model cached via pickle on app startup.
#django#machine-learning#python