© 2022 Hashnode
🕚 Temporal API The Temporal API Cheatsheet is a quick reference guide to help you when getting started with the API. It is a learn in public project, where I have been adding methods I have discover…
Cross-site scripting attacks, also called XSS attacks, are a type of injection attack that injects malicious code into otherwise safe websites. An attacker will use a flaw in a target web application …
Start a new Container from an Image docker run IMAGE docker run nginx Start a new Container from an Image and assign it a name docker run --name CONTAINER IMAGE docker run --name web nginx Start a new…
Generate Random String if you will ever need a temporary unique id for something. this one-liner will generate a random string for you const randomString = Math.random().toString(36).slice(2); consol…
To get to it straight - here's some scribbles and tricks around Tree Traversals that will assist you in your problem solving journey. When tree elements are represented in the form of a list: In In-O…
Regular expressions is an extremely useful tool, and like any developer, I use it a lot when working with texts. Since I always forget the syntax related to regular expressions, I thought creating a s…
Gutenberg's documentation has come a long way and it's getting better and better. However, now and then I find myself missing a quick overview of the properties. Thus the idea of a cheatsheet… Here's …
Introduction You build an amazing new project, go to deploy it, and realize it's overly burdened by unwanted dependencies, a bloated environment, and slow wake times. Who hasn't been there? While cert…
Introduction HTML stands for HyperText Markup Language. It is a markup language that allows us to make web pages for websites. It is just a simple text file with a .html or .htm extension. Likewise ot…
Learn vim 👨💻 Open file # Vim vi main.go # Neo vim nvim main.go Save and quiet file :wq Quite file :w Insert text/code i / o Append text/code a Select line Shift + v Copy y Copy line yy De…