wpding.hashnode.devGo Favor Composition: Struct EmbeddingLet’s explore another Go unique design: Embedding. This post is for first type of embedding: struct embedding, where one struct type embeds another struct type. Coming from an object-oriented programming (OOP) language like Java or C++, the way Go ha...Oct 16, 2025·4 min read
wpding.hashnode.devClaude Code WorkflowHere are some effective prompts you can use with Claude Code following the Explore → Plan → Code flow described in the Anthropic best practices: Explore → Plan → Code 1️⃣ Explore The goal is to build context before diving into coding. Explore: pleas...Jul 24, 2025·2 min read
wpding.hashnode.devAwesome LLM 2506Lex Fridman Interview with the Cursor https://www.youtube.com/watch?v=oFfVt3S51T4 ☁️ AWS Infrastructure Cursor Relies On The team mentions their backend is built on AWS, leveraging its managed services for heavy compute and storage needs. They use:...Jun 21, 2025·5 min read
wpding.hashnode.devLLM Gen AI 101First AI Gen-ed post while chatting with GPT to understand these basic concepts of this space. In large language models (LLMs), tokens and parameters are fundamental concepts that define how the model processes and generates text. Here's a brief expl...Apr 3, 2025·10 min read
wpding.hashnode.devNullable JSON Field Mapping in GORMWhen using GORM to deal with mapping between DB table’s fields to their corresponding struct’s properties, most of the time we can rely on its built-in conventions to just define a simple model struct. For these nullable fields with common types, int...Sep 22, 2024·3 min read