How Pros Automate Repetitive Code using VS CodeWhile Programming, you are bound to encounter Repetitive Code, writing which is a complete waste of time. I am not talking about Non-DRY Code, but Essentials Code that is necessary to be written. An example of this would be connecting State/Dispatch ...Sep 6, 2021·4 min read·64
How to post data from React to Flask.Part 1 Configuring the Flask backend. 1. routes.py Before we continue. Let's alter our Flask routes.py to accept input from the React frontend, then commit the database. We'll add the following lines of code to our routes.py file. @app.route("/add", ...Sep 6, 2021·3 min read·1.5K
Notification API: Show notifications from your web app 🔔Notifications are vital if you want to drive traffic to your web applications. Notifications can be shown even if the user is not active on your website/webapp. Whether you are building an e-commerce website and want to show offers to your user or yo...Sep 5, 2021·3 min read·124
From Zero To Web Developer1. CHOOSE A TEXT EDITOR Choosing a text editor can be so frustrating sometimes, you should choose a text editor according to you needs and the way the software makes a your coding easy. Here I recommend 2 Editors VISUAL STUDIO CODE SUBLIME TEXT 2...Aug 30, 2021·2 min read·120
5 Css Hacks Every Developer Should KnowIDEA CREDIT => @Surreal.dev 1. FIXING AN ELEMENT'S POSITION /* suppose you want to fix your sidebar's position and size. .sidebar { position: absolute; top: 15px; right: 15px; width: 300px; height: 150px; } ** use this method carefully and test...Aug 30, 2021·2 min read·54