Posts

Showing posts from 2018

Linux by Ripudaman Singh

Image
Customize the Bash [Linux] Your terminal window generally has username@hostname but you can change that we will discuss here how to change it.   link for details: Read-1 Read-2 Read-3 Let's make the Example setup as in above picture with live time cp ~/.bashrc ~/.bashrc.bak  In case of a problem it will help to get back the old file  nano ~/.bashrc Add the follwing line at the Last PS1="\e[0;35m\w\e[m\n\@ \e[0;35m$\e[m " close the nano by ctrl X, Y enter. making Changes active by source ~/.bashrc To customize in your own way see the above links. Get the localhost at some other name [Linux] Open your terminal and type  sudo nano /etc/hosts map your name with localhost address like 127.0.0.1       localhost 127.0.1.1       ripudaman # The following lines are desirable for IPv6 capable hosts ::1 ctrl X, y enter All done you can access the localhost at your describe name for me its ripudaman (helpful when making twitter app which runs on localhost) Getting port is al

Make whatsapp Number links

Image
How to make the link of your whatsapp Mobile number to put in on web Open a WhatsApp and start chat to someone hope it will work for India as the code to number is +91 write the below text: https://api.whatsapp.com/send?phone=91********** and send the message and you will get your mobile whatsapp number link

CS IT PDFS

Image
All_Technical_Languages_PDF A to Z Note: Don't wanna read: visit the site:  Download the pdf of BOOKS 1- .NET FRAMEWORK- https://books.goalkicker.com/DotNETFrameworkBook/ 2- Algorithms- https://books.goalkicker.com/AlgorithmsBook/ 3- Android- https://books.goalkicker.com/AndroidBook/ 4- Angular 2 https://books.goalkicker.com/Angular2Book/ 5- Angular JS https://books.goalkicker.com/AngularJSBook/ 6- BASH https://books.goalkicker.com/BashBook/ 7- C https://books.goalkicker.com/CBook/ 8- C++ https://books.goalkicker.com/CPlusPlusBook/ 9- C# https://books.goalkicker.com/CSharpBook/ 10- CSS https://books.goalkicker.com/CSSBook/ 11- Entity Framework- https://books.goalkicker.com/EntityFrameworkBook/ 12- Excel VBA https://books.goalkicker.com/ExcelVBABook/ 13- GIT https://books.goalkicker.com/GitBook/ 14- Haskell h

Hadoop

Image
Hadoop is a framework for the analysis of big data. Hadoop have 2 components. 1) hdfs . Hadoop distributed file system. 2) mapreduce . (Processing big data) Hdfs.. It is basically a file storing system. Used to store big file in the form of small cluster. Master slave process is followed. If we are using hdfs for small file storing then it is not worthy. In hdfs suppose a data is of 1TB then it store in different slave having data 128mb. Also the replica of data also take place in Hadoop so the the loss of data can be reduce. Mapreduce ... It's is process of analysis of data stored in hdfs. Following steps are involved for mapreduce ( * at basic level) 1) splitting  . First of all big data values is splits into small small parts . suppose I have a data of 3 line then it split the data in 3 parts each part have 9ne line 2) mapping. Then the mapping of data take place . It is a process of making keys and values. Suppose I have a data like car car bus then after mappi

GIT tool for GITHUB/

Image
Get straight to the topic: --> Github is a platform where we can create your rapo and work in a group efficiently. 1)  create an account at the GitHub 2)  create a rapo (needs simple form filling skills or refer youtube) 3)  (for Ubuntu) sudo apt-get install git( a tool for interacting, posting, getting data, at GitHub ) 4)  mkdir <directory name> 5)  cd <directory name> 6) git init 7) git config -- user.name "   " 9) git config -- user.email"   " 10) create a file and save it 11)  add the file 12)  commit the file 13) push the file to the server 14) merge the branch/ pull data change/ continue work commands of GIT: Push changes to remote repository (remembered branch) git push Delete a remote branch git push origin --delete [branch name] Update local repository to the newest commit git pull Pull changes from remote repository git pull origin [branch nam

what is Google forms

Image
What are Google forms? Google form is basically a tool by Google to make the efficient form very easily, with all the validations you want in a simple click. We get the data of form in simplest raw with graphical representation also. All u have to do is 1 Go to google drive { you must sign in} 2 click on new 3 more and select the forms. 4 use the preview and try to make a simple form.{USE YOUR COMMON SENSE}    thanks a lot for visiting.

How to print a system date in C language

Image
C language: Today I' m going to tell you how to print the sys date in C language codes:(With respect to turbo C++ ) // For turboC Only #include <dos.h>   // since we want the date from your system software #include <stdio.h> // since we have used printf void main() // only main execute {     struct date d; // here i declared a variable "d "which is structed with the date which is already defined in c library     getdate(&d); // here i got the date of system in my variable d     printf("\n %d/%d/%d", d.da_day, d.da_mon, , d.da_year);     // in above line we printed the system date     // da_day : have the system day ; calling is "d.da_day" ; as your variable is d     // da_mon : have the system month ; calling is "d.da_mon" ; as your variable is d     // da_year : have the system year ; calling is "d.da_year" ; as your variable is d     getch(); // to make the output screen to stay }

BLOG

Image
Blogging: So you want to start a blog. That’s great! Not only is blogging a great pastime, but with a blog, you can express yourself in a unique way, help others with problems you’ve overcome, establish yourself as an expert, and even make money. If you’re new to blogging, it really helps to  get started off on the right foot  and  have someone to help you avoid mistakes. That’s why I’ve put this page together for you, to give beginners a fast, foolproof guide to starting a blog, without having to learn HTML or waste your time reading long, boring tutorials. In fact, over 10,000  people have already setup blogs  using this guide! I’ve put this guide together for you, to walk you through the process to set up your blog in  5 easy steps. Here’s how to start a blog: Register your self at the blogger site that is blogspot.com and then, you are all good to go, add the posts for your blog.