Proof that anyone can do it RSS 2.0
 Tuesday, September 20, 2005

A recent upgrade of the ZoneAlarm firewall software on a desktop PC knocked me off my Windows (2003) Domain.  I was (suddenly) unable to connect to File and Printer shares on the server, where before they had worked perfectly. 

After too much headache, it seems my server's IP somehow disappeared from ZoneAlarm's 'trusted' sites list when the update occurred...thus, ZoneAlarm was blocking File/Printer sharing with that machine.  Adding the server's IP as a trusted site (and clicking that obscure little 'Apply' button) did the trick.  If you use ZoneAlarm (or any other software firewall?) and suddenly lose access to network resources, you might consider checking for a 'trusted sites' or 'trusted zone' setting in the software...

Tuesday, September 20, 2005 1:42:10 AM UTC  #    -
Troubleshooting
 Thursday, August 18, 2005

Several weeks ago, my Windows XP installation started 'studdering' almost any time it played any audio; Windows start-up sounds, mouse clicks, pretty much any sound...would drag on for a second or two too long.  Playing media files was impossible because videos would pause while the audio studdered, then try to continue, then pause, etc. 

I just ran across this post where Matt Warren recommended to another guy that he reinstall the codecs from the Microsoft site.  It works!  Thanks Matt!

[edit date="2005 Sep 19"]

OK, the above solution only temporarily resolved the problem.  After several weeks of living with this, it finally seems to have resolved with, of all things, new drivers for the sound card, NIC, and flash for the motherboard.  The MoBo in this system is a Abit Duramax AA8, and it turns out the audio (chipset?) is "Realtek High Defnition Audio".  Somehow, a very recent Google search found this page, where the solution was waiting

[/edit]

Thursday, August 18, 2005 2:25:32 AM UTC  #    -
Troubleshooting
 Friday, August 12, 2005

Exactly 4 days after picking up our new travel trailer, we hauled it 2,000 miles to northern Florida to visit the mouse.  Except for the short trip home from the dealership, I'd never pulled a trailer that size before heading out on our maiden voyage. 

We were on the expressway about 3 minutes when we got passed by a tour bus doing Mach 1.5.  I saw him coming, and having thought this all out in my head, expected the rush of air from the front of the bus to push us off the right side of the roadway...so I braced for that. 

What actually happened, though, is that when the bus was about halfway past my trailer, an impressive PULL TO THE CENTER of the road hit our rig.  Not expecting that, I overcorrected (to avoid smacking into the side of the bus) and promptly drove way out onto the right side shoulder...

And so it is every time a larger vehicle passes our truck and trailer...and apparently every truck and trailer...after a few hundred miles, you don't even notice it much any more.  Still, that would be good stuff for the prep crew at dealerships to pass on to new RV owners. 

Friday, August 12, 2005 2:38:27 AM UTC  #    -

For three years, we've been trying to decide whether to buy a boat or camper...in April this year, we finally made a decision.  Here's how we've been spending most weekends this summer: 

[OOPS: Broken image link here, sorry.]

As always, we have exceptional timing.  This happens to be the year that gas/oil prices have tripled and continue to climb almost daily.  That makes towing hurt the wallet, but at least we're comfortable when we finally 'get there'. 

If I get the time, I'd like to blog some of the trips we've taken...we've learned a few lessons in a short time that might help someone else...

If anyone cares for details:  The camper is a Cougar 301 BHS Travel Trailer by Keystone Corporation (link). 

Friday, August 12, 2005 2:20:11 AM UTC  #    -
Family | Life

Josh pointed out a pretty fun online store that sells exactly one (1) item per day.  That item changes every night at midnight, the prices look to be pretty competitive, and shipping is always $5.  It's worth an occasional visit for the witty item write-ups. 

http://www.woot.com/

Friday, August 12, 2005 2:07:58 AM UTC  #    -

Sheesh.  I'm getting HUNDREDS of 'trackbacks' on this blog from spammers....Cialis, Viagra, and Texas Hold'em peddlers, mostly.  When the trackback service is enabled, my inbox dings every minute or two with a 'trackback notification' from some jerk-wad spammer. 

I just read through the comments on Anil John's blog entry on the same topic, and there's a note there from Scott Hanselman (one of the dasBlog programmers) that implies they may have solved this problem with a recent software update. 

