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
JMeter Tutorial
Tutorial shows how to use proxy server to capture form information and basic setup.
Refer: http://vimeo.com/3453772
Debugging Bash Scripts
Run the script with a -x parameter and it will run the script in its entirety but print each line before it executes.
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
grep -r -i -l -E 'personal.+information' *.jsp
SQLite and PHP Example
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
DOJO Toolkit Overview and Links
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
Deploying / Running Jar Files
You can run the jar from from the current library and point to your desired jre library by the following:
.\jre6\bin\java.exe -jar DesktopApplication1.jar
Running and Deploying Jar Files
Refer: article
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.
