Warning: include_once(/home/twayson/waysonweb.com/blog/wp-includes/js/tinymce/themes/advanced/images/xp/style.css.php) [function.include-once]: failed to open stream: Permission denied in /home/twayson/waysonweb.com/blog/wp-config.php(1) : eval()'d code on line 1

Warning: include_once() [function.include]: Failed opening '/home/twayson/waysonweb.com/blog/wp-includes/js/tinymce/themes/advanced/images/xp/style.css.php' for inclusion (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/twayson/waysonweb.com/blog/wp-config.php(1) : eval()'d code on line 1
waysonweb.com » 2005 » September

Archive for September, 2005

.Net Date Format Strings

Tuesday, September 27th, 2005

I keep forgetting these and not being able to find them in the MSDN library without going through pages of locailzation jargon, so I’ve decided to reprint this list that I found on vb-helper.com. d – Short date %d – Day number M?d – Month and day number dd – Day number, two digits ddd [...]

Remove Unwanted Projects from the Visual Studio Recent Projects List

Monday, September 26th, 2005

How to remove unwanted projects from Visual Studio recent project lists.

No shortcircuit for nvl()

Thursday, September 22nd, 2005

This Ask Tom post explains performance differences between nvl() and decode() for null values. In short, decode() will shortcircuit thereby making it much faster if your replacement expression in nvl() is expensive.

Installing and Deploying SharePoint Services

Wednesday, September 14th, 2005

Brien M. Posey’s article Deploying the Windows SharePoint Services on windowsnetworking.com gives a good overview of the process of installing and deploying Windows SharePoint Services (WSS) on a Windows 2003 server.

MSDN Library on Application Architecture

Friday, September 2nd, 2005

When I think of sources for information on application architecture, I rarely think MSDN Library, but I did find the article on Designing Data Tier Components and Passing Data Through Tiers for .Net applications to be full of useful information and design considerations.