DPDeepak Paiinblog.debugpai.com·Oct 6, 2025 · 7 min readHow to Save on Taxes with Pension Accounts in the NetherlandsI want to share what I have learned about the Pension system in the Netherlands and how a lot of folks do not know about the tax benefits that exist around it. Disclaimer: I’m not a financial advisor. This is not financial advice. I’m only sharing my...00
DPDeepak Paiinblog.debugpai.com·Aug 26, 2025 · 8 min readSpeed Matters: How Amazon.com Achieves Lightning-Fast Page LoadsIn this article, I want to go over how amazon.com is optimizing their page load performance and how you can benefit from some of the strategies that they’re using. Why amazon.com? As of writing this article, Amazon has a lighthouse score of 97 on per...00
DPDeepak Paiinblog.debugpai.com·Dec 6, 2020 · 8 min readUnderstanding how Apollo Cache normalizes dataApollo uses a cache layer for its queries. By default, before executing a query, first the cache is accessed and if its not present in the cache then it makes a network call. This is called the cache-first fetch policy. You can find other fetch polic...00
DPDeepak Paiinblog.debugpai.com·Nov 8, 2020 · 4 min readAliasing Preact correctly for Server Side RenderingReact has become the most modern front end library. However there is a pretty big disadvantage of using it. react and react-dom library together make up 38.6kB minified and gzipped (version 16.13.1). This is quite a significant cost to pay on mobile ...00
DPDeepak Paiinblog.debugpai.com·Oct 26, 2020 · 6 min readDefining type policies during runtime in ApolloApollo InMemoryCache type policies are used to define field policies for local state, to customize identifier generation by type or to define a custom merge function for the cache. The standard way of doing this is by defining the type policies durin...00