How Discord scaled search from billions to TRILLIONS of messages 馃攳Ever used the search bar in Discord to find an old message? Maybe you searched "meeting link" in your work server. Or tried to find that meme someone shared 2 years ago. Or looked for a conversation with a friend from months back. That simple search ...Feb 3, 2026路8 min read路5
SQL Procedures Security Access ControlHello All, In this thread we will learn about access control security for procedures. Recently I was working on one project in my company where I needed one procedure in the production database along with permissions to execute it with my custom user...Feb 14, 2023路2 min read路23
How to use svgs in nextjs ?I use nextjs a lot whenever I build something. In Nextjs you can't directly use svgs and use it according to your convenience. When I was building one project where I had to import svg and show it in component, Nextjs was not able to show it in the w...Feb 5, 2023路2 min read路184
PolyfillsWhat are exactly polyfills? New built in functions or new syntaxes in javascript, they might not work in outdated browsers. Some javascript engines might not be supporting them. To solve this problem, polyfills comes into the picture. Pollyfill is li...Sep 29, 2022路2 min read路64