Unbelievable! Well, no, actually, the sad truth is that it IS believable.
All posts by Julie
a great book title
I love this book title and description!
***Hardware Hacking: Have Fun While Voiding Your Warranty
Publisher: Syngress
ISBN: 1932266836
“Hardware Hacking” is for people who dream of running Linux on an Xbox and opening a garage door with a PDA. To successfully hack consumer and SOHO ….
A blog day even my great grandmother would be proud of.
I started the day reading “feh!” in a Kent Sharkey post and ended it with Ted Neward peppering a worthwhile rant with “chutzpah” and “oy”. It made me smile.
VB.NET Whidbey – Debugger wants your class constructor!
This is probably old news to many who have been playing with VB.NET Whidbey for a while…
I noticed that when debugging, if I didn’t have have NEW in a custom class, the debugger stops on code that instantiates that class, givint a little popup message “There is no source code for the current location.” You can hit okay and then just continue and all is fine. This is not affected by Option Explicit or Option Strict settings.
Probably something that has been duly noted by now. I wish I had time to do this stuff this summer when it would have been useful for the VB team.
how to on Visualizers!!
Scott Nonnenburg, the Debugger PM, just posted a blog about visualizers and it’s not just a teaser it’s is a how-to.
Oh this is torturous! I want to drop everything and go play with this, now!
Creating a generic type in VB
hmmm– not quite! I got a run time error not compile time. Any working examples out there?
does anybody know what time it is?
SPOT outtage! Day old stock quotes. Yesterday’s weather. Hahahahah. Oops! Sorry, Scott, Sorry Peter.
When talking about OpenHack – no giggling allowed
The DevDays web track last session goes over Microsoft’s entry to eWeek’s 2002 OpenHack contest – now renamed and even updated. Though we are reminded that Microsoft’s application was not hacked once even after 80,000 attempts, Oracle’s app did suffer a few hacks. Okay they were minor but… (here’s eWeek’s wrapup of that)
More on ASP.NET paths
a few days ago I posted a some code that (if you trust me, if you really really trust me…) you can drop into your asp.net application folders to get a quick look at the various paths returned by server.mappath or directory class and stop the nonsense with the guesswork!
Rick Strahl just posted a nice examination of ASP.NET paths, so I wanted to put them both together in one post. (ummm – that’s the one you are reading at the moment…)
Can we take the VB syntax for generics one step further??
Duncan Mackenzie posted a little code sample that shows the sweet syntax of
For Each cust as Customer in Customers
…
Next
which I so very much prefer over
Dim cust as Customer
for each cust in Customers
…
next
Simple, minor, but just a nice difference. I always hated that extraneous line of code. And hated it more when we moved to vb.net and could just declare a variable and give it a value all in one line.
However! …she said with a grin.
Why stop there?
Why do I even have to (re-)define what the objects in Customers are?
Why can’t I just write
for each whateverthehecktheobjectsareinmycollection in Customers
…
next
and have .net look at that and say “well d’uh, I know what whateverthehecktheobjectsareinmycollection is going to be because Customers is filled with Customer objects, so I will just implicitly cast the whateverthehecktheobjectsareinmycollection to a Customer.
?
Just an idea… maybe it’s already there and I haven’t discovered it yet…
Or how about if I have a generic collection of generic objects?? Oh dear, it looks like I won’t be going to bed early tonight after all… Damn!