Samsung Epic versus HTC Evo - Sprint 4G

4G Smartphone  Features

HTC EVO 4G

Samsung Epic 4G

2G Network

CDMA 800 / 1900
CDMA 800 / 1900

3G Network

CDMA2000 1xEV-DO
CDMA2000 1xEV-DO

Announced

2010, March
2010, June

Status

Available. Released 2010, June
Coming soon. Exp. release 2010, August

Dimensions

4.8 x 2.6 x 0.5 inches 122 x 66 x 13 mm
4.9 x 2.54 x 0.56 inches [...]

How to make multiple lines of text in Flex components

Since \n doesn’t work, you have to specify the newline code in an escaped manner.
<mx:TextArea text=”Saving. Please wait.” textAlign=”center” />

PHP Class for MySQL and Prepared Statements Reference

For prepared statements in PHP / mySQL check out:
http://mattbango.com/notebook/web-development/prepared-statements-in-php-and-mysqli/
Combine that with:
<?php
class MySqlDriver {
private $_Link;
public function __construct( <…> ) {
$this->_Link = mysql_connect( <…> );
}
// this will be called automatically at the end of scope
public function __destruct() {
mysql_close( $this->_Link );
}
}
$_gLink = new MySqlDriver( <…> );
// and you don’t need [...]

SVN Vendor Branch Management

Here’s the best reference I could find on vendor branching.
http://svnbook.red-bean.com/en/1.1/ch07s05.html
The main idea is if you are updating or modifying another group’s source project and you want your updates to be applied to updates from the group’s next release.  This is called vendor branching.  Basically, create a vendor repository and import the vendor’s code to that [...]

Subclipse, eclipse, svn, “Error while reading log messages from file”

I got this error when in Flex Builder / Eclipse and using SVN.
I had done a commit, then SVN thought it needed to commit the base directory which had no revisions.  I committed it, then came back and added log comment later on.  When I went to view the revision tree, SVN gave the message [...]

Delete a Subversion (SVN) Revision

If you just had a commit error on the repository or just committed something by accident, an easy way to remove the revision from the repository is to reload the repository up until the previous revision.  Say the latest commit 603 just had an error or mistake.
First backup the repository up until the previous revision:
svnadmin [...]