Derek Hatchard blogs on
Church Radius Blog


Feed Yourself:


Subscribe in Bloglines

Add to Google

Subscribe by Email:


.NET Experts on Tap
About ArdentDev.com
Ardent Sites
Ask the Experts
Careers
Consulting and Mentoring
Contact Ardent
News & Noteworthy
Portfolio
Writing


On this page....
Vista / WPF User Experience Showcase
VPC From Microsoft with IE6 and IE7
Debugging SMTP Filters
Dev East Was Great
Dev East 2006 is Nov 24 in Halifax
Dev Podcast Show #2 Posted
Running DBCC CHECKDB Tonight
Slashdot Ran Out of Comments
Announcing Dev East 2006
Run IE7 Side-by-Side with IE6
New Developer Podcast / Netcast
Next Gen Web Applications Workshop in Moncton

Send mail to the authors Email Us

Archives

Navigation

Categories
 Code
 Tools

Disclaimer
The opinions expressed in this site are those of the individual authors and do not necessarily represent the official view of Ardent Development nor its employees, subsidiaries, partners, or customers.

© Copyright 2009, Ardent Development

Powered by: newtelligence dasBlog 1.8.5223.1



 Wednesday, December 06, 2006

   
     

The Panel is the place to collect showcases of the new user experiences [in Vista and WPF] and provide insights on how they were implemented.

http://www.microsoft.com/emea/msdn/thepanel/

