-
Recent Posts
Recent Comments
Archives
- January 2011
- December 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
Categories
Meta
Category Archives: Technology
iPhone Dev: Adding the slide transition between views
The slide transition that’s used in the navigation controller is not a standard iPhone SDK transition. To add the slide transition (from right) between different UIViews use the following code //1. Add the QuatzCore Framework from library to the Frameworks … Continue reading
Toll free bridges and the iPhone
Good description of toll free bridges (data types in the Core Foundation framework (Carbon) and the Foundation framework (Cocoa) that can be used interchangeably) in a Stack Overflow question.
Where is the jboss.bind.address configured?
From ConfigureServerPorts jboss.bind.address is configured using the “-b” option to the JBoss startup script (run.sh or run.bat in the bin directory). For example, run -b 0.0.0.0 enables jboss to listen for connections on all IP addresses of the machine (if … Continue reading
Posted in Technology
Comments Off
View the JBoss JNDI Namespace
You can view the JNDI entries in JBoss by 1 – Browse to http://localhost/jmx-console 2 – Click “service=JNDIView” 3 – Invoke the “list()” operation Notes: 1 – This is for JBoss 4.2.3.GA 2 – You must have the jmx-console installed.
Shrink a VMWare Fusion Image
I run VMWare Fusion on my Mac. The Windows XP image is 13 GB and the VM disk is set to 30 GB max on 2 GB boundaries. I began to run out of disk space on my Mac and … Continue reading
Posted in Technology
Comments Off
MySQL XA datasource and JBoss
For some reason, I had a really hard time finding how to setup an XA datasource in JBoss for MySQL. Below is the contents of the file mysql-xa-ds.xml. jdbc/DataSource jdbc:mysql://localhost:3306/ordb com.mysql.jdbc.jdbc2.optional.MysqlXADataSource root password true org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter org.jboss.resource.adapter.jdbc.vendor.MySQLValidConnectionChecker 1 10 10 mySQL
Posted in Technology
Comments Off
Wireshark, WPA2, and MacBook Pro
It took me a couple of hours of playing with settings to get the WPA2 decode feature of Wireshark to work. I had to do the following Navigate to Edit > Preferences > Protocols > IEEE 802.11 Select Enable Decryption … Continue reading
Posted in Technology
Comments Off