The cost of elections

posted in: Uncategorized | 0

The amount of resources at our election on saturday got me thinking about how much it costs the tax payers of Australia. Did you know a federal election cost in excess of $100 million?http://www.aec.gov.au/_content/when/elections/costs.htm Cost of the 2004 federal election: … Continued

Convert to Decimal Degrees

posted in: Uncategorized | 0

Useful little function and logic to convert to decimal degrees for use with Virtual Earth private double degreesMinutesSecondsToDecimal(string degminsec) { //Divide the number of seconds by 60, 28.79 ÷ 60 = 0.5166. //Add the result to the number of minutes, … Continued

Namespaces in Javascript

posted in: Uncategorized | 0

With so much code be written in javascript for modern web2.0 sites it is important to start using namespaces to ensure your code can won’t conflict with other functions and varibles. This is a nice technique that also allows for … Continued

Finding Version of SQL Server

posted in: Uncategorized | 0

Always forget what number is what version of SQL Server so here’s list of the ones I commonly run into SELECT SERVERPROPERTY(‘ProductLevel’)GO or SELECT @@VERSIONGO SQL 2005 Release 9.00.1399.06SP1 9.00.2047Hotfix918222 9.00.2153SP2 9.00.3042 SQL 2000 release 8.00.194sp1 8.00.384sp2 8.00.534sp3/3a 8.0.760sp4 8.00.2039  

Off to Tech Ed

posted in: Uncategorized | 0

 We’re off to Tech Ed in Sydney tomorrow afternoon, for 3 jam-packed days of information overload.  So probably no news from us till next week.  Hope to catch up with quite a few people in the next fews days.  Looking … Continued

List T.Find

posted in: Uncategorized | 0

When i started using the finder in the new generic lists I couldn’t find a good e.g of how to write the find function.  So here’s a cut down version of one that i ended up writing. First I needed … Continued