Remote Reboot with Telnet and C##
Here is an article that discusses how to write a telnet application that can reboot your server remotely... a must for windows computers :).
Categories: Code Links | Networking | Programming | .Net | C# | Software | Windows
Wednesday, October 29, 2003 1:14:20 PM (Central Standard Time, UTC-06:00) #    Comments [2]  | 

 

Installing a Computer In Your Car#
Categories: Hardware | Gadgets
Thursday, October 23, 2003 10:12:35 AM (Central Daylight Time, UTC-05:00) #    Comments [2]  | 

 

Loan Calculator#
This page is a great tool for calculating all kinds of stuff for loans and mortgages.

It is really robust, and with all my recent mortgage, and now car loan stuff, it has been really handy.

I didn't need to link to it before because it was number 2 on google for "Mortgage Calculator, but for some reason it has fallen to page 2 of their rankings.
Categories: Misc | Thoughts
Tuesday, October 21, 2003 11:28:28 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

PHP Manual#
Here is some online documentation for PHP.
Categories: Programming | PHP
Sunday, October 19, 2003 8:50:43 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

TiVo Hacks and other PVRs#
Slashdot had a review for a book on hacking TiVo, which led to a discussion of that topic and the various other PVRs out there.

I could walk to this guy's store from my parent's house. $85 to do the HDD upgrade, or you can buy the HDD yourself and just follow his directions. I'm not sure if it is worth $85. I could probably do it in an hour myself, but maybe just to make sure I don't screw it up.

Here and here you can find some forums on TiVo and hacking it.

Most interesting to me was the mention of MythTV, a linux based product that is free, and can support 2 tuners. Aside from that, it also can do a lot of other cool stuff from what I have read, such as pictures, audio, weather reports, web browser, web server, etc. I also read somewhere that you can setup one as a "

Interesting.
Categories: Cool | Hardware | Gadgets | Programming
Thursday, October 16, 2003 2:16:59 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Kerberos Paper#
This PDF explains a little about Kerberos, why we need it and how it works.
Categories: Security | Authentication
Wednesday, October 15, 2003 12:03:36 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Flash and VB#
Here are some articles about stuff with Flash and VB.
Article 1
Article 2

Article 2 is supposed to get rid of the right click that flash has.
Categories: Programming | .Net | VB.Net | Flash
Wednesday, October 15, 2003 12:02:38 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Windows 2003 Common Ports#
Here is a list of common ports used by Windows 2003 Server.
Categories: Networking | ActiveDirectory | Firewall | Windows
Wednesday, October 15, 2003 10:38:37 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Using NSLookup to troubleshoot AD#
This microsoft page didn't help me any, but it is a useful referenece.
Categories: Networking | ActiveDirectory
Wednesday, October 15, 2003 10:14:32 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

DNS Entry#
AD DNS Lookups
Categories: Networking | ActiveDirectory | DNS
Wednesday, October 15, 2003 9:49:47 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Javascript to move cursor to the end of a textbox#
function setCursorAtEnd(sTextboxID) {
var oTextbox = document.all.item(sTextboxID);
if (oTextbox .createTextRange) {
var r = (oTextbox.createTextRange());
r.moveStart('character', (oTextbox.value.length));
r.collapse();
r.select();
}
}

Categories: Programming | Javascript
Tuesday, October 14, 2003 2:58:36 PM (Central Daylight Time, UTC-05:00) #    Comments [1]  | 

 

More VS.NET Frustrations#
I swear that for the amount of time I save by using VS.NET and ASP.NET over Visual Interdev 6 and ASP (or Java), I lose more than that amount of time in dealing with the terrible design, performance, and bugs of VS.NET.

I installed a test certificate on my laptop so that I could work code that forced pages to use HTTPS. If the page was not running over SSL it would redirect to https://www.therealsite.com/. This worked fine for weeks. The only problem was that when I would preview or debug it would, by default, launch the browser to http://localhos/etc.. which would then be redirected to https://www.therealsite.com/. I would then have to manually change it to httpS://localhost/whatever.aspx to keep it from redirecting.

Aside from that everything was grand.

So then last night I decided to improve upon it. Where it checks if you are running over SSL, it also checks if the server is "localhost". If it is, then instead of redirecting to to https://www.therealsite.com it would redirect to https://localhost.

Everything was great.

Then I went to reopen my project this morning.....

"The host name in the certificate is invalid or does not match"

followed up by:

"Unspecified Error"



Are you kidding me?

Project wouldn't load or reload.



Of course to get to this error takes a minute or two each time because VS.NET is so amazingly slow, even on my 2.4GHz machine. I love it when VS.NET turns 100% white as it sits there doing nothing.

To make things worse, VS.NET FORCES you to contact the webserver to open the project. So I couldn't make any changes, like trying to change my code back to what it was. BTW, why the hell should my CODE effect my ability to OPEN THE PROJECT!? So frustrating!



So then I decided to remove the SSL certificate from the computer, and remove HTTPS from that website. I tried to open the project again.

After another few minutes of waiting....

"A connection with the server could not be established"



Awsome.

After screwing with it for an hour, including 2 reboots, I ended up solving it by removing the SSL certificate, removing HTTPS from the site, and deleting the DLLs in the BIN folder of the website.



VS.NET and I have a very strong love/hate relationship. I really really like so much about it, but .... argh frustrating! I had to make a minor update to an old VB program the other day... I was SHOCKED at how fast the VS6 IDE was, now that I am used to VS.NET, even though the computer with VS6 had a 1.1 GHZ, and my computer with VS.NET has a 2.4 GHz cpu.
Categories: Programming | .Net | VS.Net | Rants
Friday, October 10, 2003 11:47:56 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Live Customer Service From The Website#
This is a .NET component that you can put on your site to allow customers to contact you for live questions/service.

Pretty cool, and you can install a client app to do it as well, so you don't have to actually be on the site. But it costs 200+ bucks.
Categories: Programming | Tools
Wednesday, October 08, 2003 1:44:27 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Article on VSS with VS.NET#
I havn't downloaded this article but I probably could have used it when I was struggling with setting up VSS with VS.NET.

It really is a poor integration of those 2 products. Very poor.
Categories: Programming | .Net
Wednesday, October 08, 2003 1:42:10 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Short Term Leases#
I'm on a car related posting binge here.

LeaseTrader.com hooks up people who are looking to get out of their lease with people that want to pickup that lease, without the downpayment. :)
Categories: Thoughts
Sunday, October 05, 2003 7:55:25 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Buy Your Car Online... Up Front Prices#
CarsDirect.com offers to sell you a car online, and they have up front, not haggle pricing. Nice.
Categories: Rants | Thoughts
Sunday, October 05, 2003 7:52:09 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Buy or Lease#
Here is a page that contains a calculator to help pick if you should buy or lease a car.
Categories: Thoughts
Sunday, October 05, 2003 7:44:53 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

All content © 2010, Christopher May, Inc
Open Job Positions
On this page
Google Ads
This site
Calendar
<March 2010>
SunMonTueWedThuFriSat
28123456
78910111213
14151617181920
21222324252627
28293031123
45678910
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: