Tuesday, 30 April 2013

Create Nameless Folder

:) This trick is only for fun:)

You can create nameless folder in any version of windows by following these steps :-

1. Select any file and folder
2. Rename it with Alt+0160(While still holding the Alt key, type the numbers 0160 from the keyboard)
3. The File or Folder will be of without name


Note: The numbers must be typed from the numerpad of your keyboard. i.e the number keys present on the right side of the keyboard and not from the number keys present above the top of character keys.


If you want to create two nameless folder in same directory then you have repeat 2nd step two times and so on

Watch ASCII Star Wars in Windows XP, Vista, 7 and 8


To watch it on Windows XP, Mac OS X and Linux
  1. Go to Start, Run. (Only for Windows users)
  2. Now type "telnet towel.blinkenlights.nl" without the quotes and press Enter. Users of Mac OS X and Linux can directly execute this code in the terminal window.

On Windows 8, Windows 7 and Windows Vista

Telnet is turned off by default in the latest versions of Windows. So, in order to watch star wars, you must first enable telnet by going to Control Panel › Programs › Turn Windows Feature On or Off and ticking both the telnet check boxes. After doing that, follow the steps given below:-

  1. Go to Start, Search in Windows Vista and Windows 7. On Windows 8, open the main Start page.
  2. Type telnet and press Enter.
  3. In the following command prompt window, type "o" without quotes and press Enter.
  4. Now type "towel.blinkenlights.nl" without the quotes and press Enter.
If you do not need telnet anymore, you can turn it off.

Make your PC welcome you in its computerized voice

1. Click on Start. Navigate to All Programs, Accessories and Notepad.
2. Copy and paste the codes given below.

Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks

3. Replace Username with your own name.
4. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or “*.vbs”.
5. Copy the saved file.
6. Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP)

Or

C:\Users \User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows Vista or in Windows 7 or in Windows 8 ) if C: is your System drive (Operation system Drive).
7. Paste the file.

Now when the next time you start your computer, Windows will welcome you in its own computer voice.

Note: For best results, it is recommended to change sound scheme to No Sounds.
You can change the sound scheme to No Sounds by following the steps given below:-

Go to Control Panel.
Then click on Switch to Classic View.
Then Click on Sounds and Audio Devices.
Then Click on the Sounds Tab.
Select No Sounds from the Sound Scheme option.
If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
Click on OK.
Have Fun ……………

Saturday, 27 April 2013

Full Screen Turbo C/C++ for Windows 7, 8 and Vista



        How to make Turbo C/C++ full screen in Windows 7, 8 and in Vista?


  • Go to this site and download Turbo C/C++ Compiler
  • After downloading Turbo C/C++ compiler, extract it (Compiler is in .rar format)
  • Then Run extracted setup file. (file name ETCsetup86-64)
  • That's it ..

Tuesday, 23 April 2013

Cool Keyboard Trick

Keyboards usually have small LED's which indicates whether different types of locks(num lock, scroll lock, caps lock)  are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows

This trick uses a simple Visual basic script which when activated makes your scroll lock, caps lock and num locks LED's flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.


To make your own live disco, follow the steps given below:-
1. Open Notepad
2. Copy paste the exact code given below:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

3. Save the file as Disco.vbs or "*.vbs".
Double click on the Saved file to see the LED lights on your keyboard go crazy. 
This trick has been tested on Windows XPWindows Vista and Windows 7 and found to be working perfectly.

You can disable the keyboard disco by following these steps

  • Open Task Manager ( ctrl+alt+del )
  • go to process tab
  • select wscript.exe 
  • click on end process

iWatch


Cloud Computing

Cloud computing is the term used to describe technology that will replace how we currently use our computers and software applications.

The concept of cloud computing is that any device (computer invention) connected to the Internet can utilize a network of computing resources.

This would include infrastructure, applications and storage for far less than what it would cost to use your own hardware, software and resources.

