Thursday, October 27, 2011
Looking for a good place to eat in Chi-Town? ChiBites!
I found a blog with really good descriptions and recommendations for the North side of Chicago:
http://chibites.wordpress.com/
Check it out!
Thursday, August 9, 2007
Diablopup.net
I am in the process of consolidating these nerdy tidbits in a dedicated site, Diablopup.net. I found at the outset that blogspot was bad for displaying code snippets unless you spend a lot of time formatting your template. I'm simply not that smart. To get around this, I often forwarded you to my live spaces blog. What a pain, I agree.
So, it may take awhile, but look for this blog to shrink and the new site to grow. The live spaces blog will go away, and you can bookmark diablopup.net . For now, I have created a feed to the site, down below (near the Google ads ;)).
Thanks for visiting!
Monday, July 30, 2007
Friday, July 27, 2007
Tuesday, July 24, 2007
Friday, July 20, 2007
File Attribute in Web.Config
Another option is the File attribute. An example is provided in the following blog. I think this attribute has more going for it than the configSource attribute.
Default + Optional Override
The file attribute allows you to keep default settings in your web.config. If .NET finds the specified configuration specified by the file attribute, it overrides your defaults. This provides you with the option to decouple your configuration from web.config:
If asp.net finds a "user.config" in my application directory, it uses those settings.
Available in ASP.NET 1.1
Given the file attribute's availability in asp.net 1.1, I don't see the added value that the configSource attribute provides in asp.net 2.0. Comments?
File Must Reside within the Application's Physical Directory Structure
To further decouple the application from configuration, I tried specifying the file in a virtual location. This would allow me to stage configuration updates separately from application updates. Like the configSource attribute, it was no dice. Rats.
Wednesday, July 18, 2007
Product Recommendation: Beyond Compare
Use Beyond Compare to verify. It quickly surfaces file system differences in a nice GUI.
Side By Side Directory Comparison
The directory comparision displays a side-by-side listing of the "source" and "compare to" directories. Use the "<>" option to display only the differences:
Line by Line File Comparision
Differences will be highlighted via color codes. When you want to drill down into a specific file difference, simply double-click to view a line-by-line file comparison:
Options
Use the referee icon to enable/disable compare options. For instance, an extract from Visual Sourcesafe will yield a new date/time stamp, even if you know the file on the compare directory is identical. Unflagging the "Timestamp" folder comparison criteria will remove this comparison "noise" and allow you to spot more meaningful differences.