Posts

Restart Windows Explorer manually after Explorer crashes

Image
Hi guys, I am back with one more tutorial. I have discovered it few days earlier. You must have noticed that Windows Explore crashes sometime due to memory issue, heating issue etc. When this happens, two things may happen. First is that Explore will automatically restart and after few seconds you can use your desktop as previously.Second one is, a menu prompts giving you three options like shown below.  Sometimes even if you select one option, nothing happens! Now this will piss you off. So what you need to do is that keep your head cool and follow this steps. 1. Press "Ctrl+Alt+Del" or "Ctrl+Alt+Esc". 2. If you have used first method, select "Start Task Manager". You will automatically see Task Manager prompting in second option. 3. Now, in Task Manager go to "Applications" and click on "New Task" from right side corner at the bottom".  4. Now a new window will appear. In that, type "cmd" and hit

C Program to find divisors of a given Integer

Image
Sorry for not bringing enough contents in this summer. Well, I was busy.                                                           Image Source Today we will learn a C program which can calculate the divisors of a given number. It is easy. You can see the Source Code below...   //Program for finding integer divisors of an number #include<stdio.h> void main() {     int num,div,ans;     printf("Enter the number\n");     scanf("%d",&num);     for(div=2;div<=num;div++)         if(num%div==0)         printf("The divisor is %d\n",div); } A view on the sample output of the program....   That's enough for today, Bye. I will return soon with another post. stay tune.

TRAI DOWN !!!

The news of net neutrality is at rage. Every single netizens is talking about this. Thousands of mails were sent to the TRAI already. But guess what! TRAI  website is down. The  Anonymous India  took the responsibility for this act. There are a lot of tweets criticizing TRAI that they can't handle DDOS attacks. Update: TRAI is up now.

How to convert Batch file(.bat) into Executable(.exe)

Image
Hello my dear blog readers. I'm sorry for not posting a couple of days. I was busy with some other stuffs.  Today I'm going to show you how you can create executable file(.exe) from a batch file(.bat). You may not know what a batch file is. It's a basically a file with Windows commands. But the point is why I will want to make a executable from a .bat. Well, sometimes you may want to run a command in such a way that others can't see the commands. It's a fact that batch file are used to make simple viruses in early days of Windows operating system. How to create a batch file You  will need a text editor for example Notepad. Then write the commands in the text file with a extension '.bat' or 'cmd'. Convert batch into executable For the conversion process you will need a tiny utility(software) named Bat to Exe Converter( download link ).  Run the utility. Browse the batch file and give a name to your executable and then just compile. You c

Exposed: WhatsApp profile pic privacy blunder bug

Image
A privacy hole in WhatsApp allowed anyone to view someone else's profile photo – even if a user had configured the mobile messenger app to only show their pic to their contacts. The privacy slip-up, which came with the debut of WhatsApp’s newly-introduced web interface atweb.whatsapp.com, was discovered by 17-year-old security researcher Indrajeet Bhuyan. The service was designed to allow users to chat with WhatsApp contacts through a browser, potentially on a PC or laptop. Privacy settings applied on the mobile app were apparently not carried over onto the browser-based version of the technology, launched just days ago and only available through Google's Chrome browser. On the smartphone side, you can only use the functionality on Android, BlackBerry and Windows Mobile since there's no iOS version at this nascent stage. There's no suggestion that messages themselves were exposed. Only profile pictures were viewable to world+dog. A second issue, also

How to make Themes in Windows 7

Image
Know what is needed to make themes and how to achieve this... If you have been ever a Windows 7 user you will know what a theme(themepack) is! Theme or the .themepack file in Windows 7 is a collection of images which can be used as a desktop background. In this post I will tell you how to make a theme. Follow these steps... 1. Select the images or background pictures you want to put in the theme. Then right click and select the "Set as desktop background". 2. Now go to the desktop and right click followed by 'Personalize'.  3. In the next windows right click on the Unsaved Theme and then click on the " Save theme for sharing ". 4. A New window will come and you need to give a name to the theme and then hit the Save button. Voila! You've created the theme. You can share this theme without any problem. Enjoy! HAPPY NEW YEAR 2015

How to corrupt Application files in Windows!

Image
In this article, I have used the word "application", but actually you can corrupt any files in Windows operating system. The trick is not a rocket science type. Just follow these simple steps and you are done... 1. Open up CMD(Command Prompt) as Administrator . I'm sure you know how to do this.  For Windows 7: Start->All Programs->Accessories->Command Prompt For Windows 8: Just type 'cmd' in the search window. You will get it. 2. Now, type the following line. assoc .exe=.pur 3. Hit Enter. Now, if you want to run the .exe files you will see a window like this. I have used the .pur extension because there is no such extension in Windows. The assoc stands for association. So, what does the command do? The command simply converts every .exe file into the mysterious .pur extension. And when you try to execute the application file i.e. .exe, your computer system doesn't have program to run .pur files! Thus all your application files b