Additionally, it allows users to have access to applications that they would not have otherwise. Access is as simple as using an interface application or just a web browser from any location. cloud computing

The cloud can allow access to millions of computers in an intelligent, scalable and redundant system with expert support.

Similar to outsourcing, the difference and advantages of cloud computing are speed, efficiency, capability and cost, particularly with the increasing popularity of smart phones and tablets.

It allows users to work from anywhere, to perform any task with any application, and to pay for only what you use.

Cloud computing is comparable to using email or online banking where you log into your account to access and manage your information. The software, applications and storage do not exist on your computer.

But unlike your email or online banking services, clouds can perform complicated engineering tasks, schematics, modeling or mathematical computations, and it can do this in a cost effective and efficient manner.

Another major advantage to cloud computing is the reliability of service.

Servers can crash, temporarily denying you online access to services and data. But cloud computing has multiple servers so you always have access.

Some concerns about cloud computing are security and the effect it will have on the computer industry.

The security concerns are similar to those regarding email and online banking.

These have proven to have reliable security protocols therefore similar advanced technology has been adopted for cloud computing.

It's anticipated that computer repair and maintenance, as well as IT employment /contracts will steadily decline as cloud computing rises in popularity.

There has been a proliferation of free public clouds appearing on the internet.

These services, often referred to as SaaS (software as a service) are easy to use, fast, reliable and very good.

You can increase your use of cloud computing to meet a high demand on your resources and you can reduce your usage during low demand. This allows you to adapt to changing conditions without making significant long term investments in personnel, computers, software and operational costs.

Hopefully, cloud computing will assist independent inventors and small businesses to be more efficient and cost effective.

At the very least, it's a leveling of the playing field.

C Program to count frequency of characters in the given string

#include<stdio.h>
#include<conio.h>

#include<string.h>
main()
{
int count,i,j;
char str[50];
printf("Enter string : ");
gets(str);
for(i=0;i<=strlen(str)-1;i++)
{
count=1;
if(str[i]==' ')
continue;
for(j=i+1;j<=strlen(str)-1;j++)
{
if(str[i]==str[j])
{
str[j]=' ';
count++;
}
}
printf("%c : %d \n",str[i],count);
}
getch();
}

C Program to Find ASCII Value of a Character

#include <stdio.h>
#include <conio.h>
int main()
{
char c;
printf("Enter a character: ");
scanf("%c",&c); /* Takes a character from user */
printf("ASCII value of %c = %d",c,c);
getch();
return 0;
}

Firefox Latest Version

Are you on the latest version of Firefox? 
You can get to the Web up to 7 times faster than older versions: http://mzl.la/downloadfirefox.



How to make a simple PowerPoint game?

1. Open Microsoft PowerPoint
2. Create a new, blank
presentation by pressing Ctrl-
N .
3. Make sure the first slide's
layout is the title slide .
4. In the title box, name your
new game .
In the title box, name your
new game.
5. In the subtitle box, write
"Click Here" .
6. Create a new slide, one with a
title and text, by clicking Insert-
>New Slide.
Create a new slide, one with
a title and text, by clicking
Insert->New Slide .
7. Highlight "Click Here" and link
it to slide 2 by selecting it
then right click and go to
hyperlink .
8. A box will pop up. You pick
Place in This Document, pick
slide titles, then slide 2.
9. Create a scenario for this slide
and create options to deal
with the scenario.
Create a scenario for this
slide and create options to
deal with the scenario . For
example, slide 2 would look
like: You are lost in a desert,
do you:
Look for water.
Build a sand castle.
Shoot a camel.
Do nothing.
10. Highlight each option and link
them to another slide that
presents a new scenario . This
new scenario will present the
player with the consequences
of his/her actions. There will
be wrong choices and there
will be right choices.
11. Continue the chain of linked
slides until a final result is
arrived . Enough wrong
choices will lead to a slide that
reads something like 'You
Lose' and enough right
choices will lead to a slide that
says something like
"Congratulations you win!"

