Javascript Using an Array as Function Parameter in JavaScript In Javascript, we often use arrays for storing data, but we can also pass it as arguments to a function. Let's look at how it works. #javascript
💬 How to disable text selection in CSS CSS There are some cases where we need to disable text selection of an HTML element. Let's look at how to do that with CSS. #css
⚡️ Making your own Express Middleware Javascript In Express, middleware is a way to apply certain functionality to specific pages, or just in general. Let's look at how to make your own middleware in Express. #express #node.js #javascript
🧩 Creating a Reusable Tab Component in Vue Vue Tabs are one of the most frequently used UX components on the web and personal devices. Let's look at how to make our own tabs interface with Vue and Javascript. #vue #node.js #javascript
How to get the Full URL in Express on Node.js javascript Getting the full URL in Express requires combining a few different parts of a user's original request object. Let's look at how to create it in Node.js and Express. #javascript #node.js
How to make a Symbolic Link on Linux linux Symbolic links are aliases which link to specific files or folders in a file system from somewhere else. Let's look at how to create them on Linux and Mac #linux
How to send events from a child to parent in Svelte svelte Sometimes, we want a specific element in a child to have an event, but we want to define how that event works in the parent element. Let's learn how. #svelte #javascript
How Intrinsic Type Manipulations work in TypeScript typescript TypeScript provides intrinsic type manipulations to let us change our strings into different formats, like uppercase, lowercase, or capitalized versions of themselves. Let's look at how they work. #typescript
How Template Literal Types work in TypeScript typescript Template literal types let us enforce certain types in TypeScript in the same way we use template literals in normal Javascript. Let's look at how they work. #typescript
How to convert a String to a Number in TypeScript typescript It can be confusing in strongly typed languages switching between types. Let's look at how to convert a string to a number in TypeScript #typescript
How to make Git forget a tracked file now in .gitignore git When a file is tracked, adding it to .gitignore will not cause it to be untracked. Let's learn how to untrack a file which you have recently added to .gitignore. #git #basics
How to add a Blank Directory to your Git Repository git Usually, blank directories are not pushed when you commit and push new code to your repository. Let's look at how to push a blank directory to your git repo. #git #basics