Wednesday, December 31, 2003

Managing Terminal Services Sessions Remotely

Managing Terminal Services Sessions Remotely Windows 2000 and up has two command-line tools called qwinsta and rwinsta that can query and reset remote sessions.

Tuesday, December 02, 2003

SnippetCompiler

SnippetCompiler lets you test small blocks of .NET code.

Monday, November 17, 2003

ProFont for Windows, for Macintosh, for Linux

ProFont for Windows, for Macintosh, for Linux

Joel on Software - The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)

Joel on Software - The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)

Thursday, November 06, 2003

SciScoop

This site list breaking science news stories and has links to other science sites.

SciScoop - Exploring Tomorrow

Tuesday, November 04, 2003

FreeTextBox

A free ASP.NET control written in C# implementing MSHTML in Internet Explorer.

FreeTextBox

Northern Hemisphere Aurora Map

Northern Hemisphere Enlarged View

Monday, November 03, 2003

Colorblind Web Page Filter

Here's a useful tool for making sure your website is accessible to people who see colors differently than the average person.

Colorblind Web Page Filter

Neil Gaiman

Neil Gaiman

This looks like it could be interesting.

Thursday, October 16, 2003

Visual Basic Home: Creating Markup Text in Visual Basic .NET

Visual Basic Home: Creating Markup Text in Visual Basic .NET

A tool that will be useful if I ever post any more code.

Slashdot | Yet Another Critical Windows Flaw

Slashdot | Yet Another Critical Windows Flaw

Need to remember to turn off the Messenger service.

Thursday, October 02, 2003

Visual Studio .NET Shortcut Key Guide

O'Reilly has posted Appendix C. Shortcut Key Guide from the book Mastering Visual Studio .NET.

There's also another copy of it here.

Saturday, September 13, 2003

Martian Moonrise

Valley of Fire Night Shots- by Wally Pacholka: "Mars and a spectacular Full Moon rises through Arch Rock in Nevada's 'Valley of Fire' State Park on September 10, 2003 at 8 PM. "

Wednesday, September 10, 2003

Cool Flash Stuff

This site has some interesting Flash applications, including Donkey Kong and 3D Tetris. Some of the apps make some cool music as well.

andre' michelle - made in germany

Monday, August 04, 2003

JavaScript Debugging


// Displays the name of the function
// that just called the given function
function CallerID( func )
{
    // Build the regular expression to extract the name
    var re = /function (\w*)/;

    // Get the code of the caller function
    var callerFunc = func.caller.toString();

    // Extract the name of the caller function from its code
    var nameOfCaller = callerFunc.match( re )[1];

    // Display the name of the caller function
    alert( nameOfCaller );
}


The function above can be used to figure out what called a JavaScript function. To use it call it from the function in question and pass the function to it. For example, the code below would create an alert that displays the name of the function that called myFunc().


function myFunc()
{
    CallerID( myFunc);
}

Saturday, August 02, 2003

Sunday, July 27, 2003

Wednesday, July 16, 2003

Thursday, July 10, 2003

Daschle Honors Eureka

Daschle Honors Eureka On the Floor of the Senate
For Its Amazing Record of Student Achievement


Here's a quote I like:

Mr. President, I don't know what they are putting in the water in Eureka but, whatever it is, I hope they continue. These young people are an inspiration to their communities and their fellow students. They have proven there is no obstacle you cannot overcome, and that you should always pursue your dreams. I commend them and the entire town of Eureka for their achievement, and hope to see even more Discover Card Tribute Award winners from South Dakota in the future.

I drank that water for the first 18 years of my life.

Wednesday, July 09, 2003

Thursday, July 03, 2003

Wednesday, July 02, 2003

Google Toolbar Test

Here's a test of the BlogThis button from the Google Toolbar 2.0 beta.

Google News

First Post

I've finally gotten around to creating my own blog.

To start out with this blog is going to mainly be a place to store links I find interesting. Although that may change in the future.