Browse by Tags
All Tags »
Telligenti »
Technical (RSS)
Aaaaaaaaaaaaah. There must have been an automatic update last night, I came in this morning to a signin screen and the computer was booting from scratch. Of course, I immediately turned around and went for coffee; it's not a quick process. On my return,
Read More...
I started Telligent as a PM, then went into product, then moved to the Microsoft-specific "sites" team where I wrote and maintained the http://silverlight.net site. But that ended last week as the sites team transitioned onto other projects
Read More...
I've always loved Lightbox - it just looks so cool. I've used it to "popup" larger versions of images on a few sites, but only today did I notice that it causes a security warning in IE7. Unfortunately, this isn't highlighted as
Read More...
I was a little surprised that someone I talked to last night hadn't heard of this amazing service, and even more surprised that I hadn't blogged about this before. If you have a router at home - and surely most of my audience does - you need to
Read More...
Quick shout out to Peter-Paul Koch at QuirksMode.org for his very nice javascript browser detection script. Clever, and definately deserved more than a tweet.
Read More...
After developing for *cough* some time it's not often that I come across a new style of URL that I've never even heard of before. A few days ago I saw a forum post about a 404 message someone got about their geotrust smartseal badge. I followed
Read More...
Until today I have been reviewing my gmail spam folder each day or so, and marking all new spam as read when I've reviewed it. Most of the time that works ok, but I've noticed that there are times when I get spam with a presumably deliberately
Read More...
First, always keep the wrapping, even the little twisty ties that keep the wires tidy. Keep the paperwork and the CD's - and I try to open the tamper-proof stickers with a sharp knife so that I don't rip the paperwork. I'm getting very good
Read More...
Rick Strahl: What can you keep in your Head? +1
Read More...
I was having loads of fun getting a "borrowed" web service running on the staging server yesterday. As with all code that you take without asking, there are always.. shall we say, "hiccups". Apparently every line in the web.config
Read More...
As I find them.. Gmail: I've seen 20-30 good emails caught in spam, so check it often while you train it. Since I don't want to check the same message twice, I mark the spam as read whenever I check it. Then, to check just the unread spam you
Read More...
Newbie tip. This is good: if (error.Contains("Declined")).. Not so much: if (error.IndexOf("Declined") != -1).. Guess which seems to be more common in code P.S. Yes, I have old code with examples of the latter. Doesn't count.
Read More...
To copy your personal calendar to google, use their new synch tool ... ..and then uninstall it. It crashed my wife's Outlook 2003 almost every hour when it synched up, and I'm still finding strange entries in my Deleted Items folder in Outlook
Read More...
Dan asked me to post an update as I explore deeper into the Google forest. I'm now fully committed to Gmail and Google Calendar (why isn't it GCalendar?) and Outlook is now purely an evil tolerated for work purposes only. And with Rob Howard's
Read More...
This was interesting - I had a uniqueidentifier as an output parameter from a sproc and wanted to put it into a Guid. Guid guid = (Guid)sqlCmd.Parameters["@UserID"].Value; No. That throws System.InvalidCastException : Invalid cast from 'System.String'
Read More...