Aryan Singh This website is a virtual proof that I'm awesome https://aryn.info/ Compress HTML in your Jekyll site Although compressing and minifying CSS and JavaScript is a common practice, doing the same with HTML is usually neglected. I recently discovered jekyll-compress-html, a Jekyll plugin that helps you do just that! Moreover, this plugin is written in pure Liquid, so it does not come with any additional dependencies. Let’s... Fri, 09 Aug 2024 00:00:00 -0400 https://aryn.info/2024-08-09-compress-html-in-your-jekyll-site/ https://aryn.info/2024-08-09-compress-html-in-your-jekyll-site/ Understanding React's useMemo hook React’s useMemo hook is often misunderstood. This is my attempt to explain its usage with a simple example. Here is the code that we are going to start off with, import { useState } from "react"; export default function App() { const [count, setCount] = useState(0); const [text, setText] =... Fri, 30 Jun 2023 00:00:00 -0400 https://aryn.info/2023-06-30-understanding-usememo-hook/ https://aryn.info/2023-06-30-understanding-usememo-hook/