I can't wait to get the new version up and running....Thanks Guys!!!

Friday, August 12, 2005 1:56:42 AM UTC  #    -
dasBlog | Troubleshooting
 Thursday, July 28, 2005

I won't be surprised if someone can look at this and point out the problem right away, but I'm also ashamed to say how long I've been looking at it and trying to make it work...

private void Page_Load(object sender, System.EventArgs e) { 
  DataTable dt = new DataTable(); 
  dt.Columns.Add(new DataColumn("id",typeof(int))); 
  dt.Columns.Add(new DataColumn("name",typeof(string))); 
  
  DataRow dr = dt.NewRow(); 
  dr["id"] = 6; 
  dr["name"] = "City1"; 
  dt.Rows.Add(dr); 
  
  dr = dt.NewRow(); 
  dr["id"] = 7; 
  dr["name"] = "City2"; 
  dt.Rows.Add(dr); 

  this.ddLabList.DataSource = dt;      
  this.ddLabList.DataTextField = "name"; 
  this.ddLabList.DataValueField = "id"; this.ddLabList.DataBind(); 
}

The this.ddLabList.DataSource = dt; line gives an 'Object reference not set to an instance of an object' error.

Help!

Thursday, July 28, 2005 9:23:08 PM UTC  #    -
.NET | Programming

It's just not something you see very often...credits to the Lansing State Journal for the original article.  They credit Matt Tomczak/Special to the State Journal for the picture. 

Thursday, July 28, 2005 12:51:07 PM UTC  #    -

 Wednesday, July 20, 2005

Be sure to visit all the options undfer "Configuration" in the Admin Menu Bar above. There are 16 themes to choose from, and you can also create your own.

 

Wednesday, July 20, 2005 7:00:00 AM UTC  #    -
dasBlog
 Wednesday, July 13, 2005

I stumbled across this site accidentally one day...it does a really nice job of archiving web sites (and preserving a historical record of them).  It's like Google's sites cache feature on steroids...and a really good way to find information from sites that have gone off-line. 

Wednesday, July 13, 2005 2:50:29 AM UTC  #    -

 Wednesday, July 06, 2005

I've had a number of clients complain that they just want their computers to 'work', without having to worry about new virus definitions, Windows updates, updated anti-spyware software, and firewall patches.  "Just fix it so I can use it and not worry about it", is the common theme. 

