User Ian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:32:30Zhttp://stackoverflow.com/feeds/user/14871http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1010177/what-was-the-worst-3rd-party-api-you-had-to-work-with/100128#1001281Answer by Ian for What was the worst 3rd party API you had to work with?Ian2008-09-19T06:56:33Z2009-04-19T11:53:40Z<p>The visual studio API for creating language plugins. Not the extensibility API which isn't too bad but the VSIP api for actually creating new project types, debuggers etc. All ugly-ass COM interfaces with indecipherable names and very little documentation. Might have improved since I used it but uurch - it was pretty nasty.</p>
http://stackoverflow.com/questions/79774/dealing-with-date-only-dates-across-timezones-in-net1Dealing with Date only dates across timezones in .NetIan2008-09-17T03:49:15Z2008-09-18T00:59:19Z
<p>Ok - a bit of a mouthful. So the problem I have is this - I need to store a Date for expiry where <em>only</em> the date part is required and I don't want any timezone conversion. So for example if I have an expiry set to "08 March 2008" I want that value to be returned to any client - no matter what their timezone is.
The problem with remoting it as a DateTime is that it gets stored/sent as "08 March 2008 00:00", which means for clients connecting from any timezone West of me it gets converted and therefore flipped to "07 March 2008"
Any suggestions for cleanly handling this scenario ? Obviously sending it as a string would work. anything else ?
thanks,
Ian</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/80374#803740Answer by Ian for What development book made the most impact on you as a developer?Ian2008-09-17T05:49:22Z2008-09-17T05:49:22Z<p>The Pragmatic programmer was pretty good. However one that really made an impact when I was starting out was :</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1568843186" rel="nofollow">Windows 95 System Programming Secrets"</a></p>
<p>I know - it sounds and looks a bit cheesy on the outside and has probably dated a bit - but this was an awesome explanation of the internals of Win95 based on the Authors (Matt Pietrek) investigations using his own own tools - the code for which came with the book. Bear in mind this was before the whole open source thing and Microsoft was still pretty cagey about releasing documentation of internals - let alone source.
There was some quote in there like "If you are working through some problem and hit some sticking point then you need to stop and really look deeply into that piece and really understand how it works". I've found this to be pretty good advice - particularly these days when you often have the source for a library and can go take a look.
Its also inspired me to enjoy diving into the internals of how systems work, something that has proven invaluable over the course of my career.</p>
<p>Oh and I'd also throw in effective .net - great internals explanation of .Net from Don Box.</p>
http://stackoverflow.com/questions/79774/dealing-with-date-only-dates-across-timezones-in-net/79860#798600Answer by Ian for Dealing with Date only dates across timezones in .NetIan2008-09-17T04:03:58Z2008-09-17T04:03:58Z<p>yshuditelu - yep - thinking of going with something like this. Adding a custom Date only type to the wire protocol.
Its kinda weird that .Net doesn't have one built in - since many Sql implementations support Date only types. Java also doesn't have one - in fact - in my opinion the java date class is hideously over-engineered - but thats another topic.</p>
http://stackoverflow.com/questions/79774/dealing-with-date-only-dates-across-timezones-in-net/79834#798340Answer by Ian for Dealing with Date only dates across timezones in .NetIan2008-09-17T03:59:27Z2008-09-17T03:59:27Z<p>ToUniversalTime() won't work. ie server time gets converted to UTC, then the client gets it off the wire and converts from UTC to client-local. Same problem.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79720#7972033Answer by Ian for What do you use to keep notes as a developer?Ian2008-09-17T03:41:03Z2008-09-17T03:41:03Z<p>I use a directory of text files. Roughly looks like this at the moment :</p>
<pre><code>admin\
important-stuff.rst
development-log.rst
development\
projects\
proj1\
overview.rst
...
proj2
reference\
some-topic.rst
</code></pre>
<p>I use the ReStructuredText (rst) format for the individual files so its easy to generate html. Of course markdown would work almost as well :)</p>
<p>in development-log.rst I put entries for each day with current tasks and just general notes for stuff that comes up. Each new project starts with an overview.rst and can then expand into new files on specific topics as needed.</p>
<p>I manage the whole tree as a local <a href="http://bazaar-vcs.org/" rel="nofollow">bazaar</a> tree so i can check old versions if necessary.</p>
<p>To search I just use my editors built in search - or index using a desktop search tool.</p>
<p>I used the rsync the whole tree up to a ssh server every day to use from home as well - but thats not an option now that I'm behind a corporate firewall. </p>
<p>btw - this editting widget is actually pretty cool. I like the combination of editting in a plain text format combined with live preview. Works well.</p>
http://stackoverflow.com/questions/79774/dealing-with-date-only-dates-across-timezones-in-net/79792#79792Comment by Ian on Dealing with Date only dates across timezones in .NetIan2008-09-17T07:43:13Z2008-09-17T07:43:13Znope sorry - see previous responses.