TTypeCintypec.hashnode.dev·Apr 2, 2023 · 9 min readExploring GraphQL: A Developer's PerspectiveIntroduction to GraphQL In the past, developers had to choose between using REST APIs or SOAP APIs to build their applications. REST APIs were great for simple applications with straightforward data requirements, while SOAP APIs were better suited fo...00
TTypeCintypec.hashnode.dev·Apr 1, 2023 · 12 min readBreaking the Chains of Self-Doubt: Overcoming Imposter SyndromeChapter 1: The Unwelcome Guest I've always been passionate about software engineering. I love the feeling of creating something from scratch and solving complex problems. So, when I landed my dream job at a top tech company, I was thrilled. But as so...00
TTypeCintypec.hashnode.dev·Mar 30, 2023 · 2 min readThe Benefits of Using TypeScript in Your ProjectsWelcome back to my post about TypeScript. If you're new to TypeScript, check out my previous post here. This will be a very short post on the benefits of TypeScript and why you should use it in your projects. TypeScript is a powerful programming lang...00
TTypeCintypec.hashnode.dev·Mar 29, 2023 · 12 min readGetting Started with TypeScript: A Beginner's GuideIntroduction to TypeScript TypeScript is a statically-typed superset of JavaScript that was developed by Microsoft in 2012. It adds features to JavaScript such as optional static typing, classes, interfaces, and type annotations that are not availabl...00
TTypeCintypec.hashnode.dev·Jan 29, 2023 · 1 min readHow to easily create URL parameters using searchParams in JavaScriptWhat are URL parameters? URL parameters are just a way to send information to perform certain tasks such as filtering, sorting, translating, describing etc. ❌ How do we do it? You might have seen people encoding URL parameters like this const url = ...00