World's first Laptop

This is Toshiba T1100, the world first Laptop for the whole market. This was manufactured in 1985. This laptop ran entirely on floppy disks. It had no hard disk...



Hard Drive -- Now & Then


How To Create Your Own Website

4 Best web-generating sites to create your own Website:

http://www.ucoz.com/

Features:-

200+ more template designs.
Unlimited storage
Simple secure and safe
Easy to use
Data backup

Demo- www.solsticeunity.com

http://www.hpage.com/

Features:-

Create your own website within minutes.
300 Mb space
Free designs

Demo:- username.hpage.com

http://www.weebly.com/

Features:-

100+ Templates
Easy to use
Traffic stats
Powerful hosting

Demo:- svbit-computer.weebly.com

http://www.wix.com/

Features:-

Drag n drop
100+ designs
customer care support 24*7

Demo:- wix.com/website-template/view/html/moving_company

Friday, 12 April 2013

What are CAPTCHAs


Whenever we create an account on any website or comment on any blog we see scrambled words
which we have to type and continue these are CAPTCHAs .

What are CAPTCHAs and what they do?
It stands for Completely Automated Public Turing-test to tell Computers and Humans Apart.These tries to test that you are a person and not a auto filling software.

Why CAPTCHAs are necessary?
These are used to prevent hackers from avoiding misuse of online services.
There are some examples of activities which are undertaken by hackers are given below :-
-Opening someone's account  by attempting different  password again and again.
-Creating  hundreds of  free accounts
-Swaying an online poll by robotically submitting hundreds of false responses. 
-Spamimng blogs by posting dozens of bogus comments.

These CAPTCHAs test prevent about 90% of hackers attacks.

What is a logic behind this CAPTCHAs?

 Commonly, these CAPTCHA phrases are .gif pictures of scrambled words, but can also be .mp3 voice recordings. These pictures and recordings are very hard for conventional software programs to understand, and hence, robots are usually unable to type the phrase in response to the picture or recording.

How to change folder icons

-Right click on the folder.
-Then click on the properties.
-Then click on customize tab.



-Click on 'Change icon'




-you can select any from the list.
-After selecting icons click OK.

  If you want to download more icons then click below.


All Keyboard Shortcuts

Keyboard Shortcuts (Microsoft Windows) 
1. CTRL+C (Copy)
2. CTRL+X (Cut)
3. CTRL+V (Paste)
4. CTRL+Z (Undo)
5. DELETE (Delete)
6. SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
7. CTRL while dragging an item (Copy the selected item)
8. CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
9. F2 key (Rename the selected item)
10. CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
11. CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
12. CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
13. CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
14. CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a 

document)
15. CTRL+A (Select all)
16. F3 key (Search for a file or a folder)
17. ALT+ENTER (View the properties for the selected item)
18. ALT+F4 (Close the active item, or quit the active program)
19. ALT+ENTER (Display the properties of the selected object)
20. ALT+SPACEBAR (Open the shortcut menu for the active window)
21. CTRL+F4 (Close the active document in programs that enable you to have multiple documents open 

simultaneously)
22. ALT+TAB (Switch between the open items)
23. ALT+ESC (Cycle through items in the order that they had been opened)
24. F6 key (Cycle through the screen elements in a window or on the desktop)
25. F4 key (Display the Address bar list in My Computer or Windows Explorer)
26. SHIFT+F10 (Display the shortcut menu for the selected item)
27. ALT+SPACEBAR (Display the System menu for the active window)
28. CTRL+ESC (Display the Start menu)
29. ALT+Underlined letter in a menu name (Display the corresponding menu) Underlined letter in a command 

name on an open menu (Perform the corresponding command)
30. F10 key (Activate the menu bar in the active program)
31. RIGHT ARROW (Open the next menu to the right, or open a submenu)
32. LEFT ARROW (Open the next menu to the left, or close a submenu)
33. F5 key (Update the active window)
34. BACKSPACE (View the folder onelevel up in My Computer or Windows Explorer)
35. ESC (Cancel the current task)
36. SHIFT when you insert a CD-ROMinto the CD-ROM drive (Prevent the CD-ROM from automatically playing)


