I need a Jargon-Free Silverlight description/blurb

I want to be able to describe what Silverlight is to a non-tech person. The description, which shouldn’t be more than a few sentences, must be jargon and marketing jibberish free. It cannot use acronyms or phrases such as "Rich Internet Application." Those are meaningless. And no, it should not include the phrase, "lights up the web." :)

The best way I can summarize it to people:

Do you know what Flash Is? Eh, It’s like that, from Microsoft though.

If they answer no, then it boils down to suggesting an example of Flash in use (think annoying advertisements you can click on!), or saying it will just make their web experience better somehow.

Any suggestions?

The Podcasts I listen to (somewhat) regularly…

I had wanted to list them in a priority order of some sort, but honestly, I pick and choose what to watch/listen to. I don’t listen/watch to every podcast from every podcaster. I often delete them as I just don’t have time to listen to them all.

I would like to decrease the signal to noise ratio though — what do you listen to and enjoy?

Dirt Simple 301 Redirect on Shared hosting and the 404 trick.

I’m using a shared hosting account for my web site. I have no control over the file types (extensions) that are handled by ASP.NET — only the standard file extensions (ASPX, ASMX, etc.) are supported. By request, I was asked to make my old RSS and Atom XML file feeds up to date with my new blog posts. During the transitions I’ve made, I may have lost some subscribers as I hadn’t kept them up to date as much as I would have liked.

So, with a wave of the magic ASP.NET wand and a little 404 magic, the two XML files are now serving up content from my new WordPress installation. On my web host, I can modify what pages handle 404 web server errors (file not found). I changed the setting to point to a new ASPX file, appropriately named, 404.aspx. Here’s what it contains:

<%@ Page Language="C#" %>
<%
    string qstr = HttpUtility.UrlDecode(Request.QueryString.ToString());

    if (qstr.Contains("index.xml") || qstr.Contains("atom.xml"))
    {
        string movedTo = "http://feeds.feedburner.com/wiredprairie";
        Response.Status = "301 Moved Permanently";
        Response.AddHeader("Location", movedTo);
        Response.End();

        return;
    }

    Response.Status = "404 Not Found";        
    Response.End();

    return;
%>

I grab the query string which minimally contains the requested Url, and if it’s either atom.xml or index.xml, I redirect to the FeedBurner location for the RSS feed. If it wasn’t one of those files, I just return a 404 error and quit (as I don’t have a custom 404 page developed).

Of course, with a bit more robust coding, this could handle a wider variety of cases and redirect to far more web pages. Or, you can just point to my RSS feed. :)

What does it take to make a rock star software developer?

From ReadWriteWeb, “Top 10 Traits of a Rockstar Software Engineer.”

See the full post for the details of each point.

  1. Loves To Code
  2. Gets Things Done
  3. Continuously Refactors Code
  4. Uses Design Patterns
  5. Writes Tests
  6. Leverages Existing Code
  7. Focuses on Usability
  8. Writes Maintainable Code
  9. Can Code in Any Language
  10. Knows Basic Computer Science

What do you think about this list — does this list represent a rock star software engineer? I personally think the list is too slanted on “Agile” practices. What works for a web application software provider may not work well for an ISV or an enterprise developer in all cases.

I would have expected some mention of one of the classic books of software development to be mentioned, Code Complete: A Practical Handbook of Software Construction by Steve McConnell.

Maybe the biggest issue I have with the list is that even if I checked all of these off while interviewing someone, I don’t know that I’d hire them. There are a few things I’d add for a developer to be a rock star. The following are a few ideas.

  • Certainly, I look for “passion” or “energy” when interviewing. You can love to code – but will you love coding what I need you to code? Will you believe in the project or application? Will it excite you?
  • Do you work well on a team? Individuality is important, but being a great peer is an important trait to have. Maybe the best way I could think about this is: even rock stars need a band (or at least a supporting crew). Having a good team behind the “rockstar” is just as important as having the rockstar … actually, maybe more important! So, don’t leave the band out of the rock star.
  • Do you understand the platform you’ll be working on? How well can you learn it? It’s not about a programming language or knowing basic computer science … if you don’t know how the system works (ticks), are you going to be as effective as the engineer who does (I doubt it).
  • Can you communicate well — in whatever form is necessary? It’s not about the language so much as your ability to communicate ideas, problems, solutions, etc. well to others. I’m not suggesting you need to do a presentation to a Board of Directors or 500 people at the next conference … just to your coworkers, one on one, etc.

What would you add?

Anyone know how to export Podcast Listings from iTunes?

I was hoping to post my current list of PodCasts to my blog (and ask others to post some of the pod casts they enjoy) — but I see no obvious way to export the list as anything useful. The plain text file with a listing of all current podcast files, and some massive XML file options I’ve already discovered wouldn’t be useful.

I’m interested in what podcasts others are listening to — hoping to discover some new ones to add to my library of choices.

 

UPDATE: Informed that Export, then pick the file type from the drop down lets me pick OPML. I’ll provide my list tonight — I’m interested in seeing what things others are subscribed to as well….