Definitely check out UniveRSS, a 3D Vista RSS reader.  I can't really see myself using this but it's neat to see.  (And it did run like crap on my tablet because the NVIDIA WDDM drivers aren't final and things crash when I try the pre-release.  Of course the XP driver causes problems too - could be a hardware issue I suppose.  Or just crappy drivers.  Who knows.)

UniveRSS: http://www.microsoft.com/emea/msdn/thepanel/featured/universs.aspx 

(CBC Radio 3 is in the screenshot - woohoo).

Posted by Derek Hatchard 12/6/2006 11:09:39 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Saturday, December 02, 2006

   
     

This is pretty cool:

a VPC virtual machine image containing a pre-activated Windows XP SP2, IE6 and the IE7 Readiness Toolkit to help facilitate your testing and development. The image is time bombed and will no longer function after April 1, 2007

http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx

Posted by Derek Hatchard 12/2/2006 1:34:45 AM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Wednesday, November 29, 2006

   
     

If this looks familiar to you:

public class Catchall : ISMTPOnArrival
{

void ISMTPOnArrival.OnArrival(CDO.Message msg, ref CDO.CdoEventStatus EventStatus)

then you know that debugging SMTP filters sucks.

Posted by Derek Hatchard 11/29/2006 3:10:37 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Tuesday, November 28, 2006

   
     

http://www.derekhat.com/index.php/2006/11/28/dev-east-was-great/

The room was packed and the content was great. Definitely a success.

Thanks to everyone who helped with Dev East. Special thanks to Mike Hatfield and Darryl Skeard who showed up early to help with registrations and setup. Thanks to Chris Maxwell at the Dalhousie Faculty of Computer Science for much needed tech support. And thanks to Dr. Morven Gentleman for the great venue.

Posted by Derek Hatchard 11/28/2006 11:43:18 AM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Friday, November 17, 2006

   
     

Attention software developers in eastern Canada

Dev East 2006 is just one week away! Come join your fellow developers for a day of insightful presentations, thousands of dollars in prizes, and a chance to interact with your peers. It all happens in Halifax on Friday, November 24, 2006 from 8:30am to 5:00pm.

Go to www.DevEast.com to register and get all the details including a student special just announced last night! Registration is only $10 thanks to the generous support of our sponsors:

Release Sponsor

Microsoft Canada

Beta Sponsors

Spheric - The Enterprise Portal People      Kamelio - Helping Marketers Adapt at High Speed

Want to be a sponsor? Email derek@ardentdev.com

Alpha Sponsors


nicomit.com



Fun-Raiser




ArdentDev.com

In-Kind Sponsors








TechEast.ca
Posted by Derek Hatchard 11/17/2006 3:46:10 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Wednesday, November 15, 2006

   
     
Episode #2 of the still nameless developer podcast has been posted.  Show notes and MP3 can be found here:

http://netcasts.ardentdev.com/index.php/2006/11/13/developer-podcast-2-show-me-the-smack/

The RSS feed with enclosures is http://netcasts.ardentdev.com/index.php/feed/.


Posted by Derek Hatchard 11/15/2006 1:43:50 AM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Monday, November 13, 2006

   
     

Sigh...  I'm at the office this evening trying this:

DBCC CHECKDB ('sgvault', REPAIR_ALLOW_DATA_LOSS)

Fingers crossed.

First the mail server went down on the weekend while out of town.  Got it back up yesterday afternoon over remote desktop with only a few problems.  Then today discovered that there was a problem with the Vault database (source code control).  Looks like the corruption happened prior to last night's backup so the nightly backup is of a corrupted database.  So trying a repair before restoring the previous backup.

Update: Ugh, not a good sign:  There are 28948 rows in 129 pages for object 'tblfolderentrypins'.

Update 2: I/O error (bad page ID) detected during read at offset 0x0000004d526000 in file 'E:\Databases\sgvault.mdf'. Connection Broken.  Grrrrrr.

Update 3: Ran repair a few more times.  Now says: CHECKDB found 0 allocation errors and 0 consistency errors in database 'sgvault'.  And I can now select from tblfolderentrypins, which I couldn't do before.  Fingers still crossed.

Update 4: Can now access repository properties with Vault Admin tool.  That's an improvement.

Posted by Derek Hatchard 11/13/2006 7:42:27 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Friday, November 10, 2006

   
     

http://slashdot.org/article.pl?sid=06/11/09/1534204

Last night we crossed over 16,777,216 comments in the database. The wise amongst you might note that this number is 2^24, or in MySQLese an unsigned mediumint. Unfortunately, like 5 years ago we changed our primary keys in the comment table to unsigned int (32 bits, or 4.1 billion) but neglected to change the index that handles parents. We're awesome! Fixing is a simple ALTER TABLE statement... but on a table that is 16 million rows long, our system will take 3+ hours to do it, during which time there can be no posting. So today, we're disabling threading and will enable it again later tonight. Sorry for the inconvenience. We shall flog ourselves appropriately.

Posted by Derek Hatchard 11/10/2006 10:00:57 AM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 

   
     

The Dev East 2006 one day developer conference will happen November 24, 2006 in Halifax, NS.  Cost is only $10 thanks to the generous support of sponsors.

Visit www.DevEast.com for details and to register.

Hope to see you there!

Posted by Derek Hatchard 11/10/2006 9:23:32 AM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Friday, November 03, 2006

   
     

These instructions are for running IE7 side-by-side on Windows XP SP2. No warranty! The machine I tried this on became a bit unstable after doing this. I had weird issues with Oulook and very slow page loads in IE7.

  • Download IE7 (file I downloaded was IE7-WindowsXP-x86-enu.exe)
  • At the command line, run IE7-WindowsXP-x86-enu.exe /x to run only the self-extraction
  • Enter the path you want for the extracted files
  • In the new folder, create an empty text file called iexplore.exe.local
  • Go into the update folder
  • Run idndl.exe
  • Run nlsdl.exe
  • Run xmllitesetup.exe
  • Reboot
  • Go back to the extracted folder and run iexplore.exe. It should work...

Use this at your own peril. I've noticed a few problems with IE7 running this way but it is functional.

Posted by Derek Hatchard 11/3/2006 5:25:52 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 

   
     

I'm pleased to announce that Mike Mullen and I have launched a new developer-oriented podcast / netcast. The first show just went up a few hours ago:

Show notes for the nameless developer podcast

Download the MP3

Until we come up with a catchy name, the shows are being posted at http://netcasts.ardentdev.com/. The RSS feed with enclosures is http://netcasts.ardentdev.com/index.php/feed/.

Posted by Derek Hatchard 11/3/2006 5:22:11 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 Tuesday, October 10, 2006

   
     

Next Gen Web Applications Workshop

Wednesday October 11, 1:00pm - 4:00pm
http://upcoming.org/event/111833/

Scientific Park
55 Crowley Farm Road
Moncton, New Brunswick
E1A 7R1

(Yahoo! Maps, Google Maps)

The Next Gen Web Applications Workshop will be the first conference of its kind in the Moncton area. Topics include: web 2.0 practices and implementations, enterprise wiki software, AGILE development and product management in Web 2.0 as well as others.

This event is free for anyone, however, you must register here in order to attend: http://upcoming.org/event/111833/. See you there!.

Scheduled to Speak:

Dan Martell, CEO
Spheric
"Enterprise 2.0: Enter the Wiki"

Derek Hatchard, Founder, CEO
Ardent Development Solutions
"The AJAX Revolution"

Mike Mullen, CTO
Kamelio


Posted by Derek Hatchard 10/10/2006 12:37:55 PM (Atlantic Standard Time, UTC-04:00)
#   Disclaimer  |  Comments [0]  | 
 
© 2005 Ardent Development Solutions