Archive for the General Technology Category

List files sorted by date in java

File inboxDir = new File("Path to your directory"); File[] files = inboxDir.listFiles(); Arrays.sort( files, new Comparator() { public int compare

General Technology

No Comments

Using PHP FastCGI mode on Windows Server 2003 x64 w/ IIS in 32-bit mode

I recently needed to upgrade the PHP for a particular site from 5.2.6 to 5.3.0.  Of course, this is when I found out that PHP no longer supports

Custom Development, General Technology

2 Comments

Unidev Employees Attend St. Louis Day of .NET Conference

The second annual St. Louis Day of .NET conference was held on August 28th and 29th, 2009. Over 500 local .NET developers, architects and other techno

General Technology

1 Comment

Bidirectional Associations and JiBX

I recently needed to use JiBX to parse a XML document into domain objects that contained bidirectional associations with collections.  The issue

General Technology, Java

No Comments

Paging the query result

If you have 5000 products in database, you may like to show them in pages on the screen. It's a common request to only retrieve the records on a certa

General Technology, Oracle

No Comments

Google App Engine is open for Java Now

 Google App Engine Java Overview. You can sign up here.

General Technology, Java

No Comments

XMarks Smarter Search feature on IE8 produces mixed content warning

I just installed XMarks to see if I can start synchronizing my bookmarks between all of my various locations and all the browsers installed.  How

General Technology

2 Comments

The Four Pillars of ASP.NET

Paul Litwin posted an interesting article that discusses the four pillars of ASP.NET (Web Forms, MVC, AJAX, and Dynamic Data). He said: "Microsoft

General Technology

No Comments

Calling Oracle Stored Procedure from Hibernate

While calling Oracle stored procedure from Hibernate  there is couple of rules that we need to follow. There can be only one return value and this m

General Technology, Java, Oracle

7 Comments

VS2008 Tips & Tricks

As a .NET developer, I'm sure you have your own tricks to make your life easy. But you may still like to know more tricks on Visual Studio. Read this

General Technology

No Comments