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
Monday, November 17, 2003
Thursday, November 06, 2003
SciScoop
This site list breaking science news stories and has links to other science sites.
SciScoop - Exploring Tomorrow
SciScoop - Exploring Tomorrow
Tuesday, November 04, 2003
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
Colorblind Web Page Filter
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.
A tool that will be useful if I ever post any more code.
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.
There's also another copy of it here.
Wednesday, October 01, 2003
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
andre' michelle - made in germany
Tuesday, August 26, 2003
Monday, August 25, 2003
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
Saturday, July 26, 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.
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
Monday, July 07, 2003
Thursday, July 03, 2003
Wednesday, July 02, 2003
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.
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.
Subscribe to:
Posts (Atom)