Posts

Showing posts from September, 2020

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 firstOrderFunc = ( ) => console.log ( 'Hello I am a First order Function' );                      const higherOrder = ReturnFirstOrderFunc =>ReturnFirstOrderFunc ( );                                higherOrder (firstOrderFunc);    4) Difference between l

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 how Java handles its API internally

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. bitcoin WhatsApp                                                        4. Telegram

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      

Data types in Python

Image
 Python Data Types Strings "codes learning"      2. List ["Text", 10 , True]      3. Integers 10, 20, 30      4. Tuples ("Text", 10, Faulse)     5. Float 3.14159    6. Dictionaries {'name':'Max'}    7. Boolean True , Faulse    8. Set {1,2,3}   

Best python Projects for Beginners

Image
 Python Projects Talking Dictionary Chatbot Restaurant Management On Screen  Retail Management Login and Registration Form Hangman Contact Book Number Guessing Mad Libs Generator Dice Rolling Simulator Binary Search Algorithm Python Website Blocker Alarm Clock Music Player

List of Wireless Linux Tools

Image
 Wireless Linux Tools Aircrack-ng Kismet Inssider kismac Firesheep Airjack Karma Netstumbler Weplab

How to create Directory in Linux

Image
 Create Directory in Linux You can create the directory using mkdir command in the following way: mkdir <directoryname> Instruction :  Use the console on the right-hand side. If the console is not Visible then please click on the "console" button on the right-hand side Type cd ~  command to go your home directory Create a directory with the name xyz in your home directory

Top 50 Linux Commands

Image
  Linux Commands ls pws cd mkdir mv cp rm touch ln cat      clear echo less man uname whoami tar grep head tail diff cmp comm sort export zip unzip ssh service ps kill and killall df mount chmod chown ifconfig traceroute wget ufw iptables apt, pacman sudo cal alias dd whereis whatis  top useradd passwd

Web Development mistakes to Avoid

  1.   Learning Web Developing is intimidating. There are so many resources and tutorials that it might seem overwhelming. So, let's example the common mistakes that we can make. 2.     Relying on JS framework and libraries While knowledge of, and ability to work with, popular JavaScript frameworks and libraries are marketable skills to have , you must also have a good knowledge of JavaScript.  If you fail to learn the foundations of JavaScript , you never truly learn what the features of these framework are doing under-the-hood 3.   Relying on Bootstrap Many developers starting out view Bootstrap as an easy way to style a web application , and while it can be useful in specific circumstances , it should not replace your knowledge of CSS and responsive web design. 4.  Not Modularizing your Code It's extremely important to ensure your code is modular, do not put it into one HTML file. Not only is it bad practice to have HTML, CSS and JavaScript into one file, it's messy and

How to Host our Website for free ?

Image
 8 Ways to Host your Website for Free 1. GITHUB PAGES       Hosted directly from your GitHub repository. Just edit, push and your changes        are live.           https: // pages.github.com /

How many lines of Code used in Google , Facebook, Windows, Linux, Firefox, ?

Image
 Lines Of Code Used 2 Billion Lines of Code

programming languages ranking 2020

 programming languages ranking                   Programming Languages                                   Rating 

Do you know 3+ types of Hackers ?

Image
 Types of Hackers Black hat hacker White hat hacker Grey hat hacker Blue hat hacker Red hat hacker Script Kiddie Green hat hacker  Hactivists Elite Hackers Black hat Hackers are Malicious hackers. White hat Hackers are Ethical hackers. Grey hat Hackers are not Malicious or Ethical (Mix Of Both). Green hat Hackers are new to hacking. Blue hat Hackers are Vengeful hackers. Red hat Hackers are Vigilante hackers.

Display Calendar Using Python

Image
  Code # importing tkinter   from tkinter import * # importing calendar module import calendar # initializing tkinter   root = TK() # setting title of our Gui root.title( "My own Calendar" ) # year for which we want the calendar to be show on our Gui year = 2020 # storing 2020 year calendar data inside myCal myCal = calendar . calendar(year) # showing calendar data using label widget   cal_year = Label(root , text=myCal , font="Consolas 10 bond") # packing the Label widget  cal_year . pack() # running the program in ready state root.mainloop() Output

Keywords in JAVA Programming language

Image
 Keywords in JAVA boolean short for case catch final interface protected this byte void do default finally import native return throws char int switch if class new  public static throw double long break else abstract instanceof package super transient float while continue try extends private implements synchronized  volatile

Keywords Present in Ruby Programming Language

Image
 Keywords in Ruby Programming Language       Keywords                                                                                     description __ENCODING__                                            The script encoding of the current file.

Keywords In C Language Programming

Image
                     Keywords in C Language  auto                  const                                                                                           double                                                                                            float                                                                                                int                                                                                                 short                                                                                                 struct                                                                                             unsigned                                                                                           break                                                                                     continue                                                                                    else                                                   

Tech skills in Demand

Image
 Top Tech skills in Demand 1) Al and ML. 2) Cloud Computing. 3) Cybersecurity.                                                4) Full Stack Development. 5) Blockchain Security. 6) Data Science.  7) Technology skills career outlook. 8) Full Stack Development. 9) AR and VR. 

DuckDuckGo better than Google ?

Image
 DuckDuckGo DuckDuckGo is an internet search engine that protecting searcher's privacy and avoiding the filter bubble of personalized search result. Includes Data for deep and dark web. So much private.                 Can change VPN of different countries. Tiny market share. DuckDuckGo is a search engine that shows the same results for a search term all it's users . After using DuckDuckGo as our primary search engine for quite some time , we found that it's instant answer are often as good as or better than Google's knowledge Graph.

Hard Skills that every IT Companies needs

Image
 Hard Skills 1) Artificial Intelligence Artificial Intelligence (AL) refers to the simulation of human Intelligence in machine  that are programmed to think like humans and mimic their actions.  2) Business Analysis Business Analysis deal with requirements understanding , development and management and functional testing. These responsibilities don't involve any programming skills. 3) Scientific Computing  Scientific Computing is a rapidly growing field that uses advanced computing capabilities and solve complex problem. 4) UX Design UX (User experience) Design is the process design teams use create product that provide meaningful and relevant experience to users. This involves the design of the entire process of acquiring and interacting the product , including aspects of branding , design , usability and function.