Monday, August 18, 2008 6:39:24 AM
I accidently mistyped the company's website address today. Now I see a JS/Decdec.A notice in Windows Live OneCare. I hate hosts that still let that stuff happen. I'm going to report it. Don't type http://acs-inc.org instead of .com. You'll have a bad experience.
Friday, August 15, 2008 1:56:29 PM
IndyGiveCamp is now the weekend of January 23-25. It's to better fit in with the NFL football schedule. Hopefully the Colts will be in the Super Bowl again, so we don't want to interfere.
Thursday, August 07, 2008 1:18:30 PM
I couldn't find this exact scenario for javascript regular expression password field valication.
^.*(?=.{6,15})(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$
Must be at least 6 - 15 characters
Must contain at least one one lower case letter,
one upper case letter, one digit.
I validated on http://tools.netshiftmedia.com/regexlibrary/ when working on it.
Wednesday, July 02, 2008 11:40:17 AM
I did a bit of house cleaning today. I had memory issues and need to have this website use the least amount of memory as possible. I deleted some unused files, deleted some unused applications, deleted some unused databases and disabled some unused features.
When you use web application frameworks, as I do, they come with a lot of features built in. Do you really need those features? If not, get rid of them. They take up space, memory (if loaded), and clutter schema in your databases. It is also a good idea to disable or delete a database that isn't in use. You can even programatically (thru SMO) turn databases off and on when you need them. I've done that at work but not personally. I need to start maintaining my personal systems like I do at work.
Here is a recent post on the mojoPortal site about why this topic came up today. http://www.mojoportal.com/ForumThreadView.aspx?thread=1679&mid=34&pageid=5&ItemID=2
Friday, June 27, 2008 12:28:25 PM
Twitter is down. They really need to get a better hosting environment or something. I can't complain too much since it is free.
http://status.twitter.com/
Wednesday, June 18, 2008 2:30:18 PM
If you ever see this in your event logs:
Event Type: Error
Event Source: SideBySide
Event Category: None
Event ID: 59
Description:
Resolve Partial Assembly failed for Microsoft.VC80.MFCLOC. Reference error message: The referenced assembly is not installed on your system.
You need to go to http://www.microsoft.com/downloads/details.aspx?familyid=32bc1bee-a3f9-4c13-9c99-220b62a191ee&displaylang=en and install the Microsoft Visual C++ 2005 Redistributable Package (x86) package. It will get rid of your error. I haven't found the cause yet.