User Wayne Kao - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:59:32Z http://stackoverflow.com/feeds/user/3284 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1330282/my-vsto-3-0-outlook-addin-doesnt-load 0 My VSTO 3.0 Outlook addin doesn't load Wayne Kao 2009-08-25T18:57:59Z 2009-10-18T08:01:32Z <p>I'm trying to diagnose why my Outlook plugin written in C#/VSTO 3.0/VS 2008 doesn't load after being installed.</p> <p>The plugin works awesomely on my development machine, which has Visual Studio 2008 installed. I can't expect all my users to have all the prerequisites though so I went through these steps to write an installer: <a href="http://msdn.microsoft.com/en-us/library/cc563937%28loband%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc563937%28loband%29.aspx</a></p> <p>I installed the add-in on a fresh Windows XP SP 2 machine with a fresh install of Outlook 2007. It installs all the prereqs ok (.NET 3.5, VSTO 3.0 runtime, Windows Installer 3.1, 2007 PIAs). Outlook starts but the add-in isn't run. If I go to the Add-ins tab in the Trust Center, I see my add-in in the "Inactive Application Add-ins" section with the message "Not loaded. A runtime error occurred during the loading of the COM Add-in.".</p> <p>Not sure how to find the specific error so I can fix it.</p> <p>The reg keys look ok. Under HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\BlahAddin I see Description, FriendlyName, LoadBehavior (set to 3 until it fails after which if becomes set to 2), and Manifest.</p> <p>Tried the VSTO_SUPPRESSDISPLAYALERTS environment variable trick and then launched Outlook from the command line but no output came out.</p> <p>I have remote debugging more or less working but I'm not sure what to look for. I don't see my DLL loaded when I attach to Outlook, but then again maybe managed DLLs don't show up the same way in VS.</p> <p>Any other ideas on next steps I could follow to produce a specific error I can diagnose?</p> http://stackoverflow.com/questions/660599/rails-per-request-hash 0 Rails per-request hash? Wayne Kao 2009-03-19T00:17:14Z 2009-10-09T23:00:02Z <p>Is there a way to cache per-request data in Rails? For a given Rails/mongrel request I have the result of a semi-expensive operation that I'd like to access several times later in that request. Is there a hash where I can store and access such data?</p> <p>It needs to be fairly global and accessible from views, controllers, and libs, like Rails.cache and I18n are.</p> <p>I'm ok doing some monkey-patching if that's what it takes.</p> <ul> <li>Memcached doesn't work because it'll be shared across requests, which I don't want.</li> <li>A global variable similarly doesn't work because different requests would share the same data, which isn't what I want.</li> <li>Instance variables don't work because I want to access the data from inside different classes.</li> </ul> http://stackoverflow.com/questions/1330282/my-vsto-3-0-outlook-addin-doesnt-load/1445537#1445537 0 Answer by Wayne Kao for My VSTO 3.0 Outlook addin doesn't load Wayne Kao 2009-09-18T16:12:57Z 2009-09-18T16:12:57Z <p>Solved my problem after weeks of pain. The "Manifest" reg key was getting corrupted to some junk value during the setup build. It was a known Visual Studio bug that supposedly got fixed in Visual Studio 2008 SP 1, but apparently wasn't for me. Renaming the project name to be different from the plugin name fixed the problem. Random, huh?</p> http://stackoverflow.com/questions/55611/javascript-private-methods 13 JavaScript private methods Wayne Kao 2008-09-11T01:12:39Z 2009-09-01T10:22:34Z <p>To make a JavaScript class with a public method I'd do something like:</p> <pre><code>function Restaurant() { } Restaurant.prototype.buy_food = function() { // something here } Restaurant.prototype.use_restroom = function() { // something here } </code></pre> <p>That way users of my class can:</p> <pre><code>var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom(); </code></pre> <p>How do I create a private method that my public buy_food and use_restroom methods can call but that users of the class can't call externally.</p> <p>In other words, I want my method implementation to be able to do:</p> <pre><code>Restaurant.prototype.use_restroom = function() { this.private_stuff(); } </code></pre> <p>But this shouldn't work:</p> <pre><code>var r = new Restaurant(); r.private_stuff(); </code></pre> <p>How do I define private_stuff as a private method so both of those hold true?</p> <p>I've read <a href="http://javascript.crockford.com/private.html" rel="nofollow">Doug Crockford's writeup</a> a few times but it doesn't seem like "private" methods can be called by public methods and "privileged" methods can be called externally.</p> http://stackoverflow.com/questions/568594/asp-net-mvc-automatically-decoding-json-encoded-parameters-from-ajax 4 ASP.NET MVC automatically decoding JSON-encoded parameters from AJAX Wayne Kao 2009-02-20T07:23:33Z 2009-07-03T20:39:47Z <p>When my JavaScript code uses AJAX to call an ASP.NET MVC method, it passes values in JSON. For example:</p> <pre><code>var request = new XMLHttpRequest(); request.open("GET", "http://www.awesome.com/DoSomething?param1=%22some%20string%22&amp;param2=1234", true); // parameter string created with JSON.stringify </code></pre> <p>or</p> <pre><code>var request = new XMLHttpRequest(); request.open("POST", "http://www.awesome.com/DoSomething", true); // set some headers request.send("param1=%22some%20string%22&amp;param2=1234"); // parameter string created with JSON.stringify </code></pre> <p>On the ASP.NET MVC side, I have my method to handle the call:</p> <pre><code>public void DoSomething(string param1, string param2) { </code></pre> <p>What sucks is param1 is surrounded with quotation marks:</p> <pre><code>"some string" </code></pre> <p>What sucks more is param2 is the <em>string</em>:</p> <pre><code>1234 </code></pre> <p>when I really want the value as an integer. So, the first thing I have to do is use DataContractJsonSerializer to decode both these puppies so my string doesn't have quotation marks and my second string is converted to an int. It's not too bad the first one or two times, but gets old having to do for every single AJAX action.</p> <p>Ideally, it'd be awesome to have a signature like:</p> <pre><code>public void DoSomething(string param1, int param2) </code></pre> <p>where I could just jump right in and use my values without worrying about JSON decoding, just like is done for non-AJAX actions.</p> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/703561/speeding-up-virtual-function-calls-in-gcc 5 Speeding up virtual function calls in gcc Wayne Kao 2009-04-01T00:11:08Z 2009-06-30T04:46:26Z <p>Profiling my C++ code with gprof, I discovered that a significant portion of my time is spent calling one virtual method over and over. The method itself is short and could probably be inlined if it wasn't virtual.</p> <p>What are some ways I could speed this up short of rewriting it all to not be virtual?</p> http://stackoverflow.com/questions/271856/sharing-javascript-code-between-net-desktop-and-browser 4 Sharing JavaScript code between .NET desktop and browser Wayne Kao 2008-11-07T11:55:53Z 2009-06-01T22:53:16Z <p>I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compile web-friendly JavaScript into assemblies that my C# code can access?</p> <ul> <li>Managed JScript - Is there a compiler for this available that will produce something that can run on the desktop CLR? I've only seen released examples for the Silverlight runtime. It doesn't sound like it's officially available on the desktop but I'm willing to try something less blessed, like can I compile with the Silverlight tools and then run on the desktop CLR?</li> <li>JScript .NET - Sounds like it's got enough custom language extensions where having the same code run in a browser would be really hard, but maybe there's a way...?</li> </ul> <p>If neither of those work, I guess my options are to:</p> <ul> <li>Have a C# version and a JavaScript version which I have to keep in sync (yuck).</li> <li>Write a preprocessor of sorts that runs at compile time to turn my JavaScript into JScript .NET or something that I can compile into .NET assemblies.</li> <li>Script#: Looks like this turns C# code into JavaScript code. Not awesome since I'd prefer to be able to heavily tune JavaScript code directly, but it could work.</li> </ul> <p>Anyone have success with any of these options?</p> http://stackoverflow.com/questions/765845/codeigniter-or-php-equivalent-of-rails-partials-and-templates 4 CodeIgniter or PHP equivalent of Rails partials and templates Wayne Kao 2009-04-19T18:27:50Z 2009-04-29T03:34:03Z <p>In CodeIgniter or core PHP is there an equivalent of Rails's view partials and templates?</p> <p>A partial would let me render another view fragment inside my view, like have a common navbar.php view that I could point to inside my homepage.php view. Templates would let define the overall shell of an HTML page in one place, and let each view just fill in the main body section.</p> <p>The closest thing I could find in the CodeIgniter documentation was <a href="http://codeigniter.com/user%5Fguide/general/views.html" rel="nofollow">Loading multiple views</a> where several views are rendered sequentially in the controller, but it seems strange to be dictating the visual look of my page inside the controller... i.e. to move the navbar my designer would have to edit the controller.</p> <p>Searching on Stack Overflow for a PHP way to accomplish this, I found <a href="http://stackoverflow.com/questions/761922/can-you-render-a-php-file-into-a-variable">this page</a> which talks about simulating partials with <a href="http://us3.php.net/ob%5Fstart" rel="nofollow">ob_start</a>. Is that the recommended approach inside CodeIgniter?</p> http://stackoverflow.com/questions/762336/whats-the-difference-between-rack-and-rails-metal-ruby/762382#762382 1 Answer by Wayne Kao for What's the difference between Rack and Rails Metal (Ruby)? Wayne Kao 2009-04-17T22:02:00Z 2009-04-17T22:07:18Z <p>Rack is a generic Ruby API/layer of abstraction that lets different application frameworks integrate to a web server.</p> <p>Rails Metal is Rails's implementation of a Rack handler. It includes not only a handler that calls Rails but also exposes its own API that makes it easier for you to create your own handlers that hit the web server and bypass core Rails.</p> http://stackoverflow.com/questions/549313/adding-chart-to-wordprocessingml/683583#683583 1 Answer by Wayne Kao for Adding Chart to WordprocessingML Wayne Kao 2009-03-25T21:38:57Z 2009-03-25T21:38:57Z <p>This article describes how to add a picture to WordProcessingML from an XML perspective: <a href="http://openxmldeveloper.org/articles/462.aspx" rel="nofollow">http://openxmldeveloper.org/articles/462.aspx</a></p> <p>Actual code for the same thing using the Open XML API: <a href="http://msdn.microsoft.com/en-us/library/bb497430%28office.14%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb497430(office.14).aspx</a></p> <p>If you've successfully added a chart to SpreadsheetML, you can adapt the picture example to do the same for WordProcessingML. You'll still have the a:graphic element that they have in their example. Contained inside, the a:graphicData will have a chart URI (<a href="http://schemas.openxmlformats.org/drawingml/2006/chart" rel="nofollow">http://schemas.openxmlformats.org/drawingml/2006/chart</a>) instead of a picture URI. The data inside the a:graphicData will be identical to what you had for SpreadsheetML.</p> http://stackoverflow.com/questions/655386/is-there-a-way-to-update-rubygems-offline/655529#655529 0 Answer by Wayne Kao for Is there a way to update RubyGems offline? Wayne Kao 2009-03-17T18:33:18Z 2009-03-17T18:33:18Z <p>I usually use</p> <pre><code>gem unpack blah-1.1.1.gem </code></pre> <p>to unpack the gem into individual Ruby files. Then you just need to make sure that directory is in your Ruby load path, and it's as good as a normal gem.</p> http://stackoverflow.com/questions/640190/image-width-height-as-an-attribute-or-in-css 1 Image width/height as an attribute or in CSS? Wayne Kao 2009-03-12T19:47:19Z 2009-03-13T11:11:22Z <p>What's the "correct" semantic way to specify image height and width? In CSS...</p> <pre><code>width:15px; </code></pre> <p>or inline...</p> <pre><code>&lt;img width="15" </code></pre> <p>?</p> <p>CSS seems like the right place to put visual information. On the other hand, few would argue that image "src" should not be specified as an attribute and the height/width seem as tied to the binary image data as the "src" is.</p> <p>(Yes, I realize from a technical, end-user perspective this really doesn't matter.)</p> http://stackoverflow.com/questions/568594/asp-net-mvc-automatically-decoding-json-encoded-parameters-from-ajax/568605#568605 1 Answer by Wayne Kao for ASP.NET MVC automatically decoding JSON-encoded parameters from AJAX Wayne Kao 2009-02-20T07:30:34Z 2009-02-20T07:30:34Z <p>Oh, after posting I found code that does what I'm looking for. See the "ObjectFilter" class near the bottom:</p> <p><a href="http://weblogs.asp.net/omarzabir/archive/2008/10/03/create-rest-api-using-asp-net-mvc-that-speaks-both-json-and-plain-xml.aspx" rel="nofollow">http://weblogs.asp.net/omarzabir/archive/2008/10/03/create-rest-api-using-asp-net-mvc-that-speaks-both-json-and-plain-xml.aspx</a></p> http://stackoverflow.com/questions/207105/how-does-a-website-know-what-city-im-in 7 How does a website know what city I'm in? Wayne Kao 2008-10-16T01:14:34Z 2008-11-03T20:14:58Z <p>Many web sites know where I'm from. For example, visiting <a href="http://www.yelp.com/" rel="nofollow">Yelp</a> shows me restaurant listings from the nearest metropolitan area and <a href="http://search.live.com/results.aspx?q=maps" rel="nofollow">searching for "maps" on Live Search</a> shows me a map of my current city.</p> <p>My best guess is sites do this by using a large database mapping the user's IP address to city name. If this is true, where's the best place to obtain such a database at a reasonable cost? A Google search matches a lot of random vendors I've never heard of.</p> http://stackoverflow.com/questions/60794/scriptaculous-ajax-autocompleter-extra-functionality-in-li/61070#61070 0 Answer by Wayne Kao for Scriptaculous Ajax.Autocompleter extra functionality in LI Wayne Kao 2008-09-14T02:25:57Z 2008-09-14T02:25:57Z <p>Scriptaculous Autocompleter monitors the onclick event on the 'li'. When you stick an image inside an 'li', both the 'img' and the 'li' will get the click event, as this demonstrates. That's why Autocompleter is just doing its normal thing when the button is clicked:</p> <pre><code>&lt;ul&gt; &lt;li onclick="alert('li');"&gt; &lt;img onclick="alert('image')" src="blah.gif"/&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>What I'd try is to have your 'onclick' set some sort of state variable that tells you that Delete has been clicked. Then, <a href="http://github.com/madrobby/scriptaculous/wikis/ajax-autocompleter" rel="nofollow">override 'updateElement' in the Autocompleter</a> to not do anything if the state is set. An alternative is to subclass the entire Autocompleter and override 'onClick'. That will make the list not disappear when your image is clicked.</p> <p>To have the list update in real-time, in your image's 'onclick', delete the 'li' from the list in the DOM too. Like this conceptually:</p> <pre><code>img onclick="deleteWord('blah');setStateVariable();this.parentNode.parentNode.removeChild(this.parentNode);" </code></pre> http://stackoverflow.com/questions/61051/when-did-browsers-start-supporting-multiple-classes-per-tag/61053#61053 1 Answer by Wayne Kao for When did browsers start supporting multiple classes per tag? Wayne Kao 2008-09-14T01:55:27Z 2008-09-14T01:55:27Z <p>Apparently IE 6 doesn't handle these correctly if you have CSS selectors that contain multiple class names: <a href="http://www.ryanbrill.com/archives/multiple-classes-in-ie/" rel="nofollow">http://www.ryanbrill.com/archives/multiple-classes-in-ie/</a></p> http://stackoverflow.com/questions/58184/something-special-about-safari-for-windows-and-ajax/58248#58248 3 Answer by Wayne Kao for Something special about Safari for Windows and AJAX? Wayne Kao 2008-09-12T03:06:59Z 2008-09-12T03:06:59Z <p>Safari is really standards compliant. Unless you're using some really esoteric browser features, in general if something works in Firefox, I've found it works without modification in Windows Safari.</p> <p>Apple has <a href="http://developer.apple.com/internet/safari/" rel="nofollow">a developer center for web developers</a>, but I didn't find anything too useful there.</p> http://stackoverflow.com/questions/55871/track-when-user-hits-back-button-on-the-browser/55886#55886 6 Answer by Wayne Kao for Track when user hits back button on the browser Wayne Kao 2008-09-11T06:10:16Z 2008-09-11T06:10:16Z <p>One of my favorite frameworks for doing this is <a href="http://developer.yahoo.com/yui/history/" rel="nofollow">Yahoo!'s Browser History Manager</a>. You register events and it calls you back when the user returns Back to that state. And if you want to learn how it works, <a href="http://yuiblog.com/blog/2007/02/21/browser-history-manager/" rel="nofollow">here's a fun blog entry about the decisions Yahoo! made</a> when designing it.</p> http://stackoverflow.com/questions/55735/how-do-i-detect-text-and-cursor-position-changes-in-word-using-vsto/55868#55868 0 Answer by Wayne Kao for How Do I detect Text and Cursor position changes in Word using VSTO Wayne Kao 2008-09-11T05:47:51Z 2008-09-11T05:47:51Z <p>As you've probably discovered, <a href="http://msdn.microsoft.com/en-us/library/aa269681(office.10).aspx" rel="nofollow">Word has events</a>, but they're for really coarse actions like a document open or a switch to another document. I'm guessing MS did this intentionally to prevent a crappy macro from slowing down typing.</p> <p>In short, there's no great way to do what you want. <a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.office.developer.com.add_ins&amp;tid=4c3e438e-d9ab-4384-b29c-105175fd252e&amp;cat=&amp;lang=&amp;cr=&amp;sloc=&amp;p=1" rel="nofollow">A Word MVP confirms that in this thread.</a></p> http://stackoverflow.com/questions/52319/tablet-pc-sdk-1-7-merge-module-vs2008-windows-vista/55841#55841 2 Answer by Wayne Kao for Tablet PC SDK (1.7) Merge Module + VS2008 + Windows Vista? Wayne Kao 2008-09-11T05:18:08Z 2008-09-11T05:18:08Z <p>As usual, one of the trickiest aspects of Tablet development is deployment:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Tablet_PC#Microsoft" rel="nofollow">Tablet functionality isn't built into the Home Basic or Starter editions</a> of Vista so if you want your program to work on those, you still need the MSM.</li> <li>You should be ok using merge modules on Tablet-enabled versions of Vista. I mean, it's equivalent installing the MSM onto an existing XP Tablet that already had the components. It won't add it if it's already there.</li> <li>XP 2005 Tablet included TPC 1.7. These are also installed on Tablet-enabled versions of Vista too. If you stick with those core features, just installing the main 1.7 MSM everywhere's probably cool. However, Vista also added <a href="http://msdn.microsoft.com/en-us/library/ms699525(VS.85).aspx" rel="nofollow">new ink analysis capabilities, some stylus input APIs</a>, and <a href="http://en.wikipedia.org/wiki/Windows_Flip_3D#Other_mobility_enhancements" rel="nofollow">a new InkCanvas control</a> so if you need any of these, are there <a href="http://msdn.microsoft.com/en-us/library/ms701189(VS.85).aspx" rel="nofollow">additional merge modules you need to install</a> if you want everything to still work on XP 2005.</li> </ul> <p>So bottom line, if you care about XP and/or Home Basic Vista, you still need to deal with merge modules... stuff should still work on Vista. If you're just targeting premium versions of Vista, you don't need 'em anymore.</p> http://stackoverflow.com/questions/44145/database-sharding-and-rails/55666#55666 3 Answer by Wayne Kao for Database sharding and Rails Wayne Kao 2008-09-11T01:56:42Z 2008-09-11T01:56:42Z <p>I assume with shards we're talking about horizontal partitioning and not vertical partitioning (<a href="http://en.wikipedia.org/wiki/Partition_(database)" rel="nofollow">here are the differences on Wikipedia</a>).</p> <p>First off, <strong>stretch vertical partitioning</strong> as far as you can take it before you consider horizontal partitioning. It's easy in Rails to have different models point to different machines and for most Rails sites, this will bring you far enough.</p> <p>For horizontal partitioning, in an ideal world, this would be handled at the <strong>application layer</strong> in Rails. But while it's not hard, it's not trivial in Rails, and by the time you need it, usually your application has grown beyond the point where this is feasible since you have ActiveRecord calls sprinkled all over the place. And no one, developers or management, likes working on it before you need it since everyone would rather work on features users will use now rather than on partitioning which may not come into play for years after your traffic has exploded.</p> <p><strong>ActiveRecord layer</strong>... not easy from what I can see. Would require lots of monkey patching into Rails internals.</p> <p>At <a href="http://www.spock.com/about" rel="nofollow">Spock</a> we ended up handling this using a <strong>custom MySQL proxy</strong> and open sourced it on SourceForge as <a href="http://spockproxy.sourceforge.net/" rel="nofollow">Spock Proxy</a>. ActiveRecord thinks it's talking to one MySQL database machine when reality it's talking to the proxy, which then talks to one or more MySQL databases, merges/sorts the results, and returns them to ActiveRecord. Requires only a few changes to your Rails code. Take a look at the Spock Proxy SourceForge page for more details and for our reasons for going this route.</p> http://stackoverflow.com/questions/1330282/my-vsto-3-0-outlook-addin-doesnt-load/1330979#1330979 Comment by Wayne Kao on My VSTO 3.0 Outlook addin doesn't load Wayne Kao 2009-08-27T19:30:09Z 2009-08-27T19:30:09Z Always installing on a clean VM without any state. Can attach to Outlook with remote debugging in managed &amp; unmanaged mode. There are exceptions thrown during load, but hard to decipher without mso.dll symbols: &quot;First-chance exception at 0x7c81eb33 (kernel32.dll) in OUTLOOK.EXE: 0x000006A6: The binding handle is invalid.&quot; Similar exceptions in Safe Mode when the addin's not loaded. Can't set breakpoints in my add-in (&quot;The breakpoint will not currently be hit. No symbols will be loaded for this document.&quot;) but my message box not showing means I'm getting borked before the add-in loads. http://stackoverflow.com/questions/1330282/my-vsto-3-0-outlook-addin-doesnt-load/1330332#1330332 Comment by Wayne Kao on My VSTO 3.0 Outlook addin doesn't load Wayne Kao 2009-08-27T19:17:44Z 2009-08-27T19:17:44Z Didn't help unfortunately. My startup/shutdown methods are pretty barren and I tried wrapping them with try/catch blocks. http://stackoverflow.com/questions/660599/rails-per-request-hash Comment by Wayne Kao on Rails per-request hash? Wayne Kao 2009-08-25T19:05:40Z 2009-08-25T19:05:40Z In bullet 1 I say I <i>don't</i> want it shared across requests. http://stackoverflow.com/questions/660599/rails-per-request-hash/660622#660622 Comment by Wayne Kao on Rails per-request hash? Wayne Kao 2009-03-19T01:07:10Z 2009-03-19T01:07:10Z That's not always practical. Like I mentioned, Rails has globalish objects like Rails.cache and I18n. http://stackoverflow.com/questions/639207/memcacheerror-execution-expired Comment by Wayne Kao on MemCacheError: execution expired Wayne Kao 2009-03-12T21:16:14Z 2009-03-12T21:16:14Z Do you have a callstack? http://stackoverflow.com/questions/55611/javascript-private-methods/55638#55638 Comment by Wayne Kao on JavaScript private methods Wayne Kao 2008-09-11T02:13:01Z 2008-09-11T02:13:01Z I also dislike this approach's verbosity so probably wouldn't use it in the general case. It is nifty how it gets added to the prototype though and in JS usually performance wins out against all else.