User Cheeso - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T08:56:54Z http://stackoverflow.com/feeds/user/48082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832943/why-does-this-static-factory-method-involving-implied-generic-types-work 0 Why does this static factory method involving implied generic types, work? Cheeso 2009-12-02T13:34:54Z 2009-12-02T13:40:42Z <p>Consider</p> <pre><code>public class Tuple&lt;T1, T2&gt; { public Tuple(T1 v1, T2 v2) { V1 = v1; V2 = v2; } public T1 V1 { get; set; } public T2 V2 { get; set; } } public static class Tuple { // MAGIC!! public static Tuple&lt;T1, T2&gt; New&lt;T1, T2&gt;(T1 v1, T2 v2) { return new Tuple&lt;T1, T2&gt;(v1, v2); } } </code></pre> <p>Why does the part labeled "MAGIC" in the above work? It allows syntax like <code>Tuple.New(1, "2")</code> instead of <code>new Tuple&lt;int, string&gt;(1, "2")</code>, but ... how and why? </p> <p>Why do I not need <code>Tuple.New&lt;int,string&gt;(1, "2")</code> ??</p> http://stackoverflow.com/questions/1773505/winforms-richtextbox-how-can-i-determine-how-many-lines-of-text-are-visible 2 Winforms RichTextBox: How can I determine how many lines of text are visible? Cheeso 2009-11-20T21:57:52Z 2009-11-30T20:19:43Z <p>I have a Winforms app containing a RichTextBox. </p> <p>How can I determine how many lines of text are displayed, currently visible? </p> <p>Reason: I want to scroll the caret to the middle of the RichTextBox. I can use <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.scrolltocaret.aspx" rel="nofollow">RichTextBox.ScrollToCaret()</a>, but that puts the caret at the top of the RichTextBox. I figure, If I know how many lines are displayed, I could move the caret "back" n/2 lines, then call ScrollToCaret(), then restore the original caret position. </p> <p><strong>EDIT:</strong></p> <p>I found <a href="http://msdn.microsoft.com/en-us/library/bb761586%28VS.85%29.aspx" rel="nofollow">EM_GETLINECOUNT</a>, which I thought was the answer, except the doc says: *The EM_GETLINECOUNT message retrieves the total number of text lines, not just the number of lines that are currently visible.*</p> <p>Tantalizingly, there is also <a href="http://msdn.microsoft.com/en-us/library/bb761574%28VS.85%29.aspx" rel="nofollow">EM_GETFIRSTVISIBLELINE</a>, which gets the first visible line, but I couldn't find a GETLASTVISIBLELINE. ??</p> <p><hr></p> <p>Related:<br> <a href="http://stackoverflow.com/questions/1773400/winforms-richtextbox-how-can-i-scroll-the-caret-to-the-middle-of-the-richtextbo">How can I scroll the caret to the middle of the RichTextBox?</a></p> http://stackoverflow.com/questions/897796/how-do-i-open-an-already-opened-file-with-a-net-streamreader/898017#898017 11 Answer by Cheeso for How do I open an already opened file with a .net StreamReader? Cheeso 2009-05-22T14:05:09Z 2009-11-30T19:38:37Z <p>As Jared says, You cannot do this unless the other entity which has the file open allows for shared reads. Excel allows shared reads, even for files it has open for writing. Therefore, you must open the filestream with the <strong>FileShare.ReadWrite</strong> parameter. </p> <p>The FileShare param is often misunderstood. It indicates what <em>other</em> openers of the file can do. It applies to past as well as future openers. Think of FileShare not as a retroactive prohibition on prior openers (eg Excel), but a constraint that must not be violated with the current Open or any future Opens.</p> <p>In the case of future openers, a FileShare.Read says "future openers can open the file only with Read access". In the case of past openers, FileShare.Read says "open this file for me successfully only if it any prior openers have opened it <em>only</em> for Read." If you specify FileShare.Read on a file that is open for writing by Excel, <em>your</em> open will fail, as it would violate the constraint, because Excel has it open <em>for writing</em>. </p> <p>Because Excel has the file open for writing, you must open the file with FileShare.ReadWrite if you want <em>your</em> open to succeed. Another way to think of the FileShare param: it specifies "the other guy's file access". </p> <p>Logically, these semantics make sense - FileShare.Read means, you don't want to read the file if the other guy is already writing it, and you don't want the other guy to write the file if you are already reading it. FileShare.ReadWrite means, you are willing to read the file even if the another guy is writing it, and you have no problem letting another opener write the file while you are reading it. </p> <p>In no case does this permit multiple writers. FileShare is similar to a database IsolationLevel. Your desired setting here depends on the "consistency" guarantees you require. </p> <p>Example: </p> <pre><code>using (Stream s = new FileStream(fullFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) { ... } </code></pre> <p>or, </p> <pre><code>using (Stream s = System.IO.File.Open(fullFilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) { } </code></pre> http://stackoverflow.com/questions/1792782/wix-how-can-i-launch-a-help-file-after-installation-wixuiexitdialogoptionalc 2 Wix: How can I launch a help file after installation? (WIXUI_EXITDIALOGOPTIONALCHECKBOX) Cheeso 2009-11-24T20:39:24Z 2009-11-29T22:41:56Z <p>I know about WIXUI_EXITDIALOGOPTIONALCHECKBOX and WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT. </p> <p>As I understand it, those things can be used to trigger a custom action.<br> The examples I've seen run an EXE, or invoke a custom action in code. </p> <p><strong>How can I run a .CHM file if the checkbox is checked?</strong></p> <p>If I just specify the chm file as the FileKey, as below, it does not work. I think that approach works only for EXE files. </p> <pre><code> &lt;CustomAction Id="LaunchHelp" FileKey="chmfile" ExeCommand="" Impersonate="yes" Return="ignore" /&gt; </code></pre> <p><hr></p> <p>Thanks to Sascha for the answer... This worked for me : </p> <pre><code>&lt;CustomAction Id="LaunchHelp" Directory="INSTALLDIR" ExeCommand='[WindowsFolder]hh.exe MyHelpFile.chm' Execute="immediate" Return="asyncNoWait" /&gt; </code></pre> http://stackoverflow.com/questions/1349854/useful-javascript-libraries-including-jquery-and-beyond/1812824#1812824 1 Answer by Cheeso for Useful JavaScript libraries? including JQuery and beyond... Cheeso 2009-11-28T15:39:44Z 2009-11-28T15:39:44Z <p>I know of these, but have only limited experience using them. </p> <ul> <li><p><a href="http://www.faqs.org/rfcs/rfc2898.html" rel="nofollow">Google Diff-Match-Patch</a> - analyzes differences between text, generates and applies patches. </p></li> <li><p><a href="http://www.faqs.org/rfcs/rfc2898.html" rel="nofollow">Slow AES</a> - AES implementation in Javascript.<br> In my tests there's good compat between this implementation and other, commercial libraries like .NET System.Security.Cryptography.AesManaged. SlowAES doesn't include all the modes, but the ones that are there, work well. It's not really that slow. See also the question <a href="http://stackoverflow.com/questions/1149611/getting-slowaes-and-rijndaelmanaged-class-in-net-to-play-together">Getting .NET and SlowAES to work together</a>.</p></li> <li><p><a href="http://www.webtoolkit.info/javascript-sprintf.html" rel="nofollow">PBKDF2</a> - RFC2898 password-based key derivation. A key derivation function is essential for doing encryption using passwords. This is an implementation that conforms to the <a href="http://www.faqs.org/rfcs/rfc2898.html" rel="nofollow">RFC2898 (PKCS #5) standard</a>. </p></li> <li><p><a href="http://www.webtoolkit.info/javascript-sprintf.html" rel="nofollow">Sprintf</a> - C-like string formatting.</p></li> </ul> http://stackoverflow.com/questions/1812522/what-are-the-most-useful-javascript-libraries 2 What are the most useful Javascript libraries? [closed] Cheeso 2009-11-28T13:29:06Z 2009-11-28T13:43:27Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1349854/useful-javascript-jquery-libraries">Useful JavaScript/JQuery libraries?</a> </p> </blockquote> <p>If this is a duplicate, please direct me. </p> <p><strong>What are the most useful Javascript libraries, and what do they do?</strong></p> <p>In the Q&amp;A I've seen about js libraries, there's a heavy focus on UI libraries, but I think there are others out there that are very useful. For example Google's Javascript Diff library. </p> <p>I know a few, but I've been discovering them sort of serendipitously. (I found a sprintf library the other day which came in handy.) Rather than continue on te random walk, I'd like to get a survey of the important ones. I've seen the <a href="http://en.wikipedia.org/wiki/List%5Fof%5FJavaScript%5Flibraries" rel="nofollow">wikipedia list</a>, but I'd like to get a ranking from this community as to which are the more interesting and useful ones, which are more reliable and proven, and also a brief summary as to what they actually do, instead of just a name. </p> <p>Examples: </p> <ul> <li><a href="http://code.google.com/p/google-diff-match-patch/" rel="nofollow">Google Diff-Match-Patch</a> - analyzes differences between text, generates and applies patches. </li> <li><a href="http://code.google.com/p/slowaes/" rel="nofollow">Slow AES</a> - AES implementation in Javascript.</li> <li><a href="http://anandam.name/pbkdf2/" rel="nofollow">PBKDF2</a> - RFC2898 password-based key derivation</li> </ul> <p><hr></p> <p>I've seen:<br> <a href="http://stackoverflow.com/questions/1349854/useful-javascript-jquery-libraries">Useful Javascript/JQuery libraries</a>.</p> <p>...but I think it's focused on UI libs and it also doesn't have many answers.</p> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion/1812416#1812416 0 Answer by Cheeso for JavaScript interactive shell with completion Cheeso 2009-11-28T12:25:23Z 2009-11-28T12:25:23Z <p>In Windows, you can run this file from the command prompt in cscript.exe, and it provides an simple interactive shell. No completion.</p> <pre><code>// shell.js // ------------------------------------------------------------------ // // implements an interactive javascript shell. // // from // http://kobyk.wordpress.com/2007/09/14/a-jscript-interactive-interpreter-shell-for-the-windows-script-host/ // // Sat Nov 28 00:09:55 2009 // var GSHELL = (function () { var numberToHexString = function (n) { if (n &gt;= 0) { return n.toString(16); } else { n += 0x100000000; return n.toString(16); } }; var line, scriptText, previousLine, result; return function() { while(true) { WScript.StdOut.Write("js&gt; "); if (WScript.StdIn.AtEndOfStream) { WScript.Echo("Bye."); break; } line = WScript.StdIn.ReadLine(); scriptText = line + "\n"; if (line === "") { WScript.Echo( "Enter two consecutive blank lines to terminate multi-line input."); do { if (WScript.StdIn.AtEndOfStream) { break; } previousLine = line; line = WScript.StdIn.ReadLine(); line += "\n"; scriptText += line; } while(previousLine != "\n" || line != "\n"); } try { result = eval(scriptText); } catch (error) { WScript.Echo("0x" + numberToHexString(error.number) + " " + error.name + ": " + error.message); } if (result) { try { WScript.Echo(result); } catch (error) { WScript.Echo("&lt;&lt;&gt;&gt;"); } } result = null; } }; })(); GSHELL(); </code></pre> <p>If you want, you can augment that with other utility libraries, with a .wsf file. Save the above to "shell.js", and save the following to "shell.wsf": </p> <pre><code>&lt;job&gt; &lt;reference object="Scripting.FileSystemObject" /&gt; &lt;script language="JavaScript" src="util.js" /&gt; &lt;script language="JavaScript" src="shell.js" /&gt; &lt;/job&gt; </code></pre> <p>...where util.js is: </p> <pre><code>var quit = function(x) { WScript.Quit(x);} var say = function(s) { WScript.Echo(s); }; var echo = say; var exit = quit; var sleep = function(n) { WScript.Sleep(n*1000); }; </code></pre> <p>...and then run shell.wsf from the command line. </p> http://stackoverflow.com/questions/1805292/why-my-xpath-request-to-xml-file-on-web-doesnt-work/1811460#1811460 2 Answer by Cheeso for Why my XPath request to XML file on web doesn't work? Cheeso 2009-11-28T03:36:52Z 2009-11-28T11:45:16Z <p><a href="http://xpathvisualizer.codeplex.com" rel="nofollow">XPathVisualizer</a> can be handy. It's free. It wouldn't have told you to use the namespace, but it would have put the namespace in front of you in the UI, and it would havve let you test a bunch of alternatives, really quickly. </p> <p><img src="http://imgur.com/J4t6r.png" alt="alt text"></p> http://stackoverflow.com/questions/1811423/active-scripting-on-the-server-side/1811522#1811522 0 Answer by Cheeso for Active Scripting on the server side Cheeso 2009-11-28T04:08:48Z 2009-11-28T04:34:24Z <p>I haven't done it but... some ideas</p> <ul> <li>consider using Powershell. Search for "remote runspace" or look into <a href="http://www.hanselman.com/blog/ScriptBlockAndRunspaceRemotingInPowerShell.aspx" rel="nofollow">Hanselman's old article on it</a>. I'm not sure if this made it into Powershell v2, but there was some talk of it.</li> <li>investigate <a href="http://code.msdn.microsoft.com/PowerShellTunnel" rel="nofollow">PowershellTunnel</a>.</li> <li>look into <a href="http://www.c-sharpcorner.com/UploadFile/shivprasadk/DotNet4pt010102009064108AM/DotNet4pt0.aspx" rel="nofollow">.NET 4.0 and the DLR</a>. </li> <li><a href="http://windows-programming.suite101.com/article.cfm/windows%5Fscripting%5Fcreating%5Fa%5Fvbscript%5Fshell" rel="nofollow">an article on using cscript.exe to host dynamically entered vbscript</a></li> <li><a href="http://kobyk.wordpress.com/2007/09/14/a-jscript-interactive-interpreter-shell-for-the-windows-script-host/" rel="nofollow">similar interactive JavaScript shell</a> - you'd have to grab hold of stdin/stdout differently</li> </ul> http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal 7 OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T17:38:43Z 2009-11-27T23:38:16Z <p>I watched <a href="http://google-code-updates.blogspot.com/2009/03/doug-crockford-javascript-good-parts.html" rel="nofollow">a talk by Douglas Crockford on the good parts in Javascript</a> and my eyes were opened. At one point he said, something like, "Javascript is the only language where good programmers believe they can use it effectively, without learning it." Then I realized, <em>I am that guy.</em> </p> <p>In that talk, he made some statements that for me, were pretty surprising and insightful. For example, JavaScript is the most important programming language on the planet. Or it is the most popular language on the planet. And, that it is broken in many serious ways. </p> <p>The most surprising statement he made, for me, was "new is dangerous". He doesn't use it any more. He doesn't use <code>this</code> either. </p> <p>He presented an interesting pattern for a constructor in Javascript, one that allows for private and public member variables, and relies on neither <code>new</code>, nor <code>this</code>. It looks like this: </p> <pre><code>// neo-classical constructor var container = function(initialParam) { var instance = {}; // empty object // private members var privateField_Value = 0; var privateField_Name = "default"; var privateMethod_M1 = function (a,b,c) { // arbitrary }; // initialParam is optional if (typeof initialParam !== "undefined") { privateField_Name= initialParam; } // public members instance.publicMethod = function(a, b, c) { // because of closures, // can call private methods or // access private fields here. }; instance.setValue = function(v) { privateField_Value = v; }; instance.toString = function(){ return "container(v='" + privateField_Value + "', n='" + privateField_Name + "')"; }; return instance; } // usage var a = container("Wallaby"); WScript.echo(a.toString()); a.setValue(42); WScript.echo(a.toString()); var b = container(); WScript.echo(b.toString()); </code></pre> <p><strong>EDIT</strong>: code updated to switch to lowercase class name.</p> <p>This pattern has evolved from <a href="http://www.crockford.com/javascript/private.html" rel="nofollow">Crockford's earlier usage models</a>.</p> <p><em>Question:</em> Do you use this kind of constructor pattern? Do you find it understandable? Do you have a better one?</p> http://stackoverflow.com/questions/1810556/oo-javascript-good-way-to-combine-prototypal-inheritance-with-private-vars 1 OO Javascript: good way to combine prototypal inheritance with private vars. Cheeso 2009-11-27T20:37:21Z 2009-11-27T22:49:08Z <p>In <a href="http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal">OO Javascript constructor pattern: neo-classical vs prototypal</a>, I learned that constructors using prototypal inheritance can be 10x faster (or more) than constructors using the so-called <code>neo-classical</code> pattern with closures as proposed by Crockford in his "Good Parts" book and presentations. </p> <p>For that reason it seems like preferring prototypal inheritance seems like the right thing, in general. </p> <p><strong>Question</strong> Is there a way to combine prototypal inheritance with the module pattern to allow private variables when necessary? </p> <p>What I am thinking is:</p> <pre><code>// makeClass method - By John Resig (MIT Licensed) function makeClass(){ return function(args){ if ( this instanceof arguments.callee ) { if ( typeof this.init == "function" ) this.init.apply( this, args.callee ? args : arguments ); } else return new arguments.callee( arguments ); }; } // ======================================================= var User = makeClass(); // convention; define an init method and attach to the prototype User.prototype.init = function(first, last){ this.name = first + " " + last; }; User.prototype.doWork = function (a,b,c) {/* ... */ }; User.prototype.method2= (function (a,b,c) { // this code is run once per class return function(a,b,c) { // this code gets run with each call into the method var _v2 = 0; function inc() { _v2++; } var dummy = function(a,b,c) { /* ... */ inc(); WScript.echo("doOtherWork(" + this.name + ") v2= " + _v2); return _v2; }; var x = dummy(a,b,c); this.method2 = dummy; // replace self return x; }; })(); </code></pre> <p>That isn't quite right. But it illustrates the point. </p> <p>Is there a way to do this and is it worth it? </p> http://stackoverflow.com/questions/1806820/adsi-query-against-iis-does-not-agree-with-iis-manager-on-vista 0 ADSI Query against IIS does not agree with IIS Manager, on Vista Cheeso 2009-11-27T04:55:30Z 2009-11-27T18:44:42Z <p>Using Vista... </p> <p>I have a script that uses ADSI to set ScriptMaps on an IIS Website. It's javascript, run within cscript.exe, and the code looks something like this: </p> <pre><code>var web = GetObject("IIS://localhost/W3SVC/1"); var maps = web.ScriptMaps.toArray(); map[maps.length] = ".aaa,c:\\path\\to\\isapi\\extension.dll,1,GET,POST"; web.ScriptMaps = maps.asDictionary(); web.SetInfo(); </code></pre> <p>When I look in the IIS Manager after running the script, I can see the new entry in the list of Handler Mappings. It has a weird name "AboMapperCustom-43155", which I understand comes from the IIS7 compatibility layer for ADSI. </p> <p>If, in IIS Manager, I then remove those Handler Mappings, then run another ADSI script to query the ScriptMaps property, the retrieved ScriptMaps in the script still lists the entry that was just removed. The results in the ADSI script don't agree with the list of "Handler Mappings" shown in the IIS Manager. </p> <p>This persists even after a start/stop of IISADMIN and W3SVC. </p> <p>Is this expected behavior? ADSI is supported as a "compatibility mode" in IIS7. Is this an artifact of that? </p> <p>I believe that if the Handler Mapping is removed from IIS MAnager, then it is really gone, even though it still gets returned from an ADSI query. </p> <p><strong><em>Can anyone offer any clarification on this?</em></strong></p> http://stackoverflow.com/questions/1787332/in-wix-how-to-install-webfilter-at-the-server-level 1 In WIX, how to install WebFilter at the server level? Cheeso 2009-11-24T02:02:26Z 2009-11-27T05:02:38Z <p>I know how to install a WebFilter into a particular WebSite (or Virtual Server). </p> <p>How can I install a WebFilter into the WebService - or to the top-level server? </p> http://stackoverflow.com/questions/1787332/in-wix-how-to-install-webfilter-at-the-server-level/1787825#1787825 1 Answer by Cheeso for In WIX, how to install WebFilter at the server level? Cheeso 2009-11-24T04:40:03Z 2009-11-27T05:02:38Z <p>To do this, specify no @WebSite attribute at all. </p> <pre><code>&lt;!-- this is installed when the Server-wide install is selected for the filter --&gt; &lt;Component Id='C.Filter1' Guid="YOURGUID-0556-4893-88bc-2b8ec5f3aa08"&gt; &lt;Condition&gt;WEBSITE_DESCRIPTION = "Server"&lt;/Condition&gt; &lt;!-- CreateFolder - included to avoid problem with missing KeyPath --&gt; &lt;CreateFolder/&gt; &lt;iis:WebFilter Id="IsapiFilter1" LoadOrder="first" Name="My ISAPI Rewriting Filter" Path="[INSTALLDIR]\ISAPI.dll" /&gt; &lt;/Component&gt; &lt;!-- this is installed when a particular site is selected for the filter --&gt; &lt;Component Id='C.Filter2' Guid="YOURGUID-0556-4893-88bc-2b8ec5f3aa06"&gt; &lt;Condition&gt;NOT WEBSITE_DESCRIPTION = "Server"&lt;/Condition&gt; &lt;!-- CreateFolder - included to avoid problem with missing KeyPath --&gt; &lt;CreateFolder/&gt; &lt;iis:WebFilter Id="IsapiFilter2" LoadOrder="first" Name="My ISAPI Rewriting Filter" Path="[INSTALLDIR]\ISAPI.dll" WebSite='SelectedWebSite' /&gt; &lt;/Component&gt; &lt;!-- snip --&gt; &lt;iis:WebSite Id="SelectedWebSite" Description="[WEBSITE_DESCRIPTION]"&gt; &lt;iis:WebAddress Id="AllUnassigned" Port="[WEBSITE_PORT]" IP="[WEBSITE_IP]" Header="[WEBSITE_HOSTNAME]" /&gt; &lt;/iis:WebSite&gt; </code></pre> http://stackoverflow.com/questions/1805936/need-some-help-with-xpath-expression-one-works-the-other-doesnt/1806051#1806051 1 Answer by Cheeso for Need some help with XPath expression. One works, the other doesn't... Cheeso 2009-11-26T23:03:15Z 2009-11-26T23:03:15Z <p><a href="http://xpathvisualizer.codeplex.com" rel="nofollow">XPathVisualizer</a> is a nice XPath Visualizer tool, runs on Windows, lets you see the results of your XPath queries. Xcopy install, a single EXE file. Free. </p> <p>I took it and ran your query in it, got this result: </p> <p><img src="http://imgur.com/BCVTJ.png" alt="alt text"></p> http://stackoverflow.com/questions/1195728/in-c-sign-an-xml-with-a-x-509-certificate-and-check-the-signature/1198504#1198504 1 Answer by Cheeso for In C#, sign an xml with a x.509 certificate and check the signature Cheeso 2009-07-29T07:13:25Z 2009-11-26T14:39:29Z <p>In .NET, If you get your X509 cert from a .pfx file, like this: </p> <pre><code> X509Certificate2 certificate = new X509Certificate2(certFile, pfxPassword); RSACryptoServiceProvider rsaCsp = (RSACryptoServiceProvider) certificate.PrivateKey; </code></pre> <p>Then you can export the public key portion like so: </p> <pre><code> rsaCsp.ToXmlString(false); </code></pre> <p>The "false" part says, only export the public piece, don't export the private piece. (doc for <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsa.toxmlstring.aspx" rel="nofollow">RSA.ToXmlString</a>)</p> <p>And then in the verifying application, use </p> <pre><code> RSACryptoServiceProvider csp = new RSACryptoServiceProvider(); csp.FromXmlString(PublicKeyXml); bool isValid = VerifyXml(xmlDoc, rsa2); </code></pre> <p>And the VerifyXml calls <code>CheckSignature()</code>. It looks something like this: </p> <pre><code>private Boolean VerifyXml(XmlDocument Doc, RSA Key) { // Create a new SignedXml object and pass it // the XML document class. var signedXml = new System.Security.Cryptography.Xml.SignedXml(Doc); // Find the "Signature" node and create a new XmlNodeList object. XmlNodeList nodeList = Doc.GetElementsByTagName("Signature"); // Throw an exception if no signature was found. if (nodeList.Count &lt;= 0) { throw new CryptographicException("Verification failed: No Signature was found in the document."); } // Though it is possible to have multiple signatures on // an XML document, this app only supports one signature for // the entire XML document. Throw an exception // if more than one signature was found. if (nodeList.Count &gt;= 2) { throw new CryptographicException("Verification failed: More that one signature was found for the document."); } // Load the first &lt;signature&gt; node. signedXml.LoadXml((XmlElement)nodeList[0]); // Check the signature and return the result. return signedXml.CheckSignature(Key); } </code></pre> http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1801532#1801532 2 Answer by Cheeso for WiX tricks and best practices Cheeso 2009-11-26T04:28:03Z 2009-11-26T04:28:03Z <p><strong>Use Javascript CustomActions because they're soooo easy</strong></p> <p>People have said that <a href="http://blogs.msdn.com/robmen/archive/2004/05/20/136530.aspx" rel="nofollow">Javascript is the wrong thing to use for MSI CustomActions</a>. Reasons given: hard to debug, hard to make it reliable. I don't agree. It's not hard to debug, certainly no harder than C++. Its just different. I found writing CustomActions in Javascript to be super easy, much easier than using C++. Much faster. And just as reliable. </p> <p>There's just one drawback: Javascript CustomActions can be reverse-engineered, so if you consider your installer magic to be protected IP, you will want to avoid script. </p> <p>If you use script, you just need to start with some structure. Here's some to get you started.</p> <p><hr></p> <p>Javascript "boilerplate" code for CustomAction: </p> <pre><code>// // CustomActions.js // // Template for WIX Custom Actions written in Javascript. // // // Mon, 23 Nov 2009 10:54 // // =================================================================== // http://msdn.microsoft.com/en-us/library/sfw6660x(VS.85).aspx var Buttons = { OkOnly : 0, OkCancel : 1, AbortRetryIgnore : 2, YesNoCancel : 3 }; var Icons= { Critical : 16, Question : 32, Exclamation : 48, Information : 64 } var MsgKind = { Error : 0x01000000, Warning : 0x02000000, User : 0x03000000, Log : 0x04000000 }; // http://msdn.microsoft.com/en-us/library/aa371254(VS.85).aspx var MsiActionStatus = { None : 0, Ok : 1, // success Cancel : 2, Abort : 3, Retry : 4, // aka suspend? Ignore : 5 // skip remaining actions; this is not an error. }; function MyCustomActionInJavascript_CA() { try { LogMessage("Hello from MyCustomActionInJavascript"); // ...do work here... LogMessage("Goodbye from MyCustomActionInJavascript"); } catch (exc1) { Session.Property("CA_EXCEPTION") = exc1.message ; LogException(exc1); return MsiActionStatus.Abort; } return MsiActionStatus.Ok; } // Pop a message box. also spool a message into the MSI log, if it is enabled. function LogException(exc) { var record = Session.Installer.CreateRecord(0); record.StringData(0) = "CustomAction: Exception: 0x" + decimalToHexString(exc.number) + " : " + exc.message; Session.Message(MsgKind.Error + Icons.Critical + Buttons.btnOkOnly, record); } // spool an informational message into the MSI log, if it is enabled. function LogMessage(msg) { var record = Session.Installer.CreateRecord(0); record.StringData(0) = "CustomAction:: " + msg; Session.Message(MsgKind.Log, record); } </code></pre> <p><hr></p> <p>Then, register the custom action with something like this: </p> <pre><code>&lt;Fragment&gt; &lt;Binary Id="IisScript_CA" SourceFile="CustomActions.js" /&gt; &lt;CustomAction Id="CA.MyCustomAction" BinaryKey="IisScript_CA" JScriptCall="MyCustomActionInJavascript_CA" Execute="immediate" Return="check" /&gt; &lt;/Fragmemt&gt; </code></pre> <p><hr></p> <p>You can, of course, insert as many Javascript functions as you like, for multiple custom actions. One example: I used Javascript to do a WMI query on IIS, to get a list of existing websites, to which an ISAPI filter could be installed. This list was then used to populate a listbox shown later in the UI sequence. All very easy. </p> <p>Related question: <a href="http://stackoverflow.com/questions/1785013">About Javascript CustomActions</a></p> http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1801447#1801447 1 Answer by Cheeso for WiX tricks and best practices Cheeso 2009-11-26T03:55:53Z 2009-11-26T04:12:58Z <p><strong>Modify the "Ready to install?" dialog (aka VerifyReadyDlg) to provide a summary of choices made.</strong></p> <p>It looks like this:<br> <img src="http://i46.tinypic.com/s4th7t.jpg" alt="alt text"></p> <p>Do this with a Javascript CustomAction: </p> <p><hr></p> <p>Javascript code:</p> <pre><code>// http://msdn.microsoft.com/en-us/library/aa372516(VS.85).aspx var MsiViewModify = { Refresh : 0, Insert : 1, Update : 2, Assign : 3, Replace : 4, Merge : 5, Delete : 6, InsertTemporary : 7, // cannot permanently modify the MSI during install Validate : 8, ValidateNew : 9, ValidateField : 10, ValidateDelete : 11 }; // http://msdn.microsoft.com/en-us/library/sfw6660x(VS.85).aspx var Buttons = { OkOnly : 0, OkCancel : 1, AbortRetryIgnore : 2, YesNoCancel : 3 }; var Icons= { Critical : 16, Question : 32, Exclamation : 48, Information : 64 } var MsgKind = { Error : 0x01000000, Warning : 0x02000000, User : 0x03000000, Log : 0x04000000 }; // http://msdn.microsoft.com/en-us/library/aa371254(VS.85).aspx var MsiActionStatus = { None : 0, Ok : 1, // success Cancel : 2, Abort : 3, Retry : 4, // aka suspend? Ignore : 5 // skip remaining actions; this is not an error. }; function UpdateReadyDialog_CA(sitename) { try { // can retrieve properties from the install session like this: var selectedWebSiteId = Session.Property("MSI_PROPERTY_HERE"); // can retrieve requested feature install state like this: var fInstallRequested = Session.FeatureRequestState("F.FeatureName"); var text1 = "This is line 1 of text in the VerifyReadyDlg"; var text2 = "This is the second line of custom text"; var controlView = Session.Database.OpenView("SELECT * FROM Control"); controlView.Execute(); var rec = Session.Installer.CreateRecord(12); rec.StringData(1) = "VerifyReadyDlg"; // Dialog_ rec.StringData(2) = "CustomVerifyText1"; // Control - can be any name rec.StringData(3) = "Text"; // Type rec.IntegerData(4) = 25; // X rec.IntegerData(5) = 60; // Y rec.IntegerData(6) = 320; // Width rec.IntegerData(7) = 85; // Height rec.IntegerData(8) = 2; // Attributes rec.StringData(9) = ""; // Property rec.StringData(10) = vText1; // Text rec.StringData(11) = ""; // Control_Next rec.StringData(12) = ""; // Help controlView.Modify(MsiViewModify.InsertTemporary, rec); rec = Session.Installer.CreateRecord(12); rec.StringData(1) = "VerifyReadyDlg"; // Dialog_ rec.StringData(2) = "CustomVerifyText2"; // Control - any unique name rec.StringData(3) = "Text"; // Type rec.IntegerData(4) = 25; // X rec.IntegerData(5) = 160; // Y rec.IntegerData(6) = 320; // Width rec.IntegerData(7) = 65; // Height rec.IntegerData(8) = 2; // Attributes rec.StringData(9) = ""; // Property rec.StringData(10) = text2; // Text rec.StringData(11) = ""; // Control_Next rec.StringData(12) = ""; // Help controlView.Modify(MsiViewModify.InsertTemporary, rec); controlView.Close(); } catch (exc1) { Session.Property("CA_EXCEPTION") = exc1.message ; LogException("UpdatePropsWithSelectedWebSite", exc1); return MsiActionStatus.Abort; } return MsiActionStatus.Ok; } function LogException(loc, exc) { var record = Session.Installer.CreateRecord(0); record.StringData(0) = "Exception {" + loc + "}: " + exc.number + " : " + exc.message; Session.Message(MsgKind.Error + Icons.Critical + Buttons.btnOkOnly, record); } </code></pre> <p><hr></p> <p>Declare the Javascript CA: </p> <pre><code>&lt;Fragment&gt; &lt;Binary Id="IisScript_CA" SourceFile="CustomActions.js" /&gt; &lt;CustomAction Id="CA.UpdateReadyDialog" BinaryKey="IisScript_CA" JScriptCall="UpdateReadyDialog_CA" Execute="immediate" Return="check" /&gt; &lt;/Fragment&gt; </code></pre> <p><hr></p> <p>Attach the CA to a button. In this example, the CA is fired when Next is clicked from the CustomizeDlg:</p> <pre><code>&lt;UI ...&gt; &lt;Publish Dialog="CustomizeDlg" Control="Next" Event="DoAction" Value="CA.UpdateReadyDialog" Order="1"/&gt; &lt;/UI&gt; </code></pre> <p><hr></p> <p>Related SO Question: <a href="http://stackoverflow.com/questions/1791041">How can I set, at runtime, the text to be displayed in VerifyReadyDlg?</a></p> http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1801480#1801480 1 Answer by Cheeso for WiX tricks and best practices Cheeso 2009-11-26T04:05:05Z 2009-11-26T04:05:05Z <p><strong>Fix the ProgressDlg so that it displays properly.</strong></p> <p>I've increased the font size for my installer from 8 to 10, to make the font a more human, usable scale on high-res monitors. I do this with this XML magic: </p> <pre><code>&lt;UI Id="MyCustomUI"&gt; &lt;TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="10" /&gt; &lt;TextStyle Id="WixUI_Font_Big" FaceName="Tahoma" Size="12" /&gt; &lt;TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="14" /&gt; &lt;TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="12" Bold="yes" /&gt; &lt;Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /&gt; &lt;/UI&gt; </code></pre> <p>But this means the ProgressDlg doesn't display properly any longer. This is the one that displays the progress of the install, right at the very end. The ActionText gets clipped, so descenders on letters like g and j do not display. Fix this by adjusting the size and position of the various controls on the Progressdialog, in a post-processing Javascript. Run this script after generating the MSI: </p> <pre><code>var msiOpenDatabaseModeTransact = 1; var filespec = WScript.Arguments(0); var installer = new ActiveXObject("WindowsInstaller.Installer"); var database = installer.OpenDatabase(filespec, msiOpenDatabaseModeTransact); // The text on the exit dialog is too close to the title. This // step moves the text down from Y=70 to Y=90, about one line. sql = "UPDATE `Control` SET `Control`.`Y` = '90' " + "WHERE `Control`.`Dialog_`='ExitDialog' AND `Control`.`Control`='Description'"; view = database.OpenView(sql); view.Execute(); view.Close(); // The progressbar is too close to the status text on the Progress dialog. // This step moves the progressbar down from Y=115 to Y=118, about 1/3 line. sql = "UPDATE `Control` SET `Control`.`Y` = '118' " + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ProgressBar'"; view = database.OpenView(sql); view.Execute(); view.Close(); // The StatusLabel and ActionText controls are too short on the Progress dialog, // which means the bottom of the text is cut off. This step // increases the height from 10 to 16. sql = "UPDATE `Control` SET `Control`.`Height` = '16' " + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='StatusLabel'"; view = database.OpenView(sql); view.Execute(); view.Close(); sql = "UPDATE `Control` SET `Control`.`Height` = '16' " + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ActionText'"; view = database.OpenView(sql); view.Execute(); view.Close(); database.Commit(); </code></pre> http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1801438#1801438 2 Answer by Cheeso for WiX tricks and best practices Cheeso 2009-11-26T03:47:55Z 2009-11-26T04:02:32Z <p><strong>Add a checkbox to the exit dialog to launch the app, or the helpfile.</strong> </p> <p>...</p> <pre><code>&lt;CustomAction Id="StartAppOnExit" FileKey="YourAppExeId" ExeCommand="" Execute="immediate" Impersonate="yes" Return="asyncNoWait" /&gt; &lt;Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch MyApp when setup exits." /&gt; &lt;UI&gt; &lt;Publish Dialog="ExitDialog" Control="Finish" Order="1" Event="DoAction" Value="StartAppOnExit"&gt;WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT&lt;/Publish&gt; &lt;/UI&gt; </code></pre> <p></p> <p>If you do it this way, the "standard" appearance isn't quite right. The checkbox is always a gray background, while the dialog is white: </p> <p><img src="http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/images/exit%5Fdlg%5F1.gif" alt="alt text"></p> <p>One way around this is to <a href="http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/" rel="nofollow">specify your own custom ExitDialog, with a differently-located checkbox</a>. This works, but seems like overkill. Another way to solve the same thing is to post-process the generated MSI to change the X,Y fields in the Control table for that particular CheckBox control. The javascript code looks like this: </p> <pre><code>var msiOpenDatabaseModeTransact = 1; var filespec = WScript.Arguments(0); var installer = new ActiveXObject("WindowsInstaller.Installer"); var database = installer.OpenDatabase(filespec, msiOpenDatabaseModeTransact); var sql = "UPDATE `Control` SET `Control`.`Height` = '18', `Control`.`Width` = '170'," + " `Control`.`Y`='243', `Control`.`X`='10' " + "WHERE `Control`.`Dialog_`='ExitDialog' AND " + " `Control`.`Control`='OptionalCheckBox'"; var view = database.OpenView(sql); view.Execute(); view.Close(); database.Commit(); </code></pre> <p><hr></p> <p>Running this code as a command-line script after the MSI is generated (from light.exe) will produce an ExitDialog that looks more professional:</p> <p><img src="http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/images/exit%5Fdlg%5F2.gif" alt="alt text"></p> http://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1801464#1801464 2 Answer by Cheeso for WiX tricks and best practices Cheeso 2009-11-26T04:01:10Z 2009-11-26T04:01:10Z <p><strong>Keep all IDs in separate namespaces</strong></p> <ul> <li>Features begin with <code>F.</code> Examples: F.Documentation, F.Binaries, F.SampleCode. </li> <li>Components begin with <code>C.</code> Ex: C.ChmFile, C.ReleaseNotes, C.LicenseFile, C.IniFile, C.Registry</li> <li>CustomActions are <code>CA.</code> Ex: CA.LaunchHelp, CA.UpdateReadyDlg, CA.SetPropertyX</li> <li>Files are <code>Fi.</code> </li> <li>Directories are <code>Di.</code></li> <li>and so on.</li> </ul> <p>I find this helps immensely in keeping track of all the various id's in all the various categories. </p> http://stackoverflow.com/questions/1800576/are-partial-methods-considered-harmful 2 Are partial methods considered harmful? Cheeso 2009-11-25T23:09:35Z 2009-11-26T01:40:59Z <p>In C# 3.0 Microsoft introduced support for something called <a href="http://msdn.microsoft.com/en-us/library/wa80x488.aspx" rel="nofollow">partial methods</a>. </p> <p>Do you use them? Can you describe how and why? </p> <p>Do you consider the use of partial methods good programming practice, or not? </p> <p><hr></p> <p><em>edit:</em> Two people downvoted the question? I find that puzzling and amusing. Should I not be asking this? </p> http://stackoverflow.com/questions/1800576/are-partial-methods-considered-harmful/1800878#1800878 1 Answer by Cheeso for Are partial methods considered harmful? Cheeso 2009-11-26T00:18:31Z 2009-11-26T00:18:31Z <p>I had occasion to use a partial method on a class library I wrote. It was possible to compile the library into one of several different versions, with the use of defined constants, that would compile-in or compile-out various blocks of function. </p> <p>But littering the code with #if / #endif for all the combinations of options, cross with Compact Framework as well as desktop framework, led to some confusing stuff. </p> <p>I used partial methods to sort of simplify that piece - as sort of invisible or implicit #if/#endif. This is similar to the way they're used in LINQ, as I understand it. </p> <p>On the other hand I don't, at runtime, add in these methods, as LINQ would, or does. Rather than the linq model, where there are separable assemblies, and when combined you get extra function, in my class lib, there is a single DLL built for each combination of options. This is to make deployment and consumption easier. </p> http://stackoverflow.com/questions/1799191/how-can-i-fix-csharp-mode-el 4 How can I fix csharp-mode.el ? Cheeso 2009-11-25T18:56:43Z 2009-11-25T23:44:55Z <p>The <a href="http://www.emacswiki.org/emacs/CSharpMode" rel="nofollow">csharp-mode I use</a> is <em>almost</em> really good. </p> <p>It works for most things, but has a few problems: </p> <ul> <li><p>#if / #endif tags break indentation, but only within the scope of a method.</p></li> <li><p>attributes applied to fields within a struct, break indentation. (sometimes, see example)</p></li> <li><p>within classes that implement interfaces, the indenting is broken. from that point forward.</p></li> <li><p>Literal strings (prefixed with @) do not fontify correctly, and in fact break fontification from that point forward in the source file, if the last character in the literal string is a slash. </p></li> <li><p>I think there are some other problems, too. </p></li> </ul> <p>I'm not a mode writer.</p> <p>Has anyone got improvements on that mode?<br> anyone want to volunteer to fix these few things?</p> <p><hr></p> <p>example code </p> <pre><code>using System; using System.IO; using System.Linq; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Xml.Serialization; namespace Cheeso.Says.TreyIsTheBest { public class Class1 { private void Method1() { // Problem 1: the following if / endif pair causes indenting to break. // This occurs only within the scope of a method. If the #if/#endif is // outside of a method, then the indenting does not break. #if DIAGS // this first line of code within the conditional scope // is indented String StringNumber1; // the second line of code within the conditional scope // is un-indented public String StringNumber2; #endif // The endif is where I expect it to be, I guess. // It's in-line with the matched #if. But the comments here // are weirdly indented still further. ?? } // The prior close-curly is indented 2 units more than I would expect. } // the close-curly for the class is indented correctly. // ================================================================== // ------------------------------------------------------------------ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public struct Class2 { // Problem 2: when there is an attribute applied to a field // within a struct, and the attribute include a newline, then // the field indents strangely. See also "Note 1", and "Note 2" // below. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] public int Value1; // Note 1: this indents fine. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] public int Value2; } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public class Class3 { public short PrintNameLength; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)] // Note 2: this indents just fine public int Value1; } // ================================================================== // ------------------------------------------------------------------ // Linq Syntax is not a problem as I had originally thought public class Class4 { #region eee #endregion private void Method1() { var files = Directory.GetFiles("Something"); var selection = from f in files where System.IO.Path.GetFileName(f).StartsWith("C") select f; foreach (var e in selection) Console.WriteLine(e); } } // ================================================================== // ------------------------------------------------------------------ public interface IGuess { } public class Class5 : IGuess { // Problem 3: When a #region tag is used inside a class that // implements an interface (or derives from a class) the line // following the region tag gets indented one extra unit. #region utility private static System.Random rnd= new System.Random(); private string FigureCategory() { return "unknown"; } #endregion // You can also see artifacts of the same confusion in // methods that have multiple attributes. Again, this only // occurs when the containing class implements a particular // interface or derives from a parent class. [System.Web.Services.WebMethodAttribute()] [return: System.Xml.Serialization.XmlElementAttribute("getContainerObjectsReturn")] public String Method1() { return "Hello."; } } // ================================================================== // ------------------------------------------------------------------ public class Pippo { // Problem 4: when the final char in an "escaped" string literal is a // slash, indenting and fontification breaks. List&lt;string&gt; directories = new List&lt;string&gt; { @"C:\Temp\sub1\", // The emacs parser thinks the string has not ended. // This comment is fontified and indented as if it is in // the middle of a string literal. @"C:\Temp\sub2\", // Because we have another \" at the end of a string, // emacs now thinks we're "out" of the string literal. // This comment is now indented and fontified correctly. @"C:\Home\" // A third \", and now emacs thinks we're back inside the string literal. // The rest of the code will be treated as if it were inside the string literal. }; protected void Page_Load(object sender, EventArgs e) { Console.WriteLine("Hello {0}", "world"); } } } </code></pre> <p><hr></p> http://stackoverflow.com/questions/1715729/how-can-i-disable-the-website-action-in-wix-when-no-web-features-are-selected/1799942#1799942 0 Answer by Cheeso for How can I disable the WebSite action in Wix when no web features are selected? Cheeso 2009-11-25T21:05:36Z 2009-11-25T21:05:36Z <p>I just looked and found, in a WIX-generated MSI, the condition <code>NOT SKIPCONFIGUREIIS AND VersionNT &gt; 400</code> associated to the ConfigureIis row in the InstallExecuteSequence table. </p> <p>In other words you could also use a Custom action like this: </p> <pre><code>&lt;InstallExecuteSequence&gt; &lt;!-- Disable the ConfigureIIs action if we don't need it: --&gt; &lt;Custom Action="CA.SkipConfigureIIs" After="InstallFiles"&gt;NOT &amp;amp;F.IisFeature = 3&lt;/Custom&gt; &lt;/InstallExecuteSequence&gt; &lt;CustomAction Id="CA.SkipConfigureIIs" Property="SKIPCONFIGUREIIS" Value="1" Return="check" /&gt; </code></pre> http://stackoverflow.com/questions/1778095/alternative-to-apaches-htaccess-file-for-iis/1799762#1799762 0 Answer by Cheeso for Alternative to Apache’s .htaccess file for IIS? Cheeso 2009-11-25T20:33:18Z 2009-11-25T20:33:18Z <blockquote> <p>"Pretty" permalinks usually require mod_rewrite, and IIS (common on Windows servers) does not support mod_rewrite.</p> </blockquote> <p>whether you are using IIS6 or 7, you can also use a rewriting engine on IIS - many of them support mod_rewrite syntax.<br> <a href="http://iirf.codeplex.com" rel="nofollow">IIRF</a> is a good one, works with both IIS6 and 7. (Vista, WS2003, 2008). </p> http://stackoverflow.com/questions/1799648/compile-windows-c-console-applications-in-linux/1799659#1799659 1 Answer by Cheeso for Compile Windows C console applications in Linux Cheeso 2009-11-25T20:12:34Z 2009-11-25T20:12:34Z <p>You can if it's standard C, and doesn't use Windows libraries. </p> <p>C code itself is very portable, and the standard C libraries (libc) are available pretty much everywhere. If your code does printf() and sscanf() and fopen() and so on, then it will just compile and run on another platform. Windows, Linux, BSD, etc.</p> <p>It's the libraries <em>other</em> than libc that introduce portability challenges. </p> <p>Anything that links with Windows-specific platform libraries is trouble. Kernel32.lib, user32.lib, etc etc. </p> <p>There are third-party libs, too, that, if written in C, should be available across Linux and Windows. PCRE is a good example here - it's a Regular Expression library written in C, and it's available on Windows as well as on Linux. there are literally hundreds of libraries in this set. </p> <p>If you confine yourself to libc and library calls into portable libs, then you will have a portable C application.</p> http://stackoverflow.com/questions/1797452/is-there-a-framework-for-allowing-apps-published-on-codeplex-to-auto-update-direc 3 Is there a framework for allowing apps published on Codeplex to auto-update directly from Codeplex? Cheeso 2009-11-25T14:53:36Z 2009-11-25T15:44:02Z <p>Endowing utility applications with "auto-update" capability seems like basic good manners these days. </p> <p>I'm thinking of apps like <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> or <a href="http://www.getpaint.net/download.html" rel="nofollow">Paint.NET</a>, that proactively tell you "hey, there's a newer release available. Wanna download it?" </p> <p><strong>Q</strong>: Does anyone know of a common framework that can be used by apps that come from Codeplex projects, to alert the user if there is a newer release, and optionally download and install that newer release directly from CodePlex? </p> <p>Obviously there's <a href="http://msdn.microsoft.com/en-us/library/t71a733d%28VS.80%29.aspx" rel="nofollow">ClickOnce</a>, and the <a href="http://msdn.microsoft.com/en-us/library/ms978574.aspx" rel="nofollow">Updater Block</a>, and I've written utility classes for doing this myself, for winforms and <a href="http://blogs.msdn.com/dotnetinterop/archive/2008/03/28/simple-auto-update-for-wpf-apps.aspx" rel="nofollow">WPF</a>, and other people have written <a href="http://autoupdatewpf.codeplex.com/" rel="nofollow">similar things</a>, but all these require the app publisher to publish the app outside of Codeplex, in order for the auto-update to work. What I'm imagining is something that just downloads directly from codeplex. </p> <p><hr></p> <p><strong>EDIT</strong><br> I can imagine such a framework might impose a structure on how the app is published to codeplex. It may require a "manifest.xml" to be published with each release, and inside that manifest file might be a app version, timestamp, notes on the release, URL to the latest binary download, and so on. </p> <p>It seems like someone would have built this already. </p> http://stackoverflow.com/questions/1795316/finding-table-values-in-watij-using-xpath/1797729#1797729 0 Answer by Cheeso for Finding table values in watij using xpath Cheeso 2009-11-25T15:32:53Z 2009-11-25T15:32:53Z <p>You can try an xpath visualizer like <a href="http://xpathvisualizer.codeplex.com" rel="nofollow">this one</a> to assist you in getting the right expression. It lets you see the results visually. </p> <p><img src="http://imgur.com/cbCkr.png" alt="alt text"></p> <p>Using XPath on HTML assumes the HTML is XHTML - in other words it must be well-formed XML. </p> http://stackoverflow.com/questions/1797230/get-a-block-of-text-in-a-list-of-blocks-using-regular-expressions/1797248#1797248 1 Answer by Cheeso for Get a block of text in a list of blocks using Regular Expressions Cheeso 2009-11-25T14:28:03Z 2009-11-25T14:28:03Z <p>Seems like it would be more appropriate to use an XML reader library, but I don't know Perl enough to suggest one.</p> http://stackoverflow.com/questions/1834956/what-does-it-mean-to-return-the-client/1834966#1834966 Comment by Cheeso on What does it mean to return the client? Cheeso 2009-12-02T19:17:43Z 2009-12-02T19:17:43Z your first suggestion seems like the most logical explanation. http://stackoverflow.com/questions/1812522/what-are-the-most-useful-javascript-libraries Comment by Cheeso on What are the most useful Javascript libraries? Cheeso 2009-11-28T15:58:06Z 2009-11-28T15:58:06Z Not to be too tedious about it, but by my way of thinking, using the reasoning applied here, a question about logging in .NET (<a href="http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project" rel="nofollow" title="what is the best logging solution for a c net 3 5 project">stackoverflow.com/questions/98080/&hellip;</a>) should be folded into the question about .NET UI libraries. That obviously makes no sense, right? Why would it make sense for Javascript? http://stackoverflow.com/questions/1812522/what-are-the-most-useful-javascript-libraries Comment by Cheeso on What are the most useful Javascript libraries? Cheeso 2009-11-28T15:55:36Z 2009-11-28T15:55:36Z In addition, the other question already has an accepted answer. This all belies a lack of understanding or perspective of Javascript in general. http://stackoverflow.com/questions/1812522/what-are-the-most-useful-javascript-libraries Comment by Cheeso on What are the most useful Javascript libraries? Cheeso 2009-11-28T15:51:58Z 2009-11-28T15:51:58Z I also do not understand, at all, why it makes sense for me to <i>change the other question</i>. I guess it makes sense if people don't recognize a distinction between UI libraries and libraries used for something other than UI. The poster of the other Q obviously <i>did</i> understand that distinction; he asked specifically about UI. Though fundamentally changing someone else's question seems very obviously to me to be the wrong thing to do, I've done that. I've changed the other question to ask what I wanted, and gave my suggestions as answers to the altered question. http://stackoverflow.com/questions/1812522/what-are-the-most-useful-javascript-libraries Comment by Cheeso on What are the most useful Javascript libraries? Cheeso 2009-11-28T15:49:28Z 2009-11-28T15:49:28Z Thanks for the suggestion. I don't understand why this was closed. The question cited as pre-existing was not the same. it asked about UI, while I specifically did not. In my opinion, all 5 people who voted to close this Q, failed to understand that. Despite what people think, Javascript is not only about UI. http://stackoverflow.com/questions/1809007/best-way-to-detect-if-a-stream-is-zipped-in-java/1809111#1809111 Comment by Cheeso on Best way to detect if a stream is zipped in Java Cheeso 2009-11-28T12:15:33Z 2009-11-28T12:15:33Z Not sure if ZipInputStream will fail on that input. In an intelligent implementation, it will seek forward and <i>find</i> that signature. This is the way it's done in self-extracting archives, which on windows, have the PE-COFF signature at the beginning of the file, and the PKZIP zip entry signature within the file, wherever the zip entries are. The file is both an EXE and a ZIP. Will java's ZipInputStream read this stream? I don't know but it <i>should</i>. The ZipInputStream class in other implementations (in DotNetZip for example) can and will read this as a zip stream. http://stackoverflow.com/questions/1811398/does-googles-go-language-compute-complicated-algorithms-faster-than-c-and-c Comment by Cheeso on Does Google's Go language compute complicated algorithms faster than C++ and C#? Cheeso 2009-11-28T03:44:16Z 2009-11-28T03:44:16Z You sound like a Google evangelist, with this question. Do you really have a question or are you just trying to talk about Go? http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal Comment by Cheeso on OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T19:48:51Z 2009-11-27T19:48:51Z @Eric - thanks, I updated the code to use lower-case. http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal/1810062#1810062 Comment by Cheeso on OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T19:23:40Z 2009-11-27T19:23:40Z Sure! 10x is not insignificant. I had never measured it, is all. remember, <i>I'm that guy.</i> http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal Comment by Cheeso on OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T19:21:20Z 2009-11-27T19:21:20Z @Kevin, does it matter if someone calls it with new or not? There's no reference to <code>this</code> in the constructor, so... does it matter? Whether I use new or not, <code>(rv instanceof Container)</code> returns false, where rv is the return value. I think the converse is true: if new is assumed then you need to test. In this case new is not assumed, it looks like there is no test needed. true? http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal/1810062#1810062 Comment by Cheeso on OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T18:56:15Z 2009-11-27T18:56:15Z I got a 10x difference in perf speed, comparing the conventional versus crockford's proposal. http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal/1810062#1810062 Comment by Cheeso on OO Javascript constructor pattern: neo-classical vs prototypal Cheeso 2009-11-27T18:32:36Z 2009-11-27T18:32:36Z What's the conventional constructor pattern? Like I said, <i>I'm that guy</i> who uses the lamguage before learning it. Also, what's the perf hit? Not initializing the functions every call to the ctor/factory ... I think that eliminates private variables completely. Is that what you mean by asking &quot;is it worth it&quot; ? It seemed to me that a major concern from Crockford is lack of modularity and the possibility of disparate js libraries to trample on each others variables unexpectedly. His module pattern, his refusal to use new or this - they are all intended to directly address that. http://stackoverflow.com/questions/1794223/ideas-for-computer-science-project-with-corba-or-ice/1794580#1794580 Comment by Cheeso on Ideas for computer science project with CORBA or ICE Cheeso 2009-11-26T22:55:26Z 2009-11-26T22:55:26Z I'm clear that REST doesn't solve every problem. While I agree with your comment, it is completely beside the point. What's relevant is this: CORBA is dead. It's silly to spend time learning it. Sure, it's still in limited use. But it is shrinking. No career-savvy professional is out there today saying to himself &quot;Gee, I should really polish my CORBA skills.&quot; Forget about REST. Even in the absence of REST, CORBA is still a sinkhole, into which no more investment should be poured. Certainly not personal time of an individual programmer. http://stackoverflow.com/questions/1625607/best-way-to-generate-a-hash-signature-hmac-for-xmlserialized-objects-in-net/1654689#1654689 Comment by Cheeso on Best way to generate a hash signature (HMAC) for XMLSerialized objects in .NET? Cheeso 2009-11-26T16:03:22Z 2009-11-26T16:03:22Z The &quot;envelope&quot; approach is the better one. The envelope idea is fundamental in SOAP, of course. http://stackoverflow.com/questions/1800576/are-partial-methods-considered-harmful Comment by Cheeso on Are partial methods considered harmful? Cheeso 2009-11-26T14:32:45Z 2009-11-26T14:32:45Z Whoa. I don't mean to make it personal or disparage anyone, or the motivation for partial methods. The question is, is the feature generally useful and is it used appropriately. goto was a nice feature, but it can be over used. Response.End() can be over-used in ASP.NET. The question is, Where's the balance with partial methods?