Monday, March 4, 2019

ProtoTypes in react?

  • If you are developing big projects, you can catch a lot of bugs with typechecking

  • React has some built-in typechecking abilities          
 Ex:
we’re using PropTypes.string. When an invalid value is provided for a prop, a warning will be shown in the JavaScript console.

What is map() in react?

  • Higher order array method

  • Basically this is used for return array from an array.

     

    Ex:

    const numbers = [5, 10, 15, 20, 25];
    const doubled = numbers.map((number) => number / 5);
    console.log(doubled);

Saturday, July 7, 2018

What does registerServiceWorker do in React JS?




  • The serviceworker is a web API that helps you cache your assets and other files
  • Because of that, when the user is offline or on slow network, he/she can still see results on the screen.
  • Also It helps you build a better user experience, that's what you should know about service worker's for now. It's all about adding offline capabilities to your site.

Monday, January 8, 2018

WHAT IS POSTMAN?

Postman is a great tool for prototyping APIs, and it also has some powerful testing features. 



Postman: The Complete API Development Environment

1)A complete Toolchain for API Development
Postman was designed from the ground up, to support all aspects of API development. Postman's apps are built on a single underlying layer, ensuring consistent performance and user experience.


2)Mirrors your existing API Development workflow
Postman has features for every API developer: request building, tests & pre-request scripts, variables, environments, and request descriptions, designed to work seamlessly together. Postman was designed to make your current workflow faster and better.


3)Designed to support every API developer
Postman has options for the developer in everyone:
  • Mac, Windows & Linux Apps
  • Individual and team options
  • Multiple integrations, including support for Swagger & RAML formats


Thursday, November 30, 2017

JAVA DATABASE CONNECTION


THE UNBELIEVABLE STORY BEHIND THE WIN10 DESKTOP

From memories....
Microsoft is very creative and it always makes a new default wallpaper for Windows.Like every other version of Windows, Microsoft has created a special desktop wallpaper for windows10.
Microsoft build two separate photography installations in San Francisco to create the image, which resembles the new angular Windows logo with a shard of light passing through.
It's not just any old logo, either. Microsoft travelled to a San Francisco studio to build two installations to create the Windows logo out of light. The software company used camera mapping techniques, lasers, and projectors to create the new hero image that will be used on millions of PCs that ship with Windows 10.


Microsoft has released a video detailing the process to create the image.
(Jun 25, 2015)

.

Sunday, November 26, 2017

OOP CONCEPTS

POLYMORPHISM
  • Ability to identify a function to run.
  • One name many forms.(some object/function behaving as many forms)

1)Compile time(Overloading)
  • Also called method and operator overloading.
  • Method with same name,but different signature,signature means:
  1.  No. of parameters
  2. Type of parameters
  3. Order of parameters

2)Run-time(Overriding)
  • Method of base class is re-defined in the derived class.
  • Method with same name,same signature and exactly the same return type.



INHERITANCE
  • Child class allows to inherit properties from its parent class(extends keyword).
  • Access only public/protected.


Multiple inheritance
  • Child class inherit properties from multiple classes.
  • Java does not allow extend multiple classes.
  • Problem with multiple inheritance: 

If multiple parents have methods with same name,then at run at run time difficult to decide for the compiler,which method to execute.

  • To overcome this problem,Java allows to implement multiple interfaces.

Saturday, November 18, 2017

Linux

What is Linux?

Linux is an Operating System’s Kernel. You might have heard of UNIX. Well, Linux is a UNIX clone. But it was actually created by Linus Torvalds from Scratch. Linux is free and open-source, that means that you can simply change anything in Linux and redistribute it in your own name! There are several Linux Distributions,A few of them are:
  • Ubuntu Linux
  • Red Hat Enterprise Linux
  • Linux Mint
  • Debian
  • Fedora
Linux is Mainly used in Servers. About 90% of the Internet is powered by Linux Servers. This is because Linux is fast, secure, and free! The main problem of using Windows Servers are their cost. This is solved by using Linux Servers. Forgot to mention, the OS that runs in about 80% of the Smartphones in the World, Android, is also made from the Linux Kernel. Yes, Linux is amazing! A simple example of its security is that most of the viruses in the world run on Windows, but not on Linux!

Linux Shell or “Terminal”


So, basically, Shell is a program that receives commands from the user and gives it to the OS to process and it shows the output. Linux’s shell is its main part.but basically, Linux has a CLI (Command Line Interface). In this tutorial, we are going to cover the Basic Commands that we use in the Shell of Linux.
Linux Shell
We can open the terminal by Ctrl+Alt+T in Ubuntu, or by pressing Alt+F2 and then typing in gnome-terminal and press Enter.

Linux Commands

Basic Commands

1. pwd

When you first open the terminal, you are in the home directory of your user. To know which directory you are in, you can use the “pwd” command. It gives us the Absolute Path, which means the path that starts from the root. The root is the base of the Linux file system. It is denoted by a forward slash( / ). The user directory is usually something like /home/username.

2. ls

The “Is” command is used to know what files are there in the directory you are in. You can see all the hidden files by using the command “ls -a”.

3. cd

“cd” is the command used to go to a directory. For example, if you are in the home folder, and you want to go to the Downloads folder, then you can type in “cd Downloads”. Remember, this command is case sensitive and you have to type in the name of the folder exactly as it is. But there is a problem with these commands. Imagine you have a folder named “Raspberry Pi”. In this case, when you type in “cd Films Jo”, the shell will take the second argument of the command as a different one, so you will get an error saying that the directory does not exist. Here, you can use a backward slash. That is, you can use “cd Films \ Jo” in this case. Spaces are denoted like this: If you just type “cd” and press Enter, it takes you to the home directory. To go back from a folder to the folder before that, you can type “cd ..” . The two dots represent back.

4. mkdir & rmdir

The mkdir command is used when you need to create a folder or a directory. For Example, if you want to make a directory called “Home”, then you can type “mkdir Home”. Remember, as told before, if you want to create a directory named “Home Sub”, then you can type  mkdir Home Sub.
rmdir is the command used for deleting a directory. But, rmdir can only be used to delete an empty directory. To delete a directory containing files, rm is used.

5. rm

The rm command is used to delete files and directories. rm cannot simply delete a directory. “rm -r” is used to delete a directory. In this case, it deletes both the folder and the files in it.

6. touch

The touch command is used to create a file. It can be anything, from an empty txt file to an empty zip file. For example – “touch new.txt

7. man & –help

To know more about a command and on how to use it, the man command is used. It shows the manual pages of the command. For Example, “man cd” shows the manual pages of the cd command. Typing in the command name and the argument helps it show which ways the command can be used (Example – cd –help).

8. cp

The cp command is used to copy files through the command line. It takes two arguments, the first one is location of the file to be copied, the second iswhere to copy.

9. mv

The mv command is used to move files through the command line. We can also use the mv command to rename a file. For example, if we want to rename the file “text” to “new”, we can use “mv text new”. It takes the two arguments just like the cp command.

10. locate

The locate command is used to locate a file in a Linux System, just like the search command in Windows. This command is useful when you don’t know where a file is saved or the actual name of the file. Using the i argument with the command, helps to ignore the case (it doesn’t matter if it is Capital or Small). So, if you want a file that has the word “hello”, it gives the list of all the files in your Linux System containing the word “hello” when you type in “locate -i hello”. If you remember two words, you can separate it using asterisk (*). For example, to locate a file containing the words “hello” and “this”, you can use the command “locate –i *hello*this ”