Outsourcing Santa?#

I couldn't resist it's just too funny.  There is one disclaimer; I actually think outsourcing is a great thing when used properly.

 

Tuesday, December 13, 2005 7:17:18 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Konfabulator Widgets#

I have been using Konfabulator for about a year now and yesterday I realized there were over a thousand Widgets in their gallery.  I thought I would share the list of widgets I use ( in random order ):

  1. SiteWatcher_3
  2. Lazy Launcher
  3. Battery ( Built-In )
  4. WiFi Signal ( Built-In )
  5. The Weather ( Built-In )
Friday, December 09, 2005 11:08:27 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

local.live.com#

Yesterday Microsoft lauched their beta of Virtual Earth.  Why should you go look?  One answer, their Birds Eye View. 

I am really digging the Vegas strip

Friday, December 09, 2005 7:39:21 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Konfabulator Is Now Free#

I have been a fan of this product for some time now.  Recently Yahoo acquired Konfabulator and it looks like it's now free.  http://www.konfabulator.com/

Friday, November 25, 2005 8:58:36 PM (Central Standard Time, UTC-06:00) #    Comments [1]  | 

 

Convert Your Code to HTML#

Nice little web utility to convert your code into HTML http://puzzleware.net/codeHTMLer/

Friday, November 25, 2005 8:40:10 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Moved to DasBlog#

If was finally time to move off of WordPress and onto DasBlog.  Why you ask? 

  1. .Net based!
  2. Rich text editior. I finally can display code as code should look.
  3. Overall it's just a better blogging application, simple, easy and looks nice!

Installation is CAKE.  It took me about 3 mintues to get it up and running!  Exactly the way an application should install.

 

Thursday, November 24, 2005 10:17:25 PM (Central Standard Time, UTC-06:00) #    Comments [1]  | 

 

VSTS on VSTS on Channel 9#

A few of my VSTS comrades discuss VSTS http://channel9.msdn.com/showpost.aspx?postid=139114

Thursday, November 24, 2005 11:08:26 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Blog Post of the Year!!!#

Possibly the funniest blog post I have ever read: http://neopoleon.com/blog/posts/16512.aspx

Wednesday, November 23, 2005 10:33:42 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

System.Diagnostics Tracing and DebugView#

The other day I ran across DebugView by Sysinternals. After playing with it for a few I suddenly had a re-found love for System.Diagnostics.

“DebugView is an application that lets you monitor debug output on your local system, or any computer on the network that you can reach via TCP/IP. It is capable of displaying both kernel-mode and Win32 debug output, so you don’t need a debugger to catch the debug output your applications or device drivers generate, nor do you need to modify your applications or drivers to use non-standard debug output APIs.” from Sysinternals

This means you have a nice little exe you can carry on a thumb drive and collect those trace events at runtime on from any machine. Let’s look at some code.

First define a TraceSwitch. This switch gives you the ability to determine when to throw an event. You can define multiple switches.

public static TraceSwitch GeneralTraceSwitch = new TraceSwitch(”General”, “My Trace Switch”);

if ( GeneralTraceSwitch.TraceError )
  Trace.TraceError( “YOUR ERROR MSG” );

Now let’s setup configuration. There are two major sections, listeners and switches. Listeners define where System.Tracing should send your events. The example below sends events to both the EventLog and a text file. Having said that has no influence on DebugView, you do not have to define a listener for DebugView to pick them up. The switches section defines the level of events to throw. 1 is the minimal number of events, while 4 is everything.


<configuration >
 <system.diagnostics >

  <trace autoflush=”true” indentsize=”0″ >
    <listeners >
      <add name=”EventLogTraceListener” type=”System.Diagnostics.EventLogTraceListener” initializeData=”Team Build”/>
      <add name=”TextWriterTraceListener” type=”System.Diagnostics.TextWriterTraceListener” initializeData=”.\ci.log” />
    </listeners >
  </trace >

  <switches >
    <add name=”General” value=”4″ />
  </switches >
 
 

</system.diagnostics >
</configuration >

Friday, October 21, 2005 10:15:26 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

All content © 2010, Clark Sell
On this page
This site
Calendar
<December 2005>
SunMonTueWedThuFriSat
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567
Archives
Sitemap
Blogroll OPML
Disclaimer

Powered by: newtelligence dasBlog 2.3.9074.18820

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

Send mail to the author(s) E-mail

Theme design by Jelle Druyts


Pick a theme: