It was already enough that The New Yorker had short stories by Annie Proulx AND Vladimir Nabokov, but reading through the Talk of the Town, there was an essay about the staff of Archaeologist magazine discussing the latest Indiana Jones movie and there was my old friend Ken Feisel, who is the Design Director for that magazine and who I worked with when we were kids a million years ago at Playboy. At the time he was the artistic director for the advertising department and I was in the media research department. I still attribute one of my favorite quotes (I added my own twist to it though) to him. We lost touch after I moved out of NYC in 1991, but have reconnected a few times since. Since I have always said “I may be a geek, but I”m not a nerd”, I got a big laugh when the essay ended with Ken calling his co-workers nerds.
All posts by Julie
The "body clock" I didn’t know I had
No, not *that* one (the oh-my-god-I-gotta-have-a-baby-before-it’s-too-late, clock …that stopped ticking years ago). My flight to Orlando for TechEd was a 6am flight. The concept of me getting up on time for that, much less even being awake at 6am makes my husband laugh his butt off.
I got to bed last night at 11 and set my alarm for 4am. Well, I changed the alarm *time* to 4am, but apparently never pushed the button to make the alarm go off. And I was exhausted so I slept very soundly. Somehow (and this is not normal for me), I woke up in the middle of the night and in my daze remembered that I had a flight so looked at the clock. It was 4:10!
I don’t know how I was so lucky, but thank goodness. Being a bit of a road warrior, I had all of my stuff ready to go and my clothes laid out, so it took me no time at all to get dressed and out the door. And I was sitting in the waiting area at 5:15 with plenty of time to go.
Phew.
Flights are all on time so far so good. Looks like I’ll make it easily for my Ask the Expert Session. The location is "Red TLC- Windows Booth", wherever that is!
Website Graffiti? Drawing and Annotation with Silverlight
Tuesday June 3rd 1:00-2:00 Julie Lerman – The Data Farm
In this session you will learn the basics of using Silverlight’s InkPresenter to enable users to draw on your websites and annotate images and video. You will also see the how web services can be used in conjunction with Silverlight to provide more advanced features such as handwriting recognition and database persistence.
How hard could it be to get to TechED?
Yesterday at about this time, I was getting ready to head to the airport when I got a phone call resulting in my needing to delay my trip to Florida by a day.
So I paid the $150 “change fee” and rescheduled my flight.
Now I have to leave for the airport in 1/2 hour and went to check in online only to find that, as per united, I may not get to Florida tonight after all.

