User hishadow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:22:06Z http://stackoverflow.com/feeds/user/7188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183214/javascript-callback-scope/193853#193853 7 Answer by hishadow for JavaScript Callback Scope hishadow 2008-10-11T08:33:30Z 2009-09-23T11:23:44Z <p><em>(extracted some explanation that was hidden in comments in other answer)</em></p> <p>The problem lies in the following line:</p> <pre><code>this.dom.addEventListener("click", self.onclick, false); </code></pre> <p>Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).</p> <p>The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:</p> <pre><code>this.dom.addEventListener( "click", function(event) {self.onclick(event)}, false); </code></pre> <p>Since the variable self was assigned <em>this</em> when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.</p> <p>An alternative way to solve this is to make an utility function (and avoid using variables for binding <em>this</em>):</p> <pre><code>function bind(scope, fn) { return function () { fn.apply(scope, arguments); }; } </code></pre> <p>The updated code would then look like:</p> <pre><code>this.dom.addEventListener("click", bind(this, this.onclick), false) </code></pre> http://stackoverflow.com/questions/436171/wiki-that-can-be-integrated-into-a-web-application 3 Wiki that can be integrated into a web-application hishadow 2009-01-12T17:15:21Z 2009-08-07T21:33:52Z <p>I've been thinking about integrating a wiki into my web-application. Currently I'm testing MediaWiki API (web-services interface), but my intended usage will most likely conflict with the GPL license. Some parts of my web-application is closed source.</p> <p>Does anyone have good experiences or recommendations for a Wiki (with BSD-license or similar) that have a web-services interface that will allow me to retrieve/create articles (both formated and raw text) and supports userrights-management.</p> http://stackoverflow.com/questions/252985/resource-on-computing-time-complexity-of-algorithms/385596#385596 0 Answer by hishadow for Resource on computing time complexity of algorithms hishadow 2008-12-22T04:56:02Z 2008-12-22T04:56:02Z <p>A course in <a href="http://www.mhhe.com/math/advmath/rosen/" rel="nofollow">Discrete Mathematics</a> is sometimes given before <a href="http://projects.csail.mit.edu/clrs/" rel="nofollow">Introduction to Algorithms</a>.</p> http://stackoverflow.com/questions/215767/scala-how-to-create-xml-nodes-from-some-collection/319216#319216 2 Answer by hishadow for Scala: how to create XML nodes from some collection hishadow 2008-11-25T23:08:14Z 2008-12-20T03:19:44Z <p>For completeness, you can also use for..yield (or function calls):</p> <pre><code>import scala.xml class Person(val name: String, val age: Int) { def toXml(): xml.Elem = &lt;person&gt;&lt;name&gt;{ name }&lt;/name&gt;&lt;age&gt;{ age }&lt;/age&gt;&lt;/person&gt; } def peopleToXml(people: Array[Person]): xml.Elem = { &lt;people&gt;{ for {person &lt;- people} yield person.toXml }&lt;/people&gt; } val data = Array(new Person("joe",40), new Person("mary", 35)) println(peopleToXml(data)) </code></pre> <p>(fixed error noted by Woody Folsom)</p> http://stackoverflow.com/questions/362773/can-you-send-dynamic-data-to-a-processing-applet/364670#364670 3 Answer by hishadow for Can you send dynamic data to a processing applet? hishadow 2008-12-13T01:59:22Z 2008-12-19T01:58:37Z <p>The easiest way is to construct your own XML structure (base64 encode binary data if you need) and add a timer in your applet to retrieve updates from the server (through HTTP requests). How to prepare and process the XML is up to you.</p> <p>Applets are a bit heavy-weight for visualization, so if the same thing can be done in Flash, I'd recommend using that instead. Flash also got support for HTTP requests (or you can let javascript handle it).</p> http://stackoverflow.com/questions/318781/security-considerations-when-hosting-signed-jars 2 Security considerations when hosting signed jars hishadow 2008-11-25T20:44:25Z 2008-12-17T19:10:54Z <p>What are the security implications for hosting signed jars on the internet?</p> <p>As I understand jar signing, once a user choose to auto-accept a certificate, it doesn't matter if the signed jar came from your domain, linked from another domain or hosted on another domain. For example, Sun uses this method to give applets OpenGL support, by providing (hosted) signed jar that link to the driver. So are there any precautions I should make as the developer and certificate-signer of the java-code I make available?</p> http://stackoverflow.com/questions/106577/how-can-newly-registered-trademarks-affect-previous-non-trademarked-software 1 How can newly registered trademarks affect previous non-trademarked software? hishadow 2008-09-20T00:35:48Z 2008-12-09T22:33:36Z <p>Assumption:</p> <ul> <li>The newly registered trademark is within the software domain.</li> <li>No registered trademark existed when the software was named and release.</li> </ul> <p>First, are the any requirements for the trademark applicant to survey established names?</p> <p>If the trademark is granted registeration, how can this affect other unregistered software trademarks?</p> http://stackoverflow.com/questions/235258/jfilechooser-use-within-japplet/237840#237840 0 Answer by hishadow for JFileChooser use within JApplet hishadow 2008-10-26T10:35:29Z 2008-10-26T10:35:29Z <p>As mentioned, you need to sign your applet, which result in a "vague security warning" when the user is presented the applet. When the user accept to run this applet, the applet is given full access and functions like an ordinary application with it's obvious security implications. I'm in the same dilemma regarding a web application I'm working on and is not yet sure if it'll get deployed.</p> <p>You could alternatively use the built-in filebrowser in the webbrowser and bounce back the file-content from your server if you're working with smaller files.</p> <p>Also, some security measures you can make regarding a signed applet are:</p> <ul> <li><p>Validating the origin of the applet code.</p> <pre><code>URL appletUrl = MyApplet.class.getProtectionDomain().getCodeSource().getLocation(); if(appletUrl.toString().equalsIgnoreCase(safeAppletUrl) == false) return false; </code></pre></li> <li><p>Verifying the base URL from which the applet was run.</p> <pre><code>URL documentUrl = this.getDocumentBase(); if(documentUrl.toString().equalsIgnoreCase(safeDocumentUrl) == false) return false; </code></pre></li> </ul> http://stackoverflow.com/questions/236096/considerations-when-developing-an-integrated-product-for-microsoft-office-suite 0 Considerations when developing an integrated product for Microsoft Office suite hishadow 2008-10-25T08:23:39Z 2008-10-25T09:38:33Z <p>I have a product idea that requires integration into the Microsoft Office suite.</p> <p>Are there any licensing/limitation issues to be aware of for me to proceed?</p> http://stackoverflow.com/questions/106577/how-can-newly-registered-trademarks-affect-previous-non-trademarked-software/232309#232309 0 Answer by hishadow for How can newly registered trademarks affect previous non-trademarked software? hishadow 2008-10-24T02:34:06Z 2008-10-24T02:34:06Z <p>Some additional links from US Patent &amp; Trademark Office:</p> <ul> <li><a href="http://www.uspto.gov/web/offices/tac/tmfaq.htm" rel="nofollow">Trademark FAQ</a></li> <li><a href="http://tess2.uspto.gov/bin/gate.exe?f=login&amp;p_lang=english&amp;p_d=trmk" rel="nofollow">Search in registered trademarks</a></li> </ul> http://stackoverflow.com/questions/15376/whats-the-best-uml-diagramming-tool/64227#64227 0 Answer by hishadow for What's the best UML diagramming tool? hishadow 2008-09-15T16:02:40Z 2008-10-18T17:31:28Z <p>As mentioned, <a href="http://argouml.tigris.org/" rel="nofollow">ArgoUML</a> is a decent tool for UML 1.4 and has recently (Autumn 2008) been receiving some much needed maintainance updates.</p> http://stackoverflow.com/questions/51464/how-do-you-show-events-in-uml-class-diagrams/64050#64050 1 Answer by hishadow for How do you show events in UML Class Diagrams? hishadow 2008-09-15T15:40:57Z 2008-09-15T15:40:57Z <p>I find onEventName() the easiest naming scheme for event callbacks, but how to indicate which events an object can broadcast I've not found any solution. An extended UML class diagram that would allow for customized containers (besides the attribute and method contrainers) could be an alternative, if some tool would support it.</p> http://stackoverflow.com/questions/183214/javascript-callback-scope/193853#193853 Comment by hishadow on JavaScript Callback Scope hishadow 2009-08-19T22:49:40Z 2009-08-19T22:49:40Z Nice and short. :) http://stackoverflow.com/questions/183214/javascript-callback-scope/193853#193853 Comment by hishadow on JavaScript Callback Scope hishadow 2009-08-16T18:48:10Z 2009-08-16T18:48:10Z closure() is probably a better name though. http://stackoverflow.com/questions/215767/scala-how-to-create-xml-nodes-from-some-collection/365893#365893 Comment by hishadow on Scala: how to create XML nodes from some collection hishadow 2008-12-17T11:39:36Z 2008-12-17T11:39:36Z I didn't get any error in the interpreter, but maybe it's because I forgot the set the return type in toXml() so that is somehow became Unit instead. Also, I've removed a erroneous semicolon in the toXml body too. :) http://stackoverflow.com/questions/318781/security-considerations-when-hosting-signed-jars Comment by hishadow on Security considerations when hosting signed jars hishadow 2008-12-17T09:34:46Z 2008-12-17T09:34:46Z Made some clarifications. How I use the signed jar is not my question, but how other can use my signed jar once I've made it available. http://stackoverflow.com/questions/102003/how-can-i-start-an-java-applet-with-more-memory/102511#102511 Comment by hishadow on How can I start an Java applet with more memory? hishadow 2008-11-25T20:35:37Z 2008-11-25T20:35:37Z &quot;The new plugin architecture in JDK6u10 supports this, but obviously thats only at the RC stage right now.&quot; It's out now. :) http://stackoverflow.com/questions/236096/considerations-when-developing-an-integrated-product-for-microsoft-office-suite/236148#236148 Comment by hishadow on Considerations when developing an integrated product for Microsoft Office suite hishadow 2008-10-25T10:05:28Z 2008-10-25T10:05:28Z Well, I'll be a pretty small fish and happy to be left alone from Microsoft as long as I don't encounter alot of licensing issues long into the development process. :) The product idea will be fully integrated into Office and might require some additional MS products.