Saturday, May 29, 2010
How To Enable Telnet In Microsoft Windows 7
TELNET (TErminaL NETwork) is a network protocol used on the Internet or local area networks to provide a bidirectional interactive text-oriented communications facility via a virtual terminal connection. User data is interspersed in-band with TELNET control information in an 8-bit byte oriented data connection over the Transmission Control Protocol (TCP).
In Microsoft Windows XP and previous versions of Microsoft Windows Telnet is enabled by default but in Microsoft Windows 7,Telnet has been disabled by default so to enable it follow the procedures given bleow:
1]Click on START Button.Enter Control Panel.
2]Navigate to Programs.
3]Click on Turn Windows Features ON or OFF.
4]Tick on Telnet Client [Not Telnet Server].
5]Click OK.
How To Run Vodafone Live On External Java Apps.
To use External JAVA Applications like Opera Mini,Google Maps on Phones we need to setup proxy for these applications[Which is very easy].
To do that follow these steps:
1]You Cant use the normal applications which we download from Getjar etc.We need to use MODDED Applications which allow Proxy Editing.These can be downloaded from the links i provide.[Download Link @ theBottom of Post]
2]After Downloading open the application.
3]It show a page where there are many rows like Frontquery,Backquery etc..
4]There first select the OPERATOR as CUSTOM.
5]Config. Name anything like Vodafone Live etc..
6]Leave the Front Query,Back Query,Mid. Query etc BLANK.
7]Tick the REMOVE PORT FROM URL.
8]In the USE PROXY select HOST.
9]In the PROXY SERVER type[exactly as given below]
http://10.10.1.100:9401/
10]Leave the USERNAME\PASSWORD BLANK.
11]Save the configuration and if the Network Connection is Established then continue browsing happily,ELSE..
12]Make sure you have the settings from VODAFONE and even if it is not working THEN,
13]Select Default Connection as Vodafone Lve and Go to Personal Config.>Add a new Access Point>Give any Name>Select Packet Data>Access Point Name as "NOP" [without ""].Save the config. Set as Default
14]Restart Phone and Start Browsing
NOTE:THIS IS FOR ONLY VODAFONE CUSTOMERS.[Ucweb Doesnt seem to work with vodafone]
Download Links For Modded Applications:
1]Bolt Browser
2]Google Maps
3]eBuddy
4]Snaptu
5]Skype Lite
Use your Notepad as a clock
1. Open a blank Notepad file
2. Write .LOG as the first line of the file, followed by a enter. Save the file and close it.
3. Double-click the file to open it and notice that Notepad appends the current date and time to the end of the file and places the cursor on the line after.
4. Type your notes and then save and close the file.
After that open the file and see the changes.
by this trick u can also use ur notebook as a personal diary.
Wednesday, May 26, 2010
Modify Shutdown
Often times when XP is shutting down a dialog appears saying the system is waiting for a service to close. This tweak will reduce (or increase) the amount of time that expires before this warning appears. In some cases it may be desirable to allow the service more time, but most often a shorter delay is desirable. The lower the number entered the quicker the task will end.
[Start] [Run] [Regedit]
Registry Key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
Modify/Create the Value Name [WaitToKillServiceTimeout] according to the Value Data listed below.
Data Type: REG_SZ [String Value] // Value Name: WaitToKillServiceTimeout
Value Data: [Default = 20,000 (expressed in milliseconds) Modify to preference.]
Increase Menu Display Speed
[Start] --> [Run] --> Type Regedit --> Press Enter --> then Navigate to following key.
Registry Key: HKEY_CURRENT_USER\Control Panel\Desktop
Modify/Create the Value Data Type(s) and Value Name(s) as detailed below.
Data Type: String Value // Value Name: MenuShowDelay
Setting for Value Data: [Default = 400 / Adjust to Preference]
Saturday, May 22, 2010
Add Keyboard Input Language to Ubuntu
Want to type in multiple languages in Ubuntu? Here we’ll show you how you can easily add and switch between multiple keyboard layouts in Ubuntu.
Add a Keyboard Language
To add a keyboard language, open the System menu, select Preferences, and then select Keyboard.
In the Keyboard Preferences dialog, select the Layouts tab, and click Add.
You can select a country and then choose an language and keyboard variant. Note that some countries, such as the United States, may show several languages. Once you’ve made your selection, you can preview it on the sample keyboard displayed below the menu.
Alternately, on the second tab, select a language and then choose a variant. Click Add when you’ve made your selection.
Now you’ll notice that there are two languages listed in the Keyboard Preferences, and they’re both ready to use immediately. You can add more if you wish, or close the dialog.
Switch Between Languages
When you have multiple input languages installed, you’ll notice a new icon in your system tray on the top right. It will show the abbreviation of the country and/or language name that is currently selected. Click the icon to change the language.
Right-click the dialog to view available languages (listed under Groups), open the Keyboard Preferences dialog again, or show the current layout.
If you select Show Current Layout you’ll see a window with the keyboard preview we saw previously when setting the keyboard layout. You can even print this layout preview out to help you remember a layout if you wish.
Change Keyboard Shortcuts to Switch Languages
By default, you can switch input languages in Ubuntu from the keyboard by pressing both Alt keys together. Many users are already used to the default Alt+Switch combination to switch input languages in Windows, and we can add that in Ubuntu. Open the keyboard preferences dialog, select the Layout tab, and click Options.
Click the plus sign beside Key(s) to change layout, and select Alt+Shift. Click Close, and you can now use this familiar shortcut to switch input languages.
The layout options dialog offers many more neat keyboard shortcuts and options. One especially neat option was the option to use a keyboard led to show when we’re using the alternate keyboard layout. We selected the ScrollLock light since it’s hardly used today, and now it lights up when we’re using our other input language.
Conclusion
Whether you regularly type in multiple languages or only need to enter an occasional character from an alternate keyboard layout, Ubuntu’s keyboard settings make it easy to make your keyboard work the way you want. And since you can even preview and print a keyboard layout, you can even remember an alternate keyboard’s layout if it’s not printed on your keyboard.
Add a User on Ubuntu Server
Ubuntu Server is like any Linux variety, and has full multi-user capabilities, and a common task on any server is adding users.
useradd
The useradd command will let you add a new user easily from the command line:
useradd
This command adds the user, but without any extra options your user won’t have a password or a home directory.
You can use the -d option to set the home directory for the user. The -m option will force useradd to create the home directory. We’ll try creating a user account with those options, and then use the passwd command to set the password for the account. You can alternatively set a password using -p on the useradd command, but I prefer to set the password using passwd.
sudo useradd -d /home/testuser -m testuser
sudo passwd testuser
This will create the user named testuser and give them their own home directory in /home/testuser. The files in the new home directory are copied from the /etc/skel folder, which contains default home directory files. If you wanted to set default values for your users, you would do so by modifying or adding files in that directory. If we take a look at the new home directory for the user:
geek@ubuntuServ:/etc/skel$ ls -la /home/testuser
total 20
drwxr-xr-x 2 testuser testuser 4096 2006-12-15 11:34 .
drwxr-xr-x 5 root root 4096 2006-12-15 11:37 ..
-rw-r–r– 1 testuser testuser 220 2006-12-15 11:34 .bash_logout
-rw-r–r– 1 testuser testuser 414 2006-12-15 11:34 .bash_profile
-rw-r–r– 1 testuser testuser 2227 2006-12-15 11:34 .bashrc
You’ll notice that there are bash scripts in this directory. If you wanted to set default path options for all new users, you would do so by modifying the files in /etc/skel, which would then be used to create these files by the useradd command.
adduser
The adduser command is even easier than the useradd command, because it prompts you for each piece of information. I find it slightly funny that there are two virtually identically named commands that do the same thing, but that’s linux for you. Here’s the syntax:
adduser
Example:
geek@ubuntuServ:/etc/skel$ sudo adduser thegeek
Password:
Adding user `thegeek’…
Adding new group `thegeek’ (1004).
Adding new user `thegeek’ (1004) with group `thegeek’.
Creating home directory `/home/thegeek’.
Copying files from `/etc/skel’
Enter new UNIX password:
Retype new UNIX password:
No password supplied
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for thegeek
Enter the new value, or press ENTER for the default
Full Name []: The Geek
Room Number []: 0
Work Phone []: 555-1212
Home Phone []: 555-1212
Other []:
Is the information correct? [y/N] y
A "live" view of a logfile on Linux
This approach works for any linux operating system, including Ubuntu, and is probably most often used in conjunction with web development work.
tail -f /path/thefile.log
This will give you a scrolling view of the logfile. As new lines are added to the end, they will show up in your console screen.
For Ruby on Rails, for instance, you can view the development logfile by running the command from your project directory:
tail -f log/development.log
As with all linux apps, Ctrl+C will stop it.
Thursday, May 20, 2010
Make Your PC Look Like Windows Phone 7
Windows Phone 7 offers a unique and exciting UI that displays lots of information efficiently on the screen. And with a simple Rainmeter theme, you can have the same UI and content directly on your Windows 7 desktop.
Turn your Desktop into a Windows Phone 7 lookalike
To give your Windows 7 desktop a Windows Phone 7 makeover, first you need to have the free Rainmeter application installed. If you do not have it installed, download it from the link below and run the setup. Accept the license agreement, and install it with the default settings.
By default Rainmeter will automatically run when you start your computer. If you do not want this, you can uncheck the box during the setup.
Now, download the Omnimo UI theme for Rainmeter (link below). You will need to unzip the folder first.
This theme uses the Segoe UI and the Segoe UI Light font, so Windows Vista users need to install the segoeuil.ttf font first, and XP users need to install both the segoeui.ttf and the segoeuil.ttf font first. Copy the appropriate fonts to C:\Windows\Fonts, or in Vista double-click on the font and select Install.
Now, run the Rainmeter theme setup. Double-click on the Rainstaller.exe in the Omnimo folder.
Click Express install to add the theme and skin to Rainmeter.
Click Finish, and by default Rainmeter will open with your new theme.
When the new theme opens the first time, you will be asked to read the readme, or simply go to the gallery.
When you open the gallery, you can choose from a wide variety of tiles and gadgets to place on your desktop. You can also choose a different color scheme for your tiles.
Once you’re done, click the X in the top right hand corner to close the Gallery. Welcome to your Windows Phone 7 desktop! Many of the gadgets are dynamic, and you can change the settings for most of them. The only thing missing is the transition animations that Windows Phone 7 shows when you launch an application.
To make it look even more like Windows Phone 7, you can change your background to black. This makes the desktop theme really dramatic.
And, if you want to add gadgets or change the color scheme, simply click on the + logo on the top.
Windows Phone 7 Desktop Wallpapers
If you’d prefer to simply change your background, My Microsoft Life has several very nice Windows Phone 7 wallpapers available for free. Click the link below to download these and other Microsoft-centric wallpapers.
If you can’t wait to get the new Windows phone 7, this is a great way to start experiencing the beauty of the phone UI on your desktop.
Links
Make Your 64 bit Computer Look like a Commodore 64
The Commodore 64 was one of the bestselling home computers ever, and many geeks got their first computing experience on one of these early personal computers. Here’s an easy way to revisit the early years of personal computing with a theme for Windows 7.
With only 64Kb of ram and an 8 bit processor, the Commodore 64 is light-years behind today’s computers. But with a Windows 7 themepack, you can turn back the years and give your computer a quick overhaul to look more like its ancient predecessor.
Age Windows 7 with a click
Download the Commodore 64 theme from PC World (link below), and unzip the files.
Now, double-click on the Themepack file to apply the theme.
This will open your Personalization panel and will automatically change your system fonts, window style, background, and more.
Your desktop will go from your Windows 7 look…
to a modified Windows 7 look that is reminiscent of the Commodore 64.
Open an application to see all the changes … notice the old-style font in the Window boarder and menus.
This theme also changes your Computer, Recycle Bin, and User folder icons to Commodore 64-inspired icons.
And, if you want to go back to the standard Windows 7 look and feel, it’s only a click away in the Personalization dialog. Right-click on your desktop, select Personalize, and then choose the theme you want.
Conclusion
Although this doesn’t give you the real look and feel of the Commodore 64, it is still a fun way to experience a bit of computer nostalgia. There are tons of excellent themes available for Windows 7, so check back for more exciting ways to customize your desktop!
Link
Change The Windows 7 Start Orb the Easy Way
Want to make your Windows 7 PC even more unique and personalized? Then check out this easy guide on how to change your start orb in Windows 7.
Getting Started
First, download the free Windows 7 Start Button Changer (link below), and extract the contents of the folder. It contains the app along with a selection of alternate start button orbs you can try out.
Before changing the start button, we advise creating a system restore point in case anything goes wrong. Enter System Restore in your Start menu search, and select “Create a restore point”.
Please note: We tested this on both the 32 bit and 64 bit editions of Windows 7, and didn’t encounter any problems or stability issues. That said, it is always prudent to make a restore point just in case a problem did happen.
Click the Create button…
Then enter a name for the restore point, and click Create.
Changing the Start Orb.
Once this is finished, run the Windows 7 Start Button Changer as administrator by right-clicking on it and selecting “Run as administrator”. Accept the UAC prompt that will appear.
If you don’t run it as an administrator, you may see the following warning. Click Quit, and then run again as administrator.
You should now see the Windows 7 Start Button Changer. On the left it shows what your current (default) start orb looks like inactive, when hovered over, and when selected. Click the orb on the right to select a new start button.
Here we browsed to the sample orbs folder, and selected one of them. Let’s give Windows the Media Center orb for a start orb. Click the orb you want, and then select open.
When you click Open, your screen will momentarily freeze and your taskbar will disappear. When it reappears, your computer will have gone from having the old, default Start orb style…
…to your new, exciting Start orb! Here it is default, and glowing when hovered over.
Now, the Windows 7 Start Orb Changer will change, and show your new Start orb on the left side. If you would like to revert to the default orb, simply click the folder icon to restore it. Or, if you would like to change the orb again, restore the original first and then select a new one.
The orbs don’t have to be round; here’s a fancy Windows 7 logo as the start button.
The start orb change will work in the Aero and Aero basic (which Windows 7 Start uses) themes, but will not show up in the classic, Windows 2000 style themes. Here’s how the new start button looks with the Aero Classic theme:
There are tons of orbs available, including this cute smiley, so choose one that you like to make your computer uniquely yours.
Conclusion
This is a cute way to make your desktop unique, and can be a great way to make a truly personalized theme. Let us know your favorite Start orb!
Link