rssed

a collection of dev rss feeds - blogroll

Add a new feed


Syntackle

Posts

Static Sites Are Good πŸ”—

Gone are the days when you had to wait for quite a long time to fetch a server rendered HTML page. Single page applications (SPA) try to solve this pr [...]

Quokka in VS Code β€” JavaScript Debugging Made Simpler πŸ”—

Quokka.js is an awesome tool for prototyping your javascript code with the power of an instant inline output. It lets you code and see the output as y [...]

Issue With Watching File Changes in Docker πŸ”—

Days ago, I was struggling to get live reloading (HMR) working for the code mounted in a docker volume. Volumes in docker serve the purpose of persist [...]

Chrome 121 Broke My CSS By Adopting New Scrollbar Properties πŸ”—

Recently, in version 121, Chrome started supporting standardized CSS scrollbar properties scrollbar-color and scrollbar-width mentioned in the CSS spe [...]

rssed β€” Become A Developer Beyond Bookmarks πŸ”—

RSS a.k.a Really Simple Syndication is a great technology to subscribe to website content. You can get the latest updates published on a website by pa [...]

Advent Of Code 2023 - Day Four Solution πŸ”—

It felt easier than the previous one to be honest, especially the first part. The puzzle is quite simple. For a given number of scratchcards, there ar [...]

Web Components & Custom Elements πŸ”—

Those familiar with React or any other javascript framework, are already aware of the component based architecture. You break the UI into re-usable pi [...]

Advent Of Code 2023 - Day Two Solution πŸ”—

Just wrapped up solving advent of code's day two challenge. This was a tricky one in terms of the language used to describe the puzzle. I had to take [...]

Completed Advent Of Code: Day One πŸ”—

Advent of Code 2023 is here and I just completed its day-one challenge. Overall, it was fun to play with strings and numbers in javascript. Without an [...]

App Defaults 2023 β€” What I use πŸ”—

The other day, I stumbled upon a post by @robb which in turn led me to this post about app defaults. Following the spree, here's my list of all the ap [...]

Elegant Console Logs With Consola πŸ”—

Console logs are not always well structured and eye-pleasing. Unpleasant and messy console takes away from the bliss of a developer. I recently came a [...]

Sharing Localhost From VS Code - Port Forwarding πŸ”—

Showing off what you built locally has never been easy. Sending localhost:3000 as a URL is like declaring a war. Hey, I built a website! [...]

Docker β€” Containerizing a Nextjs Application πŸ”—

Containerization in it's entirety is an incredibly useful concept. From being able to execute applications in isolation, to being able to port them ea [...]

WebSockets 101 πŸ”—

WebSockets implement a full-duplex, bi-directional, TCP-based protocol, denoted by ws(s)://, which enables a persistent connection between the client [...]

Builder.io's Partytown with 11ty πŸ”—

Third party analytics scripts are generally included in the head section of HTML. It poses a performance threat because of render blocking nature of t [...]

Why I love Markdown πŸ”—

Markdown is one of those languages to which I was introduced when I started using github for hosting my projects. The famous README.md file got me int [...]

What is DOM diffing? πŸ”—

DOM, also known as the Document Object Model, is a programmatic representation of the contents of a web page. In other words, the content of a web pag [...]

Using Fontsource With 11ty πŸ”—

Dealing with fonts can get quite overwhelming. For quite some time, I was searching for a way to self host google fonts because the google fonts API's [...]

Creating Git Hooks Using Husky πŸ”—

Hooks in git are nothing but some code which can be executed at specific points during git execution process. They are used to verify everything is as [...]

Setting Background Color of Body Dynamically in React πŸ”—

In a single page application, you only have one body element and although you can specify the background color of body in a global stylesheet, it's no [...]

Minify JavaScript Using Terser πŸ”—

Terser is a javascript compressor and mangler supporting ES6+ specification. In this tutorial, you will get to know how to use terser to minify or com [...]

Deploying React App to Netlify πŸ”—

A react app is a single page application which means that there's only one document i.e. index.html file which is updated using javascript as per the [...]

Adding Custom Anchors to Headings in Markdown - Eleventy πŸ”—

Anchors are nothing but id attributes applied to an element to link to it using href attribute internally on the same page. By default, 11ty uses mark [...]

How to vendor prefix and minifyΒ CSS? πŸ”—

Writing CSS from scratch along with adding vendor prefixes can be a daunting task if done manually. Vendor prefixes can be easily added using the auto [...]

Eleventy - Shortcode for Embedding Codepen πŸ”—

Don't know what eleventy is? Before you read further, check out this amazing series of articles by Tatiana Mac to know more about eleventy and static [...]

5 Most Useful Visual Studio Code Extensions πŸ”—

Here are the five most useful Visual Studio Code extensions to improve your workflow as well as developer productivity! Error Lens CSS Peek GitLens Im [...]

Create and Deploy an Express.js App to Vercel πŸ”—

Vercel is a platform to host frontend applications and static sites but you can also host an express app using serverless functions. Supported framewo [...]

Optional Chaining in JavaScript πŸ”—

Optional Chaining in JavaScript is used to return undefined for accessing an object property that doesn't exist and whose parent property is nullish ( [...]

How to compile SASS into CSS and watch for changes? πŸ”—

SASS extends CSS which means that you can have all the features of CSS plus the features of SASS just like a cherry on top of a cake! Browsers don't u [...]

IIFE in JavaScript πŸ”—

You might be familiar with functions in JavaScript. An IIFE (Immediately Invoked Function Expression) is a special type of function which is invoked i [...]

How to make a QR Code generator using JavaScript? πŸ”—

While you can generate QR codes for URLs in browsers such as Chrome, it's always interesting to learn how you can make your own version of a simple QR [...]

Skeleton Loading for Social Media Embeds using CSS and JavaScript πŸ”₯ πŸ”—

Note: This post is inspired by Web Dev Simplified. Social media embeds take some time to load and render, hence the user experience is not so good! He [...]

How to create Google's Material Design Text Input Field using CSS and JavaScript? πŸ”—

In this tutorial, we are trying to recreate Google's text input field animation and design from scratch with the help of CSS as well as JavaScript. HT [...]

How to create an HTML generator with JavaScript? πŸ”—

Before you proceed:- This post is not about creating a safe or the best HTML generator rather it's just something for fun that you can try by using te [...]

Dark mode toggle animation using CSS! πŸ”—

This tutorial will mainly focus on how to use transitions in CSS and make a toggle button for light as well as dark mode using little JavaScript. Let' [...]

How to create a notification badge with CSS? πŸ”—

Notification badges annoy me most of the times by popping up every now and then and I am pretty sure most of you experience similar thing, but anyways [...]