User Dan Mitchell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T23:12:28Zhttp://stackoverflow.com/feeds/user/3220http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1273265/calling-firefox-xpcom-from-external-app0Calling Firefox XPCOM from external app?Dan Mitchell2009-08-13T16:57:52Z2009-08-13T23:04:22Z
<p>Context: we need to read Firefox cookies in our app; until Firefox 3.5, this was possible by reading cookies.txt / cookies.sqlite. In Firefox 3.5, it exclusively locks the cookie file so outside apps can't read it (see <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476167" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=476167</a>), and even if we make a local copy, FF doesn't always flush the cookies to disk until exit so they may not be there.</p>
<p>The suggested solution is to use nsICookieManager, which looks like what we need -- but how can I get at one of those from a process that isn't Firefox?</p>
<p>Everything I see about XPCOM suggests I can only use it from firefox extensions -- do we have to write an extension, and then somehow invoke Firefox to install our extension and then somehow invoke the extension itself to pass cookies back out? </p>
http://stackoverflow.com/questions/302294/cookies-in-firefox/1273213#12732131Answer by Dan Mitchell for Cookies in FirefoxDan Mitchell2009-08-13T16:50:30Z2009-08-13T16:50:30Z<p>Note that in Firefox 3.5, cookies.sqlite is locked exclusively by Firefox, so you have to make a copy of it before reading.</p>
<p>Also, cookies.sqlite may not be flushed to disk until Firefox exits, so you can't assume that the file on disk contains the cookies you need if Firefox is still running.</p>
http://stackoverflow.com/questions/124600/osmotic-communication-vs-closed-off-offices10Osmotic communication -vs- closed-off offices? Dan Mitchell2008-09-23T23:50:06Z2009-03-04T08:27:41Z
<p>What are people's experiences with osmotic communication (as recommended by Alastair Cockburn as part of <a href="http://alistair.cockburn.us/index.php/Osmotic%5Fcommunication%2Bosmotic%2Bcommunication" rel="nofollow">Crystal Clear</a>) as opposed to giving developers individual offices with doors (as recommended by lots of people; for instance, <a href="http://www.joelonsoftware.com/articles/fog0000000068.html" rel="nofollow">Joel Spolsky</a>. Joel comes back to this <a href="http://www.joelonsoftware.com/items/2005/10/16.html" rel="nofollow">here</a> )</p>
<p>Has anyone found the learning-by-osmosis approach to work well? Cockburn suggests a "cone of silence" to allow lead developers to get work done without distractions, but his idea of that being 6pm to 2am isn't always practical. I can see the advantage of osmotic learning for the people doing the learning, but on the other end of things it makes it difficult to get any work done on tough problems where you need concentration.</p>
<p>Do people doing this find that it's actually a win overall for the whole team, even though some people get less work done? Is anyone deliberately doing this, or is it just an accident of cubicle design when it happens?</p>
http://stackoverflow.com/questions/4508/mapi-and-managed-code-experiences/30444#304441Answer by Dan Mitchell for MAPI and managed code experiences?Dan Mitchell2008-08-27T15:26:23Z2008-08-27T15:26:23Z<p>You could also use <a href="http://www.dimastr.com/redemption/" rel="nofollow">Outlook Redemption</a>, which is supported from managed code; I'm not immediately sure if it has a simple MAPISendDocuments replacement, but Dmitry's helpful if you have questions.</p>
<p>As for "crashes and burns", here's another quote from an MS support guy, <a href="http://groups.google.com/group/microsoft.public.win32.programmer.messaging/msg/20149ae3de2f4920?hl=en&" rel="nofollow">here</a></p>
<blockquote>
<p>It's the sort of thing that'll mostly work. It'll work while you're writing it. Then it'll work while you're testing it. It'll work while your customer is evaluating it. Then as soon as the customer deploys it - BAM! That's when it'll decide to start having problems. And Microsoft ain't gonna help you with it, since we told you not to do it in the first place. :)</p>
</blockquote>
http://stackoverflow.com/questions/18606/accessing-an-exchange-server-without-outlook/30434#304341Answer by Dan Mitchell for Accessing an Exchange Server without OutlookDan Mitchell2008-08-27T15:24:39Z2008-08-27T15:24:39Z<p>There's also Exchange Web Services in newer versions of Exchange.</p>
<p>If you need to use Outlook Express and talk to an Exchange server which doesn't support IMAP/POP3, you're stuck, sadly.</p>
http://stackoverflow.com/questions/8440/visual-studio-optimizations/30410#3041025Answer by Dan Mitchell for Visual Studio OptimizationsDan Mitchell2008-08-27T15:15:10Z2008-08-27T15:15:10Z<p>I use keyboard macros (control-shift-R) to get repetitive tasks done; you have to get the knack of it at first, but once you do, you can do a lot of stuff pretty quickly. For instance, you have:</p>
<pre><code>DoStuff(1,2,"foo");
DoStuff(3,4,"bar");
DoStuff(123,123421,"baz");
</code></pre>
<p>... and so on for many lines, and you want to insert 'true' between the first and second arguments.</p>
<p>Put cursor at the start of the first line, then:</p>
<pre><code>control-shift-R [start recording]
control-F [open 'find' dialog]
, enter esc [go to the next comma, close the find dialog]
type 'true,' [new text]
down, home [go to the start of the next line, so you're where you started]
control-shift-R [stop recording]
</code></pre>
<p>now you can just hit control-shift-P many times and it'll do that set of steps over and over again.</p>
<p>That's a simple example; you can do a lot of refactoring-like stuff pretty quickly this way, but it's also handy for wrangling big chunks of text for manual batch operations or whatever.</p>
<p>I'm sure if I learned how to do regexp search/replace, I could do the same sorts of things that way, but I got into this habit from using Brief a long while ago and I've stuck with thinking about "doing tasks the way I do them by hand", rather than turning them into regexps.</p>
<p>(presumably refactoring tools could do that particular operation, but I'm in C++ and none of them work very well there)</p>
<p>Other things: </p>
<ul>
<li>CommentReflower is a great add-in if you tend to write big chunks of comment; the original's <a href="http://commentreflower.sourceforge.net/" rel="nofollow">here</a>, and there's a VS2008 port <a href="http://www.kynosarges.de/CommentReflower.html" rel="nofollow">here</a>.</li>
<li>control-K control-F -> automatically re-indent code, useful when things have got messy.</li>
<li>If you need to make the same change to a bunch of project settings, don't forget you can do find-and-replace-in-files on .vsproj files.</li>
</ul>
http://stackoverflow.com/questions/8440/visual-studio-optimizations/133187#133187Comment by Dan Mitchell on Visual Studio OptimizationsDan Mitchell2009-08-13T18:31:19Z2009-08-13T18:31:19ZSeconding the recommendation to defrag; building our app on my machine went from 40-70 minutes down to 15-20 after cleaning up and defragging. I was amazed how much difference it made, to be honest.http://stackoverflow.com/questions/826741/programmatically-set-browser-cookie-firefox/826834#826834Comment by Dan Mitchell on Programmatically set browser cookie (Firefox)Dan Mitchell2009-08-13T16:51:32Z2009-08-13T16:51:32ZFirefox 3.5 locks the cookie file exclusively, so this won't work any more. It's closed as WONTFIX; see
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476167" rel="nofollow">bugzilla.mozilla.org/show_bug.cgi?id=476167/…</a>