Learn Cyber Security from top-rated instructors. Find the best Cyber Security Courses and path for your level and needs and take your first steps in becoming a cyber security expert . Learn how to Securing Code, Code Auditing,Exploit Development,Malware Analysis
Serverless Web Application with Lerna and Webpack
In this Guide we will learn how to write Serverless services in Monorepo style.
When I tried to write a solutions combine Serverless, Webpack and Lerna together, I can’t find any good guide how to do this, then, after …
3 Best NodeJs Courses & Certification 2020 Online[Feb]
Looking for Best NodeJs Courses, this 3 courses will teach you to combine the ultra-popular NodeJs ,React, Redux, Express, and MongoDB technologies to build a fullstack web application.
1. Node with React: Fullstack Web Development
Server Error status Codes
Server Error status codes
Server error status codes indicate that the request was valid, but an error on the server is preventing its fulfillment.
Table Of Contents
500 Internal Server Error
501 Not Implemented
502 Bad Gateway
503 Service …
Developer Learning Through His Development Life Cycle
My learning curve over the last ten years of doing development was not only about success. Most of the time, I was failing (hard). But if you never fail, you will never experience growth! So I’m a happy failure in
Vuex is a state management pattern + library for Vue.js applications
What is Vuex?
Vuex is state management library for Vue.js. Basically, you have one central area (store) in your app that controls the global state.
…Vuex is a state management pattern + library for Vue.js applications. It serves as a
why wordpress is so popular
“Almost 20% of the site on the Internet is powered by WordPress” Yes, you heard it right, it’s such a big number. There are more than 1.74 billion+ website on the Internet and 20% of it is just insane, that …
How can we Secure Data with Hashing?
How can we Secure Data with Hashing?
Hashing drastically increases the security of the data. There is no way to decrypting the data because we are not encrypting it. As I mentioned already it’s a one-way cryptographic function. A cryptographic …
How to create a MySQL connection and run queries with Python3
We will use pymysql to connect to MySQL in Python3. First, you have to install the module using pip or pip3:
pip install -U pymysql
pip3 install -U pymysql
Then you can use this code to connect to your …