Dialog Box - Keyboard Shortcuts
1. CTRL+TAB (Move forward through the tabs)
2. CTRL+SHIFT+TAB (Move backward through the tabs)
3. TAB (Move forward through the options)
4. SHIFT+TAB (Move backward through the options)
5. ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
6. ENTER (Perform the command for the active option or button)
7. SPACEBAR (Select or clear the check box if the active option is a check box)
8. Arrow keys (Select a button if the active option is a group of option buttons)
9. F1 key (Display Help)
10. F4 key (Display the items in the active list)
11. BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)

Microsoft Natural Keyboard Shortcuts
1. Windows Logo (Display or hide the Start menu)
2. Windows Logo+BREAK (Display the System Properties dialog box)
3. Windows Logo+D (Display the desktop)
4. Windows Logo+M (Minimize all of the windows)
5. Windows Logo+SHIFT+M (Restorethe minimized windows)
6. Windows Logo+E (Open My Computer)
7. Windows Logo+F (Search for a file or a folder)
8. CTRL+Windows Logo+F (Search for computers)
9. Windows Logo+F1 (Display Windows Help)
10. Windows Logo+ L (Lock the keyboard)
11. Windows Logo+R (Open the Run dialog box)
12. Windows Logo+U (Open Utility Manager)
13. Accessibility Keyboard Shortcuts
14. Right SHIFT for eight seconds (Switch FilterKeys either on or off)
15. Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
16. Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
17. SHIFT five times (Switch the StickyKeys either on or off)
18. NUM LOCK for five seconds (Switch the ToggleKeys either on or off)
19. Windows Logo +U (Open Utility Manager)
20. Windows Explorer Keyboard Shortcuts
21. END (Display the bottom of the active window)
22. HOME (Display the top of the active window)
23. NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
24. NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
25. NUM LOCK+Minus sign (-) (Collapse the selected folder)
26. LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
27. RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)


Shortcut Keys for Character Map
After you double-click a character on the grid of characters, you can move through the grid by using the 

keyboard shortcuts:
1. RIGHT ARROW (Move to the rightor to the beginning of the next line)
2. LEFT ARROW (Move to the left orto the end of the previous line)
3. UP ARROW (Move up one row)
4. DOWN ARROW (Move down one row)
5. PAGE UP (Move up one screen at a time)
6. PAGE DOWN (Move down one screen at a time)
7. HOME (Move to the beginning of the line)
8. END (Move to the end of the line)
9. CTRL+HOME (Move to the first character)
10. CTRL+END (Move to the last character)
11. SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)
Microsoft Management Console (MMC)


Main Window Keyboard Shortcuts
1. CTRL+O (Open a saved console)
2. CTRL+N (Open a new console)
3. CTRL+S (Save the open console)
4. CTRL+M (Add or remove a console item)
5. CTRL+W (Open a new window)
6. F5 key (Update the content of all console windows)
7. ALT+SPACEBAR (Display the MMC window menu)
8. ALT+F4 (Close the console)
9. ALT+A (Display the Action menu)
10. ALT+V (Display the View menu)
11. ALT+F (Display the File menu)
12. ALT+O (Display the Favorites menu)

MMC Console Window Keyboard Shortcuts
1. CTRL+P (Print the current page or active pane)
2. ALT+Minus sign (-) (Display the window menu for the active console window)
3. SHIFT+F10 (Display the Action shortcut menu for the selected item)
4. F1 key (Open the Help topic, if any, for the selected item)
5. F5 key (Update the content of all console windows)
6. CTRL+F10 (Maximize the active console window)
7. CTRL+F5 (Restore the active console window)
8. ALT+ENTER (Display the Properties dialog box, if any, for theselected item)
9. F2 key (Rename the selected item)
10. CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut 

