Android Apps

Adobe Reader
Aldiko
AndFTP
AndFTP Pro
Angry Birds
Barcode OI Plugin
Barcode Scanner
ES File Explorer
ES Task Manager
Explorer (not used much)
Fandago
Flashlight
FlightVew Free
Go Launcher EX
Maps
Market
MoboPlayer
MoboPlayer Codec for ARM
Movies
Notepad
OI Shopping List
OneBusAway
Opera Mini
QuickPic
redbox
Slashdot Reader
SManga
SMS Backup & Restore
Speed Test
Starbucks
Voice Recorder
Winamp
World Clock
Yelp
YouTube

Grep Using Regular Expression Example

Use the following example with Cygwin to "-r" recursively scan "-i" ignoring case "-l" list files and use "-E" regular expression which finds all strings that have a pairing of in JSP files

grep -r -i -l -E 'personal.+information' *.jsp

Struts2Action with Tomcat and Eclipse

Tomcat

You will need to add the following XML entry in order to use Tomcat Manager
/conf/tomcat-users.xml
<tomcat-users>
<role rolename="manager"/>
<user username="tomcat" password="tomcat" roles="manager"/>

You can use the XAMPP MySQL engine by making the following changes.
/WEB-INF/applicationContext.xml
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.gjt.mm.mysql.Driver" />
<property name="url" value="jdbc:mysql://127.0.0.1:3306/manning" />
<property name="username" value="root" />
<property name="password" value="root" />
</bean>

Point to a JDK of your choice and use the JAVA_OPTS variable to allow debugging in Eclipse.
/bin/startup.bat
SET JAVA_HOME=C:\java\jdk1.6.0_17
SET JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n

Eclipse

Add jar files for build from the following:

  • C:\tomcat\lib
  • C:\tomcat\webapps\Struts2InAction\WEB-INF\lib

Using PERL PPM through firewall proxy

Use the following in DOS prior to running PPM
REM If the proxy server requires a user name and password
REM include them in the following form:
REM http_proxy=http://username:password@proxy.example.org
set http_proxy=http://mlr:password@10.194.90.18:80

Installing NetBeans without JDK 1.5+

Get the current JDK flavor you want, and you will need to start the program the following way:
C:
CD "C:\Java\NetBeans 6.7\NetBeans 6.7\bin"
netbeans.exe --jdkhome "C:\Java\jdk1.6.0_14"

The --jdkhome switch is the "special sauce" that makes it work.