jailbreak iphone/ipod touch 3G MC Model

This is just my note:

1- Download BlackRa1n from Blackweather.com or google it
2- Download iTune any version and install it on PC.
3- Double-click on BlackRa1n , app start, click on make it rain, then wait few second, on screen of ur iphone show BlackRa1n.
4- then if you lucky you can see BlackRa1n icon on your iphone, Make sure you connect to internet with WiFi
5- touch on BlackRa1n icon to run it. if you have internet you will see unless Cydia appear on the list, don't wait, touch on Cydia to install, it would take a while depend on your internet connection
6- after you install Cydia your iphone may reboot, then it will show image to connect your iphone to itune, and on your PC, itune may alert you to restore it. Don't panic, run BlackRa1n to force your iphone run into lock screen (click make it rain, wait for few minute, you will go to logon screen).
7- on Iphone, go to Cydia and intall BossPref ( or SBSettings ) and OpenSSH, if your iphone reboot, don't forget BlackRa1n. (you can go to search and type )
8 -on Iphone, add source to cydia by run cydia, goto Manage, goto Source, touch edit, touch add, type this address:
http://cydia.hackulo.us . click ok, anyway till in done.
9- on Iphone, goto search, type : AppSync for OS and then you will see two result: the end is show the version for your firmware, if your firmware is 3.1.3 or 3.1.2, please select it depend on your firmware (to check your firmware, on Iphone, goto setting>general>about look down see firmware).
10, ok- install it,
11- Restart your iphone
12- Welcome your iphone start with BlackRa1n.
13- Google to find Cracked IPA , then double-click on it, you will go to Itune, then you can syn it to your iphone.
14- let enjoy it, if you are rich do not do the jailbreak, please support Apple Policy, buy App from Itune store to support developer, keep them create new app, and game for you.

I like and support techonolgy of Apple, I do the jailbreak to my ipod, because I don't have fast internet to download app from itune store, and I don't use master card.

However, please don't do this, if you have money to buy app from itune store.

p1

Remove some string from string

theContent = theContent.split(“damn”).join(“darn”);

p1

PHP Send Copy Mail

Is it possible (I'm sure it must be) for a copy of the same email to be sent to the person who has just filled in the form?

$headers .= "Cc: $email\r\n";

Not a big deal, but if you want to hide the fact the email was copied to someone else, you can do the following:

$headers .= "Bcc: $email\r\n";

copy from Habtom 's post

p1

Control a flash animation inside a Flex application

http://www.riacodes.com/flex/control-flash-animation-inside-a-flex-application/

p1

Get Bitmap Data and resize movieclip

var resultShirt:BitmapData = new BitmapData(toWidth, toHeight);

var copyMatrix:Matrix = new Matrix;
copyMatrix.scale(toWidth/530, toHeight/300);

resultShirt.draw(shirtObj, copyMatrix);

return resultShirt;

p1