Sunday, February 15, 2004

As many of you know, I've been using SharpReader to keep up to date on web logs.  I track at least 40 daily, and my team at Motorola is now using web logs and aggregating RSS feeds to build and publish our weekly report.  Which is awesome by the way.

SharpReader has been frustrating me lately.  It seems to do strange things especially when using RDP to log into my workstation remotely...things like hog the cpu so much that the RDP client can't even shut it down.  This has bitten me several times when trying to do something important, and since I've got a new laptop, it's become essential. that I be able to use RDP without worrying.

Another RSS aggregator I looked at initially when I started using SharpReader was RSS Bandit.  At the time, it was a pretty small project and didn't have many features.  It has matured quite a bit and I am now using it as my aggregator of choice.  It's design has taken alot of concepts from Outlook 2003, which rocks (and is the first Outlook version to do so).

Anyway, just going public with the switch.  I'll let you look at the features and decide for yourself if it's right for you.

posted on Sunday, February 15, 2004 12:06:23 PM (Pacific Standard Time, UTC-08:00)  #    Comments [4]
 Saturday, February 14, 2004

Those of you who live in the area know we don't get snow very often, so this is a big deal.  We woke up this morning to a winter wonderland.  There was about 1.5” to 2” of snow on the ground.  It was really cool.  According to the news, it's the most serious snow in the Austin area since 1985. At first I didn't believe that statement until I went outside and realized it was real snow.  Not just piles of sleet.  Actual honest to goodness snow!

After several attempts, Becky convinced me to walk through the park with her and we took some pictures of the kids attempting to “sled” down a hill on anything they could find including knee boards, kayaks, and cardboard boxes.  There's nothing quite as funny (and disturbing) as a little foul-mouthed kid flying down a hill in a cardboard box.  It was really cool to see the whole neighborhood out enjoying the rare day.

The top picture is a panorama I stitched together from 3 separate pictures, which turned out really well.  If you look closely, you can see the people walking back up the hill on the left are the same two people twice.  Ah, the wonders of the space-time continuum.

The next picture is of the little stream that runs through the park, which looked really awesome in the sunlight.  It's amazing how different everything looks with white on it.  They have been doing some construction next to the stream, which has been ugly and muddy, but with the snow covering it, it looks much better.  It reminds me of the old hymn, “Whiter Than Snow”.

Anyway, at this point, I'm just rambling to have enough text to make the pictures look like they were not just strewn about on the page.  If you looked at this entry early in the day, you probably got a look at it when it looked much worse.  The two zoomed in pictures are probably too big, but I wanted to make sure you could see the little kid in the box, who, when he got to the bottom, was dumped out of the box and into the mud.



posted on Saturday, February 14, 2004 7:48:59 AM (Pacific Standard Time, UTC-08:00)  #    Comments [2]
 Saturday, January 31, 2004

Boy was I sick yesterday.  Due to a new policy where I work, sick days are lumped in the same bucket as vacation.  Supposedly, we get more “Paid Time Off“ (or PTO), but ,as such, those of us who are prone to sickness during the winter months are compelled to attempt to go in to the office when we probably shouldn't.  Anyway, after lunch, I decided if I didn't leave work then, I might not make it home.  I pretty much sat perfectly still the rest of the day, which was the most comfortable thing to do.

Those of you to whom I spoke on the phone yesterday can attest to the bizarrity of my voice, and I probably was somewhat unintelligible, since I don't really remember what happened.  All I remember was waking up at 9:30 pm last night feeling MUCH better, but thinking it was 9:30 am today.  I was very confused.

I was dissappointed because I had to cancel our dinner plans with B-dub and J-dub at Johnny Carino's.  Sorry guys, we'll try again next week?  I'm feeling much better this morning.

posted on Saturday, January 31, 2004 8:10:46 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0]
 Tuesday, January 27, 2004

I've been on a real software philosophy kick lately.  Here's more of my thoughts (which are subject to change).

I've spent alot of my time trying to develop methodologies and code to help me write database independent code.  Invariably, I run across problems, some caused by a db with a crappy internal type system (Oracle), some caused by a broken unification model (ADO.net), and others caused by poorly implemented providers.

I ran across a heated discussion on another blog (which I can't find now, or I'd reference it) on whether database independent code should be something to give up on.  After all, even though they compete for business, Oracle was designed for something very different than SqlServer, or MySQL was designed for.  They each have unique features, different SQL syntax, stored procedure concepts, etc that keep there from being a universal API for database access.

So there are two common approaches to take (excluding giving up):

  1. Implement to the lowest common denominator.  Solutions for this exist already.  ODBC, JDBC, OLEDB, all fit this model.
  2. Move the unification layer inside your application, so you are implementing a unified API for your application.  This allows you to focus on the functionality you need and use object oriented techniques and patterns to reduce redundancy and increase maintainability.

I first approached ADO.net as the answer to #1, for which it is woefully inadequate.  I now realize it is an enabler for #2, defining concepts that databases share (which make them databases).  This gives you some commonality between implementations without forcing you to the lowest common denominator like previous attempts.  Besides, most applications are targeted to a specific db anyway and don't benefit from that approach.

ADO.net is not without it problems, but viewing it in that light makes it a much more satisfying tool...for me anyway.