I already had to cancel everything I was supposed to do today. I wonder what tomorrow’s going to be like?
Update: Thankfully there’s a 6am flight that I’m now booked on that *should* arrive at 11:15am so I’ll only miss one thing in the morning which I’ll reschedule. Yes, 6am. That means I get up at 4am. Boy, is my husband laughing at that concept!
TechEd Ask The Experts: Website Graffiti? Silverlight 2.0 Annotation at the Vista booth
I’ll be doing a fun Ask the Experts session at the Windows Vista booth
Windows Vista at TechEd Developer 2008 “Ask the Experts”
Website Graffiti? Drawing and Annotation with Silverlight
Tuesday June 3rd 1:00-2:00
If you are curious how to add annotation to your website and want to see a live demo of a cool Silverlight app I wrote that does hand writing recognition, stop by!
Another reason I hate leaving home in early June
The Rhodenendrons will be in full bloom this week and on their way out when I return. If we get a heavy rain, they’ll probably be gone.![]()
The lupine are starting to bloom. This is just a tiny corner of the field (I think about 2 acres) in front of our house where there are literally hundreds.
The veggie garden needs watching, watering and weeding. I’m a little nervous about deer this year. Every morning I go out and count tomato plants, etc. Plus there’s a big hole (on the far right) in between the bush beans and zucchini that I still need to fill; but it will have to wait and therefore some late plantings. This ain’t no Bill McCarthy garden, but it’s what I can manage.
Loads of VB.NET 2008 books arriving on my doorstep
In the past few weeks, I have received an number of different VB2008 books for distribution at the VTdotNET User Group. I thought authors/publishers were cutting back on VB books but this is great to see. I wonder why the change, though? Read more here…
[A New DevLife post]
TechEd Women in Technology Luncheon – Not For Women Only
Come to the Tech·Ed Women in Technology (WIT) luncheon and join in the discussion about challenges that women face today—including how to break through the corporate “glass ceiling”—as well as the tools, initiatives, and organizations that support women who work in the IT industry. Please bring your success stories to share with others.
Date: Wednesday, June 4
Time: 11:45am– 2:00pm
While the Women in IT luncheon is a great way for women who are in IT to get together, meet one another, share stories, opinions and lessons, in the past it has not been a way to exclude men from the lunch table. There’s nothing in the description that says “women only”.
Having led BOFs on the topic before and attended this luncheon many times, I know there are many men who have questions about women in IT – whether it’s how to encourage their own daughters, how to enable women in their companies or an interest in the age old question about why the percentage of women in IT is so low. If you are a man in IT and you are interested in attending the luncheon, c’mon along.
Eileen Brown, Manager for the IT Pro Evangelist team in Microsoft’s Developer and Platform Group, is hosting the panel again.
I’ll be on the panel this year along with Meryem Tom, a Director at Microsoft and Deborah Arhelger, COO of JNBridge.
See you there!
ADO.NET’s New Look
What will ADO.NET 3.5 look like with the release of VS2008 & .NET 3.5 Service Pack 1? See if this image makes you think: "Oh, right! Hadn’t thought of it that way!".
[A New DevLife post]
Full frontal entities? A little privacy please!
In Beta3 of Entity Framework there was a teaser in the properties window for Entities and their properties. We saw properties for Access, Getter and Setter but they were inactive.
With the latest bits (available in the VS2008 SP1 Beta) those properties have come to life. Here’s what you’ll find and where you’ll find them.
Entity has an Access property that can be set to Internal or Public.
Each property (scalar as well as navigation) has a Getter and Setter that can be Public, Private, Protected or Internal.
EntitySets have a Getter property that can be Public, Private, Protected or Internal. To get to this property, select the EntitySet in the Model Browser.
The settings are dependant on each other. For example if you change an Entity to Internal, but its EntitySet is public , you’ll get this error:
EntityType ‘Customer’ has ‘Internal’ accessibility and EntitySet ‘Customer’ has a get property with ‘Public’ accessibility. EntitySet’s get property must not have less restrictive access than containing EntityType’s access.
You’ll see the impact of these settings as attributes in the model in the generated class. For example, setting the FirstName property’s Setter to Internal results in the a:SetterAccess attribute added to the Property definition in CSDL.
<Property Name="FirstName" Type="String" Nullable="false" MaxLength="50" a:SetterAccess="Internal" />
and in the Customer class, the FirstName’s Set becomes Friend Set, limiting access to it.
<Global.System.Data.Objects.DataClasses.EdmScalarPropertyAttribute(IsNullable:=false), _
Global.System.Runtime.Serialization.DataMemberAttribute()> _
Public Property FirstName() As String
Get
Return Me._FirstName
End Get
Friend Set
Me.OnFirstNameChanging(value)
Me.ReportPropertyChanging("FirstName")
Me._FirstName = Global.System.Data.Objects.DataClasses.StructuralObject.SetValidValue(value, false)
Me.ReportPropertyChanged("FirstName")
Me.OnFirstNameChanged
End Set
End Property
TechEd speakers – toes yes, jeans no
In the past, there has always been this funny rule about representing Microsoft at TechEd that said “no open toe shoes”. Yesterday we finally got the email about our attire and there was nothing about open toe shoes. However, I was not happy to see “khaki or black pants/skirt” only. (And they were clear to note “where appropriate” next to “skirt” heh.) But the color restriction (which I should have expected) was a bummer because I have lost some weight and my khaki and black pants are awfully baggy and my Patagucci khaki’s from my pre-.NET days when I had loads of time to exercise are still a little snug and now a little out of fashion (“Expecting a FLOOD, Julie?”). I do have to go to “the big city” (that’s Burlington VT, pop. 40,000) on Friday, so perhaps I’ll go buy some new pants. But at least I get to wear my Tevas.