Introducing MDSLIDE - Create Minimalistic Slide Presentations powered by Markdown. ๐
Auth0 Hackathon Submission

Search for a command to run...
Auth0 Hackathon Submission

Recoil is an experimental state management library for Reactjs made by Facebook developers. It solves the issues faced by developers using just React's state management features. Why use Recoil? โญ Minimal and Reactish : Recoil works and thinks like...

Table of Contents Introduction Motivation Examples and Code Bulb Vending Machine Learning Resources Introduction A finite state machine (sometimes called a finite state automaton) is a computation model. Finite state machines can be used to mod...

#1 Prefer unknown over any See this example on how any could go wrong. const a: any = "dhslkd" a.someMethod() // Runtime Error: a.someMethod is not a function Oops! a does not have the someMethod but typescript doesn't care. Let's try the same but ...

Nodejs is Awesome! What makes Nodejs great is not just that it's a javascript runtime but also its event-driven architecture and non-blocking IO. In Nodejs Almost everything except your code is concurrent The code that you write is single-threaded....

Introduction Publish/Subscribe is a messaging pattern in which the subscribers can subscribe to any number of topics (aka channels) and they would be notified when a message has been published in one of those topics. Pub/Sub is like the popular frien...

I have been developing in Javascript(Typescript) and it's ecosystem for little more than a year now. After publishing my first simple go package, here are what I love about Golang! It's Simple I found Golang code more readable and simple. There are c...