posted on Tuesday, January 27, 2004 2:21:40 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0]
 Thursday, January 22, 2004

I was recently writing a new entry, and I knew I had talked about a topic before, but couldn't remember when.  Since dasBlog doesn't have search capabilities, I was contemplating converting my blog to a Bliki, or something else that would give me better auto-crossreferencing capabilities.  But I thought, “Hey, I'll just google it”. (The internet has spawned so many ridiculous verbs)  Much to my surprise, I found exactly the entry on my blog that I was looking for!  After I thought about it, it really wasn't that surprising, but it's still wicked cool.

BTW, I ended up not using the link...but it was still cool.

posted on Thursday, January 22, 2004 5:49:21 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0]

In the past year, I've learned an incredible amount about software design.  It seems that the amount of data I take in increases exponentially.  I suppose this is standard in most fields of study, it's still surprising to me.

My recent learnings have involved design patterns.  I've spoken about them before so I won't go into huge detail.  I've recently come across a general pattern known as Inversion of Control (IoC for short).  It is a pretty broad concept and is frequently used by developers, most of whom would tell you it's common sense after you explained it.  The real benefit is formalizing and categorizing it.  This enables you to talk about approaches for solving problems in a common way. For example, try getting some musicians together to write a song, but do not allow them to refer to musical terms.

The particular pattern I've just recently been aquainted with is Dependency Injection, where you define modules of software as components that define their dependencies to other components as part of their declaration rather than tieing them to some specific implementation or third party factory.  I've been playing with PicoContainer, a project that provides a framework for Dependency Injection.  I'm still trying to get my hands around it, and trying to see how this pattern fits into some of the projects I'm working on.

posted on Thursday, January 22, 2004 5:44:04 PM (Pacific Standard Time, UTC-08:00)  #    Comments [1]
 Sunday, January 18, 2004

We went to see Big Fish last night, which was very enjoyable.  It was a different movie than I was expecting, but just as good.

Once again, though, I was intrigued by a preview.  It was for a new Coen brothers film “The Ladykillers”.  I immediately recognized it as a remake of the 1955 version starring in one of his earliest roles...none other than...Peter Sellers.  In the new version, Tom Hanks plays the role played by Alec Guiness in the original.  Herbert Lom (A.K.A Chief Inspector Dreyfus) also stars in the original.

I love the Coen brothers, and to see this classic renewed will be very interesting, especially the choice of modern day actors to be cast.  They've changed the screenplay enough that there's not a 1-to-1 correspondence to the original characters, but Marlon Wayans plays one of the gang members, which should lead to some interestingness.

Anyway, Big Fish was excellent.  I recommend it.  On another note, I saw the League of Extraordinary Gentleman, which was a very imaginative story.  Not an excellent movie, but it could have been.  I was thoroughly entertained.  I thought it was interesting to learn from the special features than Sean Connery had turned down roles in The Matrix and The Lord of the Rings because he didn't understand them.  He took the role in TLOEG because he didn't understand it either and didn't want to miss another opportunity.

I was trying to figure out who he would have played in the Matrix and LOTR.

posted on Sunday, January 18, 2004 9:50:52 AM (Pacific Standard Time, UTC-08:00)  #    Comments [1]
 Tuesday, January 13, 2004

I know it's short notice, but anyone in the Austin area should come to the Three Nails Short CD Release Party, and not just to see the video montage I put together for them.  They're a pretty wicked band which is truly comparable to the David Crowder Band of several years ago.  This is their second self-funded CD of original work.

The drummer was a student in my sunday school class a few years ago.

You can get more information about the release party at threenailsshort.com.  Doors open at 6:30 at Grace Covenant at the southeast corner of Mopac and 183 (on Jollyville).  See you there.

posted on Tuesday, January 13, 2004 1:31:27 PM (Pacific Standard Time, UTC-08:00)  #    Comments [1]
 Tuesday, January 06, 2004

Hey hey! I'm taking some time here at lunch to reflect on the holidays.  I was hoping to have some time to work on some FilmProjects and other things, but ended up not spending much time at home.

We had a wonderful time in Belton with my family for Christmas and and in El Paso with Becky's parents for New Years.  I got more video games than I have time to play now.

I also got upgraded to the new version of Adobe Premiere.  I haven't had a chance to do anything but pull up some projects I'm working on and play.  The main new features I was looking forward to were:

  • Sub-pixel motion paths rather than the crap for crap motion effects in 6.x
  • Better color correction capability.  The new version keeps everything in the YUV colorspace so there's no loss in a YUV-RGB-YUV conversion.  This also makes it easier to do correction for broadcast since NTSC is all YUV-based.
  • Audio enhancements - 5.1 audio mixing.
  • Better DVD support - It was a pain in the rear to export to MPEG2 for DVD, especially for true 24p 16x9 projects and I was very jealous of iMovie's quick DVD capabilities.

Things I wasn't expecting were:

  • Nestable timelines - Fantastic for organizing scenes
  • Transitions on any video track - I'll have to get used to not having the A/B track editing, but that's been discouraged for a while anyway.

 

That's all I can think of right now.  I'm working on sort of a music video montage for the Three Nails Short CD Release Party.  I've got TONS of footage captured from analog sources that has to be organized, and already the new tools are helping.

posted on Tuesday, January 06, 2004 11:00:03 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0]