h.shadowtime2000.comUsing Data URLs to Load Dependencies in DenoRecently Deno released 1.7.0 which had support for data URLs. I think this is a pretty cool way to dynamically create modules on the fly when paired with import(). This could be used to dynamically load all the dependencies we want to use in our file...Jan 31, 2021路4 min read
h.shadowtime2000.comWhat is Cache Busting?Cache busting is a technique so that browsers can have long caches on files while having them reload files when they change. Before you can understand that, you have to understand how caching works with websites. Caching Your Website When you want br...Jan 30, 2021路4 min read
h.shadowtime2000.comTagged Template Literals in a NutshellHi, in this post I will be writing about tagged template literals. Tagged template literals are like normal template literals but with more control given to functions you pass these as parameters to. Syntax The syntax for tagged template literals is ...Jan 27, 2021路3 min read
h.shadowtime2000.comSimple Chakra UI CardSimple Chakra UI Card I am currently creating a blog with Chakra UI, so I need a card which can be created with it. This is just basically a small snippet. The Card function BlogPost() { return ( <Box maxW="sm" borderWidth="1px" borderRadius="l...Jan 17, 2021路1 min read
h.shadowtime2000.comList of JS Bundlers 馃殌List of JS Bundlers In my previous article about ES6 tree shaking a reader commented suggesting that I add a list of bundlers that support tree shaking to the bottom of the article. Instead I am going to create a list of JS bundlers. Webpack Rollup...Jan 12, 2021路1 min read