test.clanflare.devResizable Div in React: mini projectIntroduction 馃檵 I was trying to make a clone of codepen in React for that I had to figure out a way to create a resizable window to make a 2-pan resizable layout. Here's a sneak peek of what my solution gave me. Code Sandbox preview What we are bui...Aug 22, 2023路4 min read
test.clanflare.devReact Conditional Rendering with AND operatorIntroduction Since I started my React journey I have noticed many people use Else or ternary operators for conditional rendering. But many do not know that The '&&' or 'AND' operator can also be used for conditional rendering. in this blog, ill tell ...Aug 7, 2023路2 min read
test.clanflare.devDocker PostgreSQL: A Beginner's Guide to Running Postgres with EasePrerequisite You should have docker installed, here is official docs on how to install follow it %[https://docs.docker.com/get-docker/] You should have a Docker hub its free. That was all the prerequisites we need, now let's get started 1. Logi...Aug 6, 2023路3 min read
test.clanflare.devPassMan , A Cross Platfrom Password Manager AppTry it at the link below Live App: https://master.d3uii8wyyckpm1.amplifyapp.com/ Demo username and password Username: saketverma831@gmail.com Password: 1234567890 Github: https://github.com/saketverma-03/passman-amplify Introduction 馃檵馃徎 PassM...Jul 30, 2023路6 min read
test.clanflare.devUndefined and Not defined in JS deep Diveundefined = "Variable is there but no value is yet given to it" not defined\= " Variable is not declared" Understanding part console.log("a: ",a); // undefined console.log("b: ",b); // not defined var a = 20; Output : why did this happen,馃 T...Jul 29, 2023路1 min read