Goal: standardize how you think, communicate, and de-risk architecture so you can drive bigger outcomes with less friction.
If you can’t communicate the design, you don’t have a design.
Goal: standardize how you think, communicate, and de-risk architecture so you can drive bigger outcomes with less friction.
If you can’t communicate the design, you don’t have a design.
Current Role: Principal Engineer (App/Dev Focus)
Target Role: Enterprise/Platform Architect (Infrastructure, Governance & Strategy Focus)
Core Philosophy: "Mechanics over Magic." Shift focus from building code to governing the ecosystem.
This runs continuously alongside the technical phases.
https://www.louisbouchard.ai/from-zero-to-hero-with-llms/
Goal: Design, build, secure, and operate production-grade RAG systems integrating enterprise data, using vector DBs, and applying adapters as needed.
Outcome: Understand LLM fundamentals, embeddings, chunking, RAG architecture, and prompt basics.
This curated list focuses on essential AI/ML knowledge to help you architect, lead, and guide AI/ML initiatives, without going deep into model-building.
Become proficient in designing, implementing, and managing solutions on Microsoft Azure, focusing on both enterprise architecture and cloud infrastructure.
To understand core ML concepts, build simple models, and integrate them with .NET & Azure.
Leverage Generative AI and pre-trained ML models using APIs/SDKs (OpenAI, Azure, HuggingFace, etc.) to:
| public class Solution { | |
| public int EdgeScore(int[] edges) { | |
| long[] deg = new long[edges.Length]; | |
| long max = -1; | |
| for(int i = 0; i < edges.Length; i++) | |
| { | |
| deg[edges[i]]+=i; | |
| max = Math.Max(max, deg[edges[i]]); | |
| } | |
| public class Solution { | |
| public int ArithmeticTriplets(int[] nums, int diff) { | |
| var set = new HashSet<string>(); | |
| int i = 0; | |
| int n = nums.Length-1; | |
| int c = 0; | |
| while(i <= n-2) | |
| { |