Those days of carefree Internet use are GONE.  To some degree, these things can be automated, but for the most part, you will have to learn to watch over them (or you'll be taking your PC in for 'cleaning' frequently).  Here's a good article at PCWorld that helps explain why. 

Wednesday, July 06, 2005 11:27:44 AM UTC  #    -
Troubleshooting
 Wednesday, June 29, 2005

It took a while for me to find enough examples to put together a method that will calculate the distance between two GPS points (using C#), so I thought I'd post my end product in the hopes it will shorten someone else's search.  Credits to 'The Math Forum' for the formula (http://mathforum.org/library/drmath/view/51879.html)

The code looks terrible in a browser, so I've attached it as a text file. DistLatLong.txt (1.54 KB)

Wednesday, June 29, 2005 5:22:30 PM UTC  #    -
.NET | Programming
 Friday, June 24, 2005

Thanks to a recent newsletter editorial from SQLServerCentral, I ran into Password Safe, which is a small program that allows you to protect all your passwords for web sites and online accounts, keeping them handy and safe at the same time.  There's no install, just a small executable to run, and it will even enter your username/password combination to complete your login for you! 

I've looked at other electronic 'wallets' in the past, but this one is the best I've seen to date...simple, direct, FREE!, and good at what it does.  Being ignorant of the apparent power of the Blowfish algorithm, I'm still a little nervous to put 'all my eggs in one basket', but it sure is convenient. 

Friday, June 24, 2005 2:09:42 AM UTC  #    -

I'm not any of these John Bowen's...but I can go one better.  I'm not the John Bowen that wrote the "I'm not ANY of these guys" page either.  Somehow, this is creepier than laughing at oneself...
Friday, June 24, 2005 1:34:16 AM UTC  #    -
Humor
 Wednesday, June 22, 2005

Congratulations to Kerri and Chris!  Olivia Kristine Bowen was born Saturday (June 18) afternoon.  I'll update this post (soon) with a couple pictures from the big day.

Wednesday, June 22, 2005 1:48:14 AM UTC  #    -
Family | Life
 Tuesday, June 21, 2005

Jeremy Esland has just added a slew (yes, slew is a real word...look it up) of new features to the Rainbow core and/or documentation.  They include: 

  • A much improved portal alias retriever:  you can now host 'sub-domains' on the same Rainbow installation as 'regular' sites...so support.example.com and sales.example.com can exist happily alongside example.com, example.co.uk, and www.example.com (even when the latter three point to the same site).  It seems simple, but this is a huge step forward, IMHO. 
  • A new smarterror handler that provides much better interface for the end user when a page doesn't load (404, 403, 500 errors, for example).
  • Terrific CSS documentation to support the Zen layout framework...though it also serves as a pretty good tutorial for those with only a basic understanding of the power of CSS. 
  • MagicUrls: These will allow a site admin to avoid complicated URLs, simplifying targets from (for example) www.example.com/site/2271/default.aspx to www.example.com/articles.  Much better for the typical human user, eh? 
  • Much improved behavior for search engine optimization...amond other things, this should prevent spiders from indexing error pages!

All this (and more) is in the Dev build right now...watch for it in a (hopefully near) future release! 

Tuesday, June 21, 2005 2:35:31 AM UTC  #    -
Rainbow Portal
 Thursday, June 16, 2005

I just ran across this awesome repository of Windows Scripting samples...

http://www.ericphelps.com/scripting/samples/

Thursday, June 16, 2005 6:29:05 PM UTC  #    -
Programming
 Wednesday, June 15, 2005

Last week, I decided I needed the capability for the Rainbow portal to let authenticated users 'customize' a module for themselves.  This way, whenever the user loads the page with that module, his custom settings are retrieved and applied as the module is rendered.  

With this functionality, a developer can allow the user to customize just about anything in the module; it could retain sort order for a list, filter preferences, even the theme of the module could be customized on a per-user level. 

This enhancement has been applied to the 'dev' build, so Rainbow developers are free to play with it right now.  Hopefully, end users will see it in the next release! 

Read more about it here

Wednesday, June 15, 2005 7:57:12 PM UTC  #    -
Rainbow Portal

I finally 'finished' the Recycler module for the Rainbow Portal...at least enough so that it works and I'm reasonably confident in its security and reliability.  This enables Rainbow portal administrators to delete modules, with the option to later restore them to the same (or a different) page...with the module's contents still intact. 

I ended up splitting the 'Recycle Bin' functionality from the module itself, so that other developers can write their own (better) Recycler modules (and uninstall mine).  The Rainbow core now holds all the functionality itself and exposes methods for future Recycler modules. 

It's in the 'dev' build right now...when it eventually moves to the release build, you'll know it because the new 'Use Recycle Bin' Site Setting will appear in your portal's administration page.

You can read more about it here.

Wednesday, June 15, 2005 7:52:39 PM UTC  #    -
Rainbow Portal
 Friday, June 03, 2005

I just found these online resources that are 'local' to the Roscommon and Higgins Lake area.  In the spirit of neighborly promotion-by-linking, I thought I'd mention them here with the hope the GoogleBot will pick them up. 

Friday, June 03, 2005 1:21:23 AM UTC  #    -

 Saturday, May 28, 2005

Here's a pretty neat look at Dodge's attempt to get into the police car market...it's even dressed up in Michigan State Police blue.  Thanks to http://www.ryanpatrickdean.com/MagnumPolice.html for the images. 

I'll be curious to see what the MSP Training Division comes up with in their annual testing...but you have to admit, it's a good looking car!

Saturday, May 28, 2005 9:11:02 PM UTC  #    -

Archive
<September 2005>
SunMonTueWedThuFriSat
28293031123
45678910
11121314151617
18192021222324
2526272829301
2345678
Quick Quips
    About the author/Disclaimer

    Disclaimer
    The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

    © Copyright 2008
    John Bowen
    Sign In
    Statistics
    Total Posts: 152
    This Year: 3
    This Month: 0
    This Week: 0
    Comments: 164
    Themes
    Pick a theme:
    All Content © 2008, John Bowen
    Theme modified from the 'Business' theme created by Christoph De Baene (delarou)