Blog
Build Your Own VPN in AWS
AwsCloud computingAnsible
9 Ways to Call a Function in Python
How to call a function in Python?
PythonProgrammingPython3
How to Dump and Restore Databases with mysqldump in an RDS Instance in AWS
A guide on dumping and restoring databases with mysqldump in an RDS instance in AWS.
AWSMySQLDatabase
How to Replace Missing Dataframe Values with a Machine Learning Algorithm
A step-by-step guide to predicting missing data using an ML Algorithm.
PythonMachine LearningDataframe
How to Create a Console UI in Python Using the Rich Library
Trading websocket ticker using EOD Historical Data (EODHD APIs)
PythonEodhdWebsocket
12 Important JavaScript Functions Every Web Developer Should Know
Everything you learn here will speed up your development and save your valuable time!
Javascript
Build a Dark Mode Toggle with JavaScript and localStorage
A brief article explaining how to build a dark mode toggle switch using JavaScript and localStorage.
JavascriptCssWeb development
How to Modularize Code in Vanilla JavaScript using 'import' and 'export'
JavascriptImportExport
How to Get and Set the Value of a Data Attribute with JavaScript
How to get and set the value of the `data-id` attribute of an element with JavaScript.
JavascriptGet setData
A Complete Guide for Reading Files in Node.js
From the title, we clearly know that there are 3 ways to read files in Node. They are known as the promise way, the callback way, and the synchronous way. The Promise way enables us to use the modern…
Nodejs