Posts

Recommending Post:How to clean USB Pendrive

Hi friends, So have you stuck in a problem that you made a bootable USB drive and now you want to clean it for other use and you don't find any guide to do so. Don't worry, I recommend my friend's post featuring the solution of this problem(Using CMD). Try it. It is Safe. The link for that post is Below. Link:- http://spatels.blogspot.in/2015/03/how-to-clean-bootable-usb.html You must go if you are stuck and if your problem is solved then please give him a good like or comment. So bye for Now. Se you next time.

Self Composed Ringtones

Hello guys, Following are the Ringtones that I've made(really). Links:- 1).Beats:- https://drive.google.com/file/d/0B36eSzxwoMyUT3FRSjktX1Rab2M/view?usp=sharing 2).Jingle Bells Remix:- https://drive.google.com/file/d/0B36eSzxwoMyUVWR1U21sc2x3Qms/view?usp=sharing 3).Movie Score-Spacetime:- https://drive.google.com/file/d/0B36eSzxwoMyUUlZtckxvNHBGVDg/view?usp=sharing 4).X-Mas Remix:- https://drive.google.com/file/d/0B36eSzxwoMyUT0Ztam95UHgxOXM/view?usp=sharing Its free to download and share. So download it and hear it. And please don't forget to give your reviews in form of comments. Bye and Enjoy. See you next time.

32 Bit MISP ALU

Image
Hi friends, I came up with a new article. So in my college in Digital Design we were given the project to design and simulate a 32 bit MISP(Microprocessor without Interlocked Pipeline Stages)  ALU(Arithmetic and Logic Unit). ALU is the generally the component of the CPU which deals with logical and mathematical decisions to be taken by CPU. Image:- Picture of the final ALU. (Download it to Zoom it) So here I have made a design of 32 bit MIPS ALU. I have made this in a simulation software called Logisim which can be downloaded from link provided here:- Link:- https://drive.google.com/file/d/0B36eSzxwoMyUdEJaR0k2VVZtbm8/view?usp=sharing The ALU can be downloaded from the link provided here:- Link:- https://drive.google.com/file/d/0B36eSzxwoMyUMVFKM09tVmZRNEE/view?usp=sharing In this Zip you will find:- 1). The main designed circuit .circ extension(open in Logisim)(in this ALU32 Sub circuit is main). 2).The Readme showing the no of transistor used in this A...

Programming Paradigms

Hello friends, after long time I am writing a post. So this time I would tell you about different types of Programming Paradigms(steps to write different programs or ways to organize your thoughts)  that programmers, software engineers etc.. often use to write different kinds of the programs. There are 4 types of major programming paradigms(steps) to know more about them click the link below:- Link:- https://drive.google.com/file/d/0B4xgv8phk0PEYnlCcDJJNVJwYm8/view?usp=sharing So, bye for now, Meet you soon with another good article, Thank You for reading. Bye....

The C++ Program to Find Prime Numbers between 1 to 100

Hello friends, below is the C++ Program by me to find the Prime Numbers between 1 to 100 using Sieve of Eratosthenes. The program would be common but please focus on the Logic. content C++ Program:- /* Following C++ program finds prime numbers from 1 to 100 using Method of Sieve of Eratosthenes You can modify the program according to your needs, but the general logic remains same. ->By Deep C. Patel */ #include<iostream> #include<conio.h> #define MAX 100 //you can increase the limit more than 100 to get more prime numbers using namespace std; int main() { int i=0, flag=0, num[MAX], primeNo[MAX], k=0, count=2; for(i=0;i<MAX;i++) { num[i]=i+1; } cout<<"\n\nThe Array has Elements as Shown Below:-\n"; for(i=0;i<MAX;i++) { cout<<"\n"<<num[i]; } primeNo[k]=2; //Declaring First Prime Number 2 k++; while(count<=100) { flag=0; ...

All Windows Command Line Commands

Image
Hi Friends I have got all Windows Command Line Commands. Just click them and Explore the Command Line of The Windows(Courtesy:- http://ss64.com ). Fore more Interesting things Like Bash Commands, OSx Commands,etc.. go to:- http://ss64.com An A-Z Index of the  Windows CMD  command line a ADDUSERS Add or list users to/from a CSV file ADmodcmd Active Directory Bulk Modify ARP Address Resolution Protocol ASSOC Change file extension associations• ASSOCIAT One step file association AT Schedule a command to run at a specific time ATTRIB Change file attributes b BCDBOOT Create or repair a system partition BCDEDIT Manage Boot Configuration Data BITSADMIN Background Intelligent Transfer Service BOOTCFG Edit Windows boot settings BROWSTAT Get domain, browser and PDC info c CACLS Change file permissions CALL Call one batch program from another• CERTREQ Request certificate from a certification a...

Recover Lost Files from storage devices Using CMD

Image
Hey Friends, hoping that you all are fine. So, sometimes we face problem with our memory storage devices that our data is lost(actually it is not lost and it is stored in your drive only, but it is made  inaccessible to you by maybe some malwares,viruses or worms) from it but still we find that computer shows us that there is data in our storage device( abc memory free, xyz memory used)! then how to retrieve that data? For that I have one solution(for Windows User) and it is below:- Steps:- 1). Open the Command Prompt(cmd)  in your PC by opening the "Run" application and typing in it "cmd.exe" and click "Ok". the Command Prompt Screen:- 2).Now type in your damaged drive(i.e. d: , e: , f: , etc....) so that the writing directory changes from c: to your drive, suppose my damaged  drive " d ", so I will type d: in cmd as shown in the picture below. Image:- 3). Now type the command(or copy it) as shown below:- ...