kelvinintech.hashnode.devPyTorch Zero to One: Tensors, Matrix Math, and Why Shape Errors Will Humble YouPart 1 of an ongoing series documenting my hands-on journey into PyTorch and deep learning as a software engineer transitioning into AI Engineering. Why I'm Writing This I'm a full-stack software en4h ago·8 min read
kelvinintech.hashnode.devFBP (Fat Polar Bears): The Ice Breaker Strategy for Tech ConversationsEver walked into a networking event, conference, or Slack channel and frozen up? You know you should jump into the conversation, but your brain goes blank. I've been there. Standing in the corner at a tech meetup, watching people discuss frameworks I...Jan 26·5 min read
kelvinintech.hashnode.devMastering Control Flow: switch vs if-else in C#🔁 Use switch when... ✅ You’re comparing one variable against multiple constant values ✅ The values are discrete and predictable (e.g., strings, integers, enums) ✅ You want cleaner, more readable branching than a long chain of if-else if 🔧 Exam...Aug 29, 2025·2 min read
kelvinintech.hashnode.dev🔧 C# Classes, Constructors & Instances — A Mechanic's Guide to OOPAs a former mechanic turned developer, one of the ways I learned to understand object-oriented programming in C# was by treating it like working in a garage. If you've ever fixed up a car, built an engine, or diagnosed why something won’t start, you ...Aug 28, 2025·3 min read
kelvinintech.hashnode.devExploring Implicitly Typed Variables in C#When learning C#, one of the convenient features I discovered is implicitly typed variables. Using the var keyword, you can let the compiler infer the type of a variable based on the value you assign. This can make your code cleaner and easier to rea...Aug 27, 2025·2 min read