More Hold Em Software Programs#
Here are some various hold em shareware programs.
Categories:
Sunday, March 27, 2005 12:09:11 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Advanced System Building#
This article from FiringSquad talks about some of the "finer" points to consider when building a machine.

Stuff like which brand of equipment, configurations, and methodology. Pretty interesting read.
Categories:
Thursday, March 24, 2005 3:35:28 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

30 Mile Cordless Phone#
This $300 phone from Samsung purports to have a cordless range of 30 miles.
This would be really cool if it in fact worked, w/o the terrible cell phone like reception.
Categories:
Monday, March 21, 2005 4:43:04 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

MS Best Practices for Exception Handling#
Exception Management Blocks and the Instramentation Framework were referenced in an article I just read on handling exceptions in managed code.
Categories:
Monday, March 21, 2005 2:15:06 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

WUS Beta Newsgroup#
This hard to locate web-group can be accessed by logging in with u: betanews\wusoepnews, p: Update.
Categories:
Monday, March 21, 2005 10:39:10 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

2 other poker programs#
The Edge and Poker Office are 2 other programs that deal with hold'em stats.
Categories:
Monday, March 21, 2005 7:29:21 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

A few free .NET tools#
Here are some pretty cool .NET tools written by a generous programmer. There are a few in here that could be pretty useful, like the XML viewer.
Categories:
Monday, March 21, 2005 6:55:11 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Wired Mag Interviews a SEO Professional#
This is an interesting article from a SEO "professional." These guys are usually regarded as scum, making crappy web pages appear near the top of searches instead of the actual results desired by an honest system. But much like spammers, they often use interesting techniques to acheive their results.
Categories:
Friday, March 18, 2005 4:43:26 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

13 Things That Don't Make Sense#
This article is really interesting. It discusses 13 things that don't make sense, or that we don't understand. The one that I have found most interesting over the years is the question of why the Pioneer spacecraft seem to be accelerating out of our solar system. The small acceleration, which was noticed on both space craft, amounts of the one ship being 400,000 Km ahead of where it should be at this point. Some propose that this could be caused by the same dark energy that seems to be at the source of our ever expanding universe.
Categories:
Friday, March 18, 2005 4:19:53 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Feb SQL Server 2005 CTP#
I had to look up again that CTP means Community Technology Preview. It can be downloaded here.
Categories:
Wednesday, March 16, 2005 5:17:40 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Programmatic Impersonation in ASP.NET#
This write up from Rick Strahl's blog is pretty cool. It was in response to something I posted to the newsgroups.

His blog is powered by dotText, or .Text, which is getting incorporated into the new Telligent Systems Community Server project. That is a cool project.
Categories:
Wednesday, March 16, 2005 9:58:21 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Various Dialogs and ASP.NET#
This blog entry, and a follow up by another chap here show some ways of implementing dialog box types in ASP.NET.

I'm not sure this is a good idea, but worth reading. I guess you could incorporate some common UI elements into your site w/ dialogs, but there aren't enough times when you need a modal yes/no/cancel that you need an abstracted control, espically when you can use confim(). But I think there is clearly a place for stuff like this to be helpful.
Categories:
Tuesday, March 15, 2005 8:11:13 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

HTTP SYS Errors#
We are getting a few errors in the IIS logs here and there. Some are no big deal, others should probably be looked into.

This page from MS ( and this one too I guess) shows basically what they all represent. The ones we are seeing are:

Connection_Abandoned_By_AppPool
A worker process from the application pool that quit unexpectedly or orphaned a pending request by closing its handle.
I'm not sure if this means "quit unexpectedly" like an exception was thrown, and handled, or if it means an unhandled exception was thrown, or the web.config was updated and the wp recycled. I guess it shouldn't be that last one actually because it is supposed to spawn a new wp and wait to kill the old one until it has completed all its requests, or varios criteria are met (like a request is in the queue for a long time, indicating a real problem anyway).

