Posts

Basics of MySql

What is Database?

JavaScript Interview Questions

Image
 12 JavaScript Interview Questions   1)  What is the difference between the operators '= =' and '= = =' ?     = = compares two variables irrespective of data type while = = = compares two variables in a strict check. Example : document.write(9 = = "9") ;      //  true                                                                                     document.write(9 = = = "9") ;  // false     2) How to Empty an Array in JavaScript ? This code will clear the existing array by setting its length to 0. Example : arrayList.length = 0;   3) What is a higher-order function ?   Higher-order function is a function that accepts another function as an argument or return value. Example :  const firstOrder...

Java 8 vs Java 11

Image
  The latest version the java Development Kit , Java 11 is out. 0 What are the key changes ? New Features First , What new features have been added in the 4 and a half years between the two versions ? 1) Var Keyword  :  The developer - friendly var keyword that came with Java 10 is another feature which helps to reduce the boilerplate coding . By only affecting local variables , the type Inference stope you repeating the same text over and over again. 2) Version String Schema :  Another between the two version is how the version strings are formatted. Versions will not be using a new schema of so   <major>.<minor>.<security>   that rather than something like 11u31 , where the security patch in unknown , you can find out simply by looking at the last value. 3) Modularity :  One of the biggest changes is the modularity introduced with Java 9. Modularity allows for you to split your application into different modules , but also changes h...

Important topics for Programming Languages

Image
 Important topics for JavaScript : JavaScript Prototype JavaScript(ES6) Class JavaScript Closures Hoisting  

Highest Paying IT Skills in 2020

Image
  Paying IT Skills in 2020 DATA SCIENCE ML FINANCE ETHICAL HACKING DATA BASE DIGITAL MARKETING

top 6 websites to solve Error's in Web/App Development

Image
1. MEDIUM      medium.com 2. STACKOVERFLOW     stackoverflow.com 3. W3SCHOOLS      w3schools.com 4. JAVATPOINT        javatpoint.com 5. GITHUB      github.com 6. GEEKSFORGEEKS       geeksforgeeks.org

Parts of a URL

5 parts of URL https://www.instagram.com/nextin https://                  Protocol www.                    subdomain instagram              domain name com/                     Top-Level Domain nextin                   path

Top 5 Serials for Programmers

Image
  1. Mr. Robot 2. Silicon Valley 3. Person Of Interest 4. Halt And Catch Fire 5. Scorpion

Road Map to become Full Stack Developer

PHASE 1 - HTML PHASE 2 - CSS PHASE 3 - JAVASCRIPT / FRONT-END PHASE 4 - GIT / LINUX CLI PHASE 5 - REACT PHASE 6 - NODE PHASE 7 - EXPRESS PHASE 8 - MONGO (OR MYSQL) PHASE 9 - BACKEND PHASE 10 - YOU ARE FULL STACK DEVELOPER. 

top 5 Linux Distros for Hacking

Image
 Linux Distros for Hacking PARROT OS KALI LINUX BLACK ARCH BACK BOX PENTOO LINUX

Top open source Intelligence tools used in Cybersecurity

 Top open source Intelligence tools used in Cybersecurity OSINT Framework CheckUserNames HavelbeenPwned BeenVerified Censys  BuiltWith Google Dorks Maltego Recon-Ng theHarvester Shodan Jigsaw SpiderFoot Creepy Nmap WebShag OpenVAS Fierce Unicornscan Foca ZoomEye Spyse IVRE Metagoofill Exiftool

Why may Python lose its Charm overtime

Speed Limitations   Speed has always been the key focus of a programmer and will always be an essential criterion to work on. Python is an interpreted languages and therefore is slower in execution than other languages like C/C++ , java , or newer languages like Juila. For Python, the execution takes place with the help of an interpreter instead of a compiler , and that causes it to slow down. Memory Consumption App development and computing programs are memory-intensive tasks , and due to high memory consumption by Python , it isn't considered a right choice for memory-intensive jobs. Python's high memory consumption is also due to the flexibility of data types. Difficult To Blend In Python is a very addictive language , and Python lovers get so accustomed with its features and extensive libraries that become difficult for them to learn or work on  other programming language. According to Python experts, , declaring of cast "values" or variable "types" , a...

Skills required to become Full Stack Web Developer

 Skills : HTML / CSS JavaScript Analytical Skills CSS and JS frameworks Version Control / GIT Testing / Debugging Browser development tool Building automation tools Design Sense Web Server Management Project Management

Python History

Image
  Python History Python laid it's foundation in the late 1980s The implementation of Python was started in December 1989 by Guido Van Rossum at CWI in Netherland. In February 1991, Guido Van Rossum published the code to alt.source. In 1994, Python 1.0 was released with new featured like lambda , map , filter and reduce. Python 2.0 added new feature such as list comprehensions , garbage collection system. On December 3 , 2008, Python 3.0 [also called "Py3K"] was released. It was designed to rectify fundamental flaw of the language. ABC programming languages is said to be the predecessor of Python language , which was capable.

Python Program to Generate Password

Image
  Code : import random   lower = "abcdefghijklmnopqrstuvwxyz" upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" numbers = "0123456789" symbols = "[]{}(); / ,._-"        all = lower + upper + number + symbols         length = 16       password = "".join(random.sample(all , length))                print(password)

Send Battery Percentage Notification using Python

Image
  Code : #pip install py-notifier from pynotifier import Notification #pip install psutil import psutil #putil.sensore_battery() will return the information #related to battery battery = psutil.sensore_battery() #battery.percent will return the current battery prcentage percent = battery.percent #Notification(title, description, duration)--to send  #notification to desktop Notification("Battery Percentage",                   str(percent) + "%Percent Remaining",                   duration=10).send()

Privacy And No Privacy on Internet

Image
Your Own Choice             No Privacy                                                               Privacy Google                                                             1. DuckDuckGo Outlook                                                            2. ProtonMail PayPal                                                              3. bitc...

Which Tools to be Anonymous

Image
 Anonymous Tools Secure Messaging Apps VirtualBox Incognito Mode Proxy Servers Tor Browser DuckDuckGo

Top Websites to learning Python for free

Image
 Learn Python for Free copyassignment.com geeksforgeeks.com javatpoint.com tutorialspoint.com studypoint.com w3resources.com

Programming Languages

Image
 Programming Languages Web Developer : PHP C# JS Java Python Ruby Game Developer :  Java C++ Python JS Ruby C Data Analyses :  R Matlab Java Python Desktop Developer :  Java C# C++ Embedded System Programmer : C Python C++ MobileApp Developer : Kotlin Dart Objective-C Java Python swift