Upgrading all pip packages


$ pip install pip-review
$ pip-review --local --interactive

How to run C / C++ on Linux ?


How to compile and run “c” & “c++” code on the Linux?

Very Interesting question, If u r new beginner… n just started your learning journey with “c” or “c++”.

How can i forget to post it! Just 2 days before my one friend asked me about it n i as usually answer explore on net or you can visit my blog, but then after i was reallies their is  no post related to this question… 😀 Anyways, My dear friends now just i m posting…

Open Terminal and type this commands for compilation and run the “c” & “cpp” code. Linux using by-default “GCC” compiler. It’s differ to “Turbo C” and any other compiler.

For Compilation : 

.c file :

$ gcc file_name.c -o output_filename

.cpp file :

$ g++ file_name.c -o output_filename

 

For Run the compiled code :

$ ./output_filename

 

That’s it ! It’s a easy na…  Enjoy !

Happy Linux Coding !

md5sum check


How to check & match “md5sum” ?

How many people know, their downloads are correctly done or downloaded file is same file as per they aspect ? I think No One Care !

You must check this thing, because of

  • Security reason
  • No hidden malicious content included with original  file
  • Proper complete downloading

Now, Question is HOW?

n Solution is with the check “md5sum“. Ohh… not check, It’s a MATCH !

Now, Mostly Every Impotent Downloads are Available with 2 things…

  1. Download_File_Original.fileExtention
  2. “md5sum” of Download_File_Original.fileExtention

You First Download your File and then generate md5sum.

For generating md5sum follow this steps :

  • Open Terminal (Alt+Ctrl+t) n type below command
  • $ md5sum /file-path/Download_File_Original.fileExtention

It will generate md5sum. Copy It !

Now Open your Download Page, Where Original md5sum available. Match It. (Type Ctrl + F on your Web-page n Ctrl + V ). If your coped md5sum available on page then it will highlighted.

md5sum CHECK

md5sum CHECK

That’s It…

Find more about md5sum : http://en.wikipedia.org/wiki/Md5sum

Enjoy Happy Downloading…

Thank u.

My Computer Algorithm Lab Work…


You can found all Codes n Screen shot in  single PDF.

Download link :  https://drive.google.com/folderview?id=0B4LK2pAXZXdoRnY5ajQtTGRsUzQ&usp=sharing

 

all_in_one_sort_V.2.0_Screenshot

Assignment – all_in_one_sort_V.2.0_

Note : This all code not written by me. Only last assignment i was wrote with the use of other code. You can run this all code under gcc compiler. it will works fine. Because i already run on my Linux System. You can see my screen-shots in PDF. 

 

All-in-One Sorting Code


DEMONSTRATE ALL SORTING ALGO IN A SINGLE CODE WITH TIME COMPLEXITY.

THIS CODE ALSO SHOW THE COMPARISON BETWEEN DIFFRENT SORTING ALGO’S TIMECOMPLEXITY.

All-In-One Sorting Code

All-In-One Sorting Code

Download Link : https://drive.google.com/folderview?id=0B4LK2pAXZXdoOS1oYjlhUkUyRGc&usp=sharing

Code Version: 1.0 [ don’t download this one, Because merge sort not working properly n some other bugs ]

Code Version: 2.0 [ more stable then V 1.0 & some bug fixed ]

Author: Shivang R. Patel
Email Id : patelshivang82@gmail.com
blog : http://www.mylinuxsys.wordpress.com

Program Created on Date: Nov 20 sun 2013

Limitation : This code can maximum 1000000 numbers.

+++++ PROGRAM IN c.
+++++ DEWLOPED WITH USE OF GCC COMPILER.
+++++ ANYONE CAN USE THIS CODE.
+++++ I HOPE MOSTLY COLLEGE STUDENTS FOR THEIR ASSIGNMENT.
+++++ eNJOY!
+++++ Thank u !

all_in_one_sort_V.2.0_Screenshot

all_in_one_sort_V.2.0_Screen-shot