Connection_Dropped
Reserved. Not currently used.
Ha, looks like they haven't updated this doc recently. I still can't find any real info about this, but when looking through the logs it looks like these errors occurr either on pages that are known to have experienced timeouts of one kind or another (SQL timeout, or reportserver timeout), or page requests that happen very close to the a know timeout page. So maybe some page fails when trying to generate a billion page PDF report, and there are 4 more Connection_Dropped errors for "normal" pages right after that. Maybe those 4 were queued up by the thread that died?

Categories:
Tuesday, March 15, 2005 8:00:22 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Article on Role-Based Security#
There is probably nothing new in this article, but I haven't had time to look at it in like week, so I'm putting it here.
Categories:
Monday, March 14, 2005 8:45:20 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Poker Software#
Software like this is what I would think people who play online would use.
Categories:
Thursday, March 10, 2005 2:07:09 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Getting some error info from SQL Error codes#
This isn't a ton of help, but if you get an error code you can run:
SELECT *, sysmessages.*
FROM sysmessages
WHERE (error = 1934)
(assuming that 1934 was your error code) to get some information about that error.

You have to run this against the master database of course.
Categories:
Wednesday, March 09, 2005 2:34:06 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

The case for PassPhrases#
Robert Hensing's blog post discusses the case for using pass phrases in leu of passWORDS.

Very interesting. There were some comments about how passphrases could be easily cracked, if you used all common words or a common phrase. I think salting your passphrase would eliminate this.

What I mean is "one small step for man" would be easy to crack, but "one small step for man!@#$" would not be easy.

I wrote Robert about this and he replied:
Oh I absolutely understand what you're talking about - I thought I had addressed this in my blog - maybe it was in subsequent posts or discussion - it was a while ago.

The net net is that the general consensus is that if everyone starts doing this we will of course see pass-phrase cracking tools pop-up that know about the English language and it will be optimized to try only certain word combinations which actually make sense and have a list of popular / common phrases.

To counter this - you are absolutely right - your 'salt' would probably work fine and force the cracker to go into hybrid mode (try each phrase / sentence with a small brute-force attack of characters on the end to catch people who just do !@#$ at the end etc.).

That's where punctuation, mis-spelling, and slang all come in handy. :) In the south we say 'ya'll' a lot - use that. Etc.
Categories:
Wednesday, March 09, 2005 1:30:52 PM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Battlestar Gallactica Commentary via PODCast#
The SciFi channel is starting to offer commentary of their Battlestar Gallactica episodes via podcast. This shows started out really good, and I was very excited about it, but it has sense started to drift a bit. They are doing the thing I hate most in shows like these, not introducing any new stories / information over many episodes. Basically the last several episodes could have been wrapped up into 1 show, w/o losing information that the viewer needs to know or cares about. For example, very early on we learn that "Boomer" is really a cylon (sp?). Here we are... I don't know.... maybe 5 episodes later, and nothing new has developed from that revelation.
Categories:
Wednesday, March 09, 2005 8:29:27 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Building a PBX#
This page shows how to use a linux package called Asterisk@Home to create a PBX system w/ all kinds of cool features.
Categories:
Wednesday, March 09, 2005 8:17:18 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Indexing Services Search App#
This application is a nice front end to the Indexing search.
Categories:
Wednesday, March 09, 2005 8:08:31 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Blocking Brute Force Attacks#
Here is an article on CodeGuru.com that discusses avoiding brute force attacks. Their main suggestion is to randomly sleep the thread, which is no big suprise. This article on CodeProject.com discusses the creation of a CAPTCHA control for use with brute force attacks.
Categories:
Wednesday, March 09, 2005 8:05:56 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

Overview of Agile Software Development#
Here is the Wikipedia page on Aglie development. I know lots of the hard and fast "rules" of Agile and XP development, but this discusses a little more of the philosophy.
Categories:
Wednesday, March 09, 2005 7:49:49 AM (Central Standard Time, UTC-06:00) #    Comments [0]  | 

 

All content © 2008, Christopher May, Inc
Open Job Positions
On this page
Google Ads
This site
Calendar
<August 2008>
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456
Archives
Sitemap