closes the console)


Remote Desktop Connection Navigation
1. CTRL+ALT+END (Open the Microsoft Windows NT Security dialog box)
2. ALT+PAGE UP (Switch between programs from left to right)
3. ALT+PAGE DOWN (Switch between programs from right to left)
4. ALT+INSERT (Cycle through the programs in most recently used order)
5. ALT+HOME (Display the Start menu)
6. CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
7. ALT+DELETE (Display the Windows menu)
8. CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server 

clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)
9. CTRL+ALT+Plus sign (+) (Place asnapshot of the entire client window area on the Terminal server

clipboardand provide the same functionality aspressing ALT+PRINT SCREEN on a local computer)

Microsoft Internet Explorer Keyboard Shortcuts
1. CTRL+B (Open the Organize Favorites dialog box)
2. CTRL+E (Open the Search bar)
3. CTRL+F (Start the Find utility)
4. CTRL+H (Open the History bar)
5. CTRL+I (Open the Favorites bar)
6. CTRL+L (Open the Open dialog box)
7. CTRL+N (Start another instance of the browser with the same Web address)
8. CTRL+O (Open the Open dialog box,the same as CTRL+L)
9. CTRL+P (Open the Print dialog box)
10. CTRL+R (Update the current Web

Monday, 1 April 2013

How To change Facebook theme, Facebook Chat window theme

Hello as we know almost everyone in the whole world about Facebook and use it and as we know he have a style that only contains white and blue colors and that’s might be a little bit boring so now we can change it by using an app called Facebook Chat Platinum...

What is Facebook Chat Platinum and where To find it ?

You Can Find Facebook Chat Platinum App By going to this webSite Funnerapps doesn’t give you just the Ability to change the window chat but also can change the the theme of of Facebook to any other design, just by downloading the application and set it up as you added with the previous addition to that you can change theme of Youtube and many wonderful applications.
Funnerapps does not only give you the possibility of changing the form of Facebook, but also provides you change the theme of the Chat window to any other theme of your choice.

How To install Facebook Chat Platinum ?

Only after going to the site to download Facebook Chat Platinum, scroll down a bit and look for the Facebook Chat Platinum then click on the GET it, then will redirect you to the Chrome web store page where you must download the application Facebook Chat Platinum that will be installed in the browser Google Chrome only! (Sorry Firefox users).
After you download and and installing the App go to the following path : Menu> tools> Extensions also is in the picture.



  


Now Search Facebook Chat Platinum application and click on the settings you will find a choice of a number of designs chat window, you can choose from them what you want before clicking on save, and then go to your Facebook you’ll find that the window chat has changed to the chosen design and that Facebook Chat Platinum has succeeded to do he’s job. 
Similarly you can also change your Facebook Theme by clicking Facebook Theme Gallery in http://funnerapps.com/


MOUSE SCANNER


This mouse will not just serve as a scroll and click functionality, it is still able to scan various documents. More precisely, of course, the documents are not in full, and in part because the size of the mouse does not allow this. So if you want to scan a couple of pages, rather than a whole stack of documents, then this mouse is just what we need. As well as the OCR technology to convert scanned text will allow for editorial purposes.
Mouse scanner, of course, not completely replace a large scanner, but will in any case not more than gadget. The mouse is able to scan at a high resolution of 320 dpi.

LunaTik Touch Pen


LunaTik Touch Pen is an innovative, practical, multi functional stylus designed for those people who need to often write on the touchscreen and traditional paper. LunaTik Touch Pen features a patent-pending dual mode tip, at first, it’s a digital stylus compatible with iPads and various tablets. When you press the button on the top end of the digital stylus, the head of the hidden ink cartridge will be out from the hole on the capacitive rubber, so the digital stylus has been turned into a traditional pen for your writing on paper. Unique pen that could double as a pen. Even better, switching between two modes is only just a click away!