Browse by Tags
All Tags »
Tech (RSS)
It was rather nice. For a few minutes earlier today, I was able to experience the designer's perspective of Blend. We had a bug filed on one of our common controls' visual appearance, and a designer and a developer were pairing on cleaning it up. They
Read More...
Wow, so much I probably should talk about, but I don't even know where to start. Massive amounts of networking, information, realization, and even contribution going on, and I can't unravel it at all right now. I think there's a lot of potential for transforming
Read More...
Wow - it's been over thirty days since my last post. What's changed since then? First, we've put http://inkubook.com into production. I'm very proud of the work I've done and that my team has done on this one. We killed ourselves getting it done, but
Read More...
Our team has decided to take a step back towards scrum and away from our previous semi-Kanban approach. I think that it's a good plan at this time, although I also suspect that many of the benefits of our earlier approach will continue to show through.
Read More...
The concepts surrounding batch size have been floating around my head again in recent days. My current assignment is a rather large batch of work with Silverlight 2.0, but it's one that I've been able to subdivide into a number of small batches that rapidly
Read More...
Effective _now_, we are hiring a single experienced individual into an architect or senior developer role. If you have a desire to work with an incredible team, have great .NET coding skills, and have a desire to see your work become a real product in
Read More...
I've managed to get past the random issues that seem to plague me when adopting new technologies, and I'm digging into the meat of Silverlight 2.0 (Beta 1). This is GREAT! Blend is a great tool, and they've made using resources SO MUCH BETTER! The visual
Read More...
or silverlight, or visual studio, or something. Anyway, my work is in the Silverlight.net installation forum under a post titled "Silverlight startup error with resources - Summary of fix" The corrected file is attached here, and I hate wasting a full
Read More...
Attachment(s): Microsoft.Common.targets
Thursday, after the main IndyNDA event, I performed my first public presentation. I've presented to teams, classrooms, and my company before, but this is the first time I've had the opportunity to present to an uncontrolled group of my professional peers.
Read More...
Attachment(s): Rich Branch Management.ppt
I've never done this before... I'm sitting in the IndyNDA event for this month, and since there's wireless, and I've got my computer, and IndyNDA's got tables, I thought I'd actually give live posting a try. Expect a stream of thought as I (partially)
Read More...
Back to tech, for now. I like Linq to SQL. A LOT. However, there have been a handful of things that have annoyed me, and one of them is the story around serialization and disconnected entities. They've built a nice engine for it (DataContract-based),
Read More...
It's been years since a new technology actually got me to the point of being "excited". .NET 2.0 almost did it, but I think the day I finally 'got' .NET 1.0 was the last time I was truly excited about a new technology for its own sake. I think I feel
Read More...
If you're curious how the XNamespace works, just do a "Go to Definition" in VS and you'll see the declarations, the key aspects are: public static bool operator !=(XNamespace left, XNamespace right); public static XName operator +(XNamespace ns, string
Read More...
Namespace handling is much improved! Yay for easy namespaces! Anybody who has worked with XML in .NET 1.x or 2.0 knows how much of a pain XML namespaces can be in extracting data, yet they fill a very important part of the XML technology. Now, for linq.
Read More...
I rarely repost, but this single, fairly short article seems to hit many of the high points in a very condensed format. If I were in a southern church hearing this read i would expect a constant stream of "Amen" echoing around me. Read it. Think about
Read More...
What's the difference between these two lines? scriptInit.InnerHtml = string.Format(creationFormat, outerDiv.ClientID, someOtherString); scriptInit.InnerText = string.Format(creationFormat, outerDiv.ClientID, someOtherString); Answer: The first one doesn't
Read More...
Freaking amazing. Scenario: I need to load the contents of a table into a dictionary of objects keyed by one of the fields. Before: Write the ORM code to load the entire table. (3 lines) Initialize the dictionary (1 line). Write the for each loop to move
Read More...
I'm almost beyond words in a geeky technical sort of way. The ease and simplicity of accomplishing my desires is releasing a sense of joy that I have not felt professionally for quite some time. My desire is made manifest, and I don't have to fight the
Read More...
I've read the lengthy articles that Guthrie posted, and I've followed the buzz with interest, but tonight I finally sat down and gave it a shot. First impression: the "default" application is among the most useful I've seen of any templated project. Most
Read More...
Ok - Rule #1 of .NET programming: If it's Disposable, dispose it... wrap it in a using statement, call Dispose... SOMETHING! Easy, once you think that way, nothing to worry about. Except... when you declare a Mutex, try to dispose it, and get this message:
Read More...
Read it once a month to remember why you're agile! http://waterfall2006.com/gorman.html http://waterfall2006.com/Refuctoring.pdf
Read More...
I don't like to call out individual blame, but sometimes a bit o' shame is what it takes... this query, when run against the (2008 version) version control database in TFS will give you a nice summary and detail pair that can be dropped into excel, or
Read More...
Went to ArcReady today, which was supposed to be about software + services, but it turned into a nice discussion of Microformats . As a result, I did more investigation. Larry 's right... this is going to be hot (if he's wrong, so am I!) More when I dig
Read More...
Really easy thing that I thought would be in the nMock framework somewhere, but couldn't find: A way to call custom validation code against the matched object. With .NET2's anonymous delegates, it was pretty easy to whip up just such a beast (with a bonus
Read More...
Recently, I've been trying to put real unit tests around the Presenters in our MVP pattern, and because the view fires events to notify the Presenter of behavior from the user, I've had a need to inject the proper subscription and firing of those events
Read More...