Tagged

#tutorial

10 posts

  1. You should version control your dot files

    You know the ones, all those config files sitting in your home directory

    #utility#organization#tutorial
  2. Filling out the same form over & over again

    With a Chrome extension called Autofill

    #utility#tutorial
  3. How to stop using so many optional properties in your React TypeScript props

    Using TypeScript unions to define relationships between props

    #typescript#react#tutorial
  4. How to make your app faster with React's key prop

    A puppy dies every time you set key={index}

    #react#tutorial
  5. How to test TypeScript type definitions with Jest

    You can add tests for your static TS types right next to your regular Jest tests

    #typescript#jest#testing#tutorial
  6. Deploying a Node.js server that uses websockets

    Websockets are really cool for instances when you need real time communication between your users

    #nodejs#websockets#svelte#express#tutorial
  7. Better Next.js SSR with React Query

    How to use React Query to server side render in Next.js without code duplication

    #react#react-query#ssr#tutorial
  8. How to use Gremlin Cosmos DB with Azure Functions

    The story that Microsoft docs, for some reason, refuse to tell you

    #azure#nodejs#gremlin#cosmosDB#tutorial
  9. How to get started with Azure Functions in Node.js

    What I've learned from my confusing initial experience setting up Azure Functions in JavaScript

    #azure#nodejs#javascript#typescript#tutorial
  10. Building an IoC container in C#

    The design and implementation of an Inversion of Control container in C#

    #csharp#ioc#mvvm#tutorial