Tuesday, January 27, 2009

Gangasani Harish Reddy

Hai guys,
This is Gangasani Harish Reddy.

Thursday, October 23, 2008

Mahesh - Trivikram Movie in July 2009!



The Pre-Production work for Superstar Mahesh's upcoming Movie has picked up momentum. Director Trivikram Srinivas along with a Make-Up artist from Mumbai have done the Make-Up test for Parvathi Melton at Padmalaya Studios today. Namratha Mahesh along with Cinematographer Sunil Patel, Bulli and other Production managers were also present at the Make-up session. The director along with the Cinematographer will be leaving to Namibia and Rajasthan on 29th of this month to finalise the loactions before the shooting begins. The regular shooting will start in Rajasthan from 10th or 15th of November. This schedule will continue for 45 days including 12 days in Namibia. Major action sequences on Hero will be shot in Namibia. Among the lead cast Parvathi Melton, Naazar, Prakash Raj, Brahmanandham, Sunil, Dharmavarapu Subrahmanyam, Ali, Venumadhav have been finilsed till now. As disclosed earlier on princemahesh.com Manasa, a Bollywood costume designer will be doing Mahesh's Costumes for this Extravaganza Entertainer. The makers are planning to release the Movie on July 18th, 2009. Bolckbusters like Superstar Mahesh's Rajakumarudu and Superstar Krishna's Vajrayudham were released in July. 

Tuesday, October 21, 2008

Lights... Camera... Action... Finally!!!



Finally! the good news for which Prince Fans across the world have been eagerly waiting for the past several months has arrived. And princemahesh.com proudly brings it to you for the first time exclusively. The camera's for Mahesh's upcoming movie under the direction of Trivikram Srinivas will start rolling from the 3rd of November.

The Deadly Duo Is Back


Superstar Mahesh and Prakash raj have a terrifc on-screen record in Tollywood. Be it Rajakumarudu, Bobby, Okkadu, Arjun, Athadu or Pokiri, the duo have always been beyond expectations of the audience. Now after a gap, Trivikram Srinivas is all set to repeat the magic of this deadly combo in Superstar Mahesh's upcoming Movie. This Movie is scheduled to go on floors from November 3rd. As Informed earlier after the first schedule in Ramoji Film City the crew will be leaving to Rajasthan where major part of the movie will be shot.

Monday, October 20, 2008

Copy and Paste mp3's directly into your ipod without using itunes


rebuild_db


See what's new or get it at SourceForge.
Overview

This little program enables iPod shuffle users to finally get rid of all that iTunes or other complicated playlist management stuff. Due to the simple structure of the shuffle (compared to the »big« iPods), it is possible to use the player almost like any other USB flash MP3 player: You simply copy MP3 files onto it. You only need to run the rebuild_db program after you added or removed files from the iPod. This approach hasnumerous benefits:

You don't need iTunes, ml_ipod or GNUpod anymore. Simply copy some MP3 files into the iPod volume and start this teensy 8k program.
You aren't restricted to store your music in the /iPod_Control/Music subdirectory. Build your own directory and filename structure. Your iPod, your rules!
You may use the iPod on as many computers as you want.
The actual iTunes database is left untouched, your iPod should still work with iTunes, if you like. (Note that this wasn't true for me; my iTunes installation now refuses any co-operation with my iPod. But I'm pretty sure that this is due to my experimentation with the iTunes database, and not a side-effect of using rebuild_db.)
If you do not use the iPod_Control folder for your music, iTunes will not delete your files again without asking.
rebuild_db uses a quite sophisticated shuffle algorithm (»smart shuffle«) that arranges your tracks in a more uniform way.
Supported Platforms

rebuild_db comes in two flavors: A platform-independent python script, and a plain C Win32 console application.

The script requires some recent version of Python (tested with versions 2.2 through 2.4) and should work on any platform Python supports. This includes Linux, Windows, MacOS X and a large amount of other Unix-like systems.

The Win32 version is made for Windows users (obviously), and requires no additional installed software to work. Please note that it is not supported any longer and lacks many features. However, you may continue to use it if you don't need all the cool stuff like smart shuffle or custom rules.

Usage

Windows users should install Python first, because (as stated above) the Windows native version is now unsupported. Users of other operating systems (including Mac OS X) are likely to have Python installed by default.

First, initialize your iPod with iTunes (that is, give it a name, and enable its usage as a mass storage device). This is needed because the iPod shuffle, despite not really using the iTunes database, is checking for its presence. You do not need to copy any tracks to the iPod; just make sure that a hidden subdirectory with the name »iPod_Control« appears in the root directory of the iPod volume. You may even delete the iPod_Control/Music directory afterwards. If this does not work for you (e.g. because you don't have access to a computer that runs iTunes), you may also try this dump of my own iPod_Control directory.

Second, put your favorite MP3 files onto the iPod. Give them the names you like and arrange them in directories as you like. Only make sure that the names are not too long. (The total path length may not exceed 256 characters.)

Third, put rebuild_db.py into the iPod's root directory and start it. A double-click should do; if not, you have to open a terminal yourself and chdir to the iPod's root directory (i.e. the drive letter on Windows or /Volumes/NameOfYourIPod on Mac OS X) and start the script manually with `python rebuild_db.py'. The program will scan the iPod volume for playable files. It also creates file called rebuild_db.log.txt that contains the program's output messages. If you don't find error messages there, everything should be OK.

Finally, disconnect your iPod shuffle. Of course, you should do this safely, e.g. using the »safe removal of devices« icon in the Windows system tray, the Finder's eject button, or umount on Linux/BSD. You may now have some fun listening to your music :) If you want to add more music later (or delete other tracks that got too boring ;), go back to step 2.

If this is too confusing for you and you are a Mac OS X user, you may want to read the following (less technical, but slightly outdated) description written by a contributor.

Sunday, October 19, 2008

Make a file of the size you want.

Making A file of the size you want


How to make a file of the size you want ?
Let us assume you want to make a file of size 10000kb
Convert it to bytes -> 10000*1024 which comes out to be 10240000 bytes

Open calculator (win key+r -> type in calc )
Choose view mode to be Scientific
one
Type in 10240000 and convert it to hex it comes out to be 9C4000
Convert this value to 8 digits by padding zeroes to its left -> so finally it comes out be 009C4000

Open Command Prompt
(win key + r -> type in cmd )
Type DEBUG filename.dat
it'll show file not found error ,ignore it
Type RCX -> Enter -> then last four hexadecimal numbers i.e. 4000 ->Enter
Type RBX -> Enter -> then first four hexadecimal numbers i.e. 009C->Enter
Type W ->Enter
Type Q ->Enter

W stands for write and Q for quit

Now check the file you just made by dir command ->dir filename.dat

Using the same technique you can make files as big as you want

Here is an image to show how exactly everything can be done
http://img160.imageshack.us/my.php?image=f...ofchoicepu3.jpg
Another simpler method by Prash2488

try this command on cmd
fsutil file createnew [path]{e.g.:-F:new foldervirus.txt} [SizeInBytes]then press enter:

Are you beautiful or not? Take this quiz and find out your self