Monday, April 24, 2006
IE 7 Beta 2
http://blogs.msdn.com/ie/archive/2006/04/24/582546.aspx
D
Friday, April 21, 2006
One more error found!
http://schemas.microsoft.com/winfx/2005/06/markup-compatibilityAnd the answer was what I was looking for is here... Not only that, the quote after the text was an absolutely perfect description of what I needed to know to know that it was the right link. let's hear it for MSN.
is.not.a.recognized (on MSN)
D
Sunday, April 09, 2006
Searching for the Unsearchable
Boy, this took a long time. A REALLY long time.
I needed to find out a little bit more about a specific tag in ASP.net. Specifically, the '<%' tag. So why not just drop it in a search engine? All the major search engines block searching for this kind of text. It's an incredible pain.
Fortunately, I was lucky enough to find a term that was always associated with this (in this case databinding) that helped me search for it. After browsing through about a million websites, I finally found someone who had the same problem. Let me hand it over to Tone's website.
http://tonesnotes.org/2004/06/16/aspnet-code-block-mystery
It's remarkably hard to search for syntax like "<%=" if you want to find something that speaks about the syntax rather than all the pages that use it.
I ran into a case where apparently identical code blocks in the same .ascx file were being treated differently. One was expanded and the other was treated as a literal.
The problem ended up being that a "runat=server" attribute had been added to the element with the failing code block.
A normal inline ASP.NET code substitution block uses the syntax <%= … %>.
ASP.NET databinding uses the syntax <%# … %>.
<%@ … %> is WebForms syntax. One of the following must follow the @: Page, Control, Import, Implements, Register, Master, MasterType, OutputCache, Reference
<% … %> executes a block of inline code.
<%= … %> does a Response.Write of the value of inline code.
<%# … %> does data-binding
<%$ … %> is used for configuration file substitutions
Thank you Tone!
D
Friday, April 07, 2006
Note To Self: Read Becoming Strangers
Interesting concept for a book, where two marriages (one of middle aged people and one of elderly people) are examined in great detail, specifically looking at whether or not they stayed together due "to habit and a long-ago promise, or because of some stronger bond." (Christina Schwarz) The tracing the singular seed of victory (or downfall) back to is source gives me endless fascination. Tying this examination to a relationship and how it turns out makes the subject even more intriguing.
Wednesday, April 05, 2006
Cool Science, Hilarious Comedy
Comedy: Same robot tripping over a box.





Watch the video to see it in motion. Ah, good times.
D
Tuesday, April 04, 2006
Simple Displays of Complex Data
Graphical Representation of the U.S. Budget
makes this:
Full disclaimer, it does not include off-budget spending, such as the $100B spent on Katrina relief and lots of others.
I once worked with a guy who spent six months doing this for his large corporation. Though he really provided a lot of visibility into how the business worked, my biggest problem was that it was that hard to envision before. I suppose there may be problems in the world that really are that hard to understand that making a graph can make all the difference, but they're a lot rarer than most people claim them to be.
D
Zen For the Geek
More on the Disk Space Tracker
D
Disk Space Tracker
http://www.tbray.org/ongoing/When/200x/2006/03/31/JDiskReport
It's a cool little tracker that shows how much space is taken up on your disk by different stuff. I love it!
D