User the_drow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:41:41Z http://stackoverflow.com/feeds/user/85140 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack 0 Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-11-30T07:40:05Z 2009-12-03T08:29:27Z <p>Hello, My team is using the microblaze and we're having some trouble with the ip stack.<br> I am usually not an embedded programmer but I would like to learn how to help.<br> Are there any tutorials about IP stacks? What are they? How are they programmed? How can I troubleshoot problems in the IP stack?<br> Basically any info would help me. </p> <p>Thanks in advance,<br> Omer. </p> <p>Edit:<br> According to our electronic engineer this is the problem:<br> We are using lwIP on the Spartan-3A DSP S3D1800A circut while using BSB and it microblaze on it.<br> We're trying to use the Echo Server demo that has been given to us and it's supposed to open a port to telnet and echo any message recivied from there but it doesn't do that.<br> We have absolutly no idea what's wrong there.</p> http://stackoverflow.com/questions/1832039/what-is-the-absolutely-best-way-to-recommend-music/1832173#1832173 0 Answer by the_drow for What is the absolutely best way to recommend music? the_drow 2009-12-02T10:55:50Z 2009-12-02T10:55:50Z <p>I recommend you to take a look on how <a href="http://www.last.fm" rel="nofollow">last.fm</a> implements such a thing.<br> As far as I can see they tag albums, songs, artists and match similar artists according to that and what the user is usually listening to.<br> I believe it requires some AI algorithm to detrmine what kind of music is "more recommended" to a specific user. it can be also based on other user input such as is this recommendation a good one or not like the last.fm "Love track".<br> This allows the system not only to see what the user listens the most but what he really likes.</p> http://stackoverflow.com/questions/1804840/extending-enums-in-c/1804861#1804861 2 Answer by the_drow for Extending enums in C++? the_drow 2009-11-26T17:19:37Z 2009-11-26T17:19:37Z <p>Not that I know of.</p> http://stackoverflow.com/questions/1800832/learning-dojo-chaining-animations-on-a-collection-of-objects/1800899#1800899 2 Answer by the_drow for Learning dojo: Chaining animations on a collection of objects the_drow 2009-11-26T00:22:38Z 2009-11-26T00:22:38Z <p>My suggestions are the following: </p> <ol> <li>Benchmark and see what works the best.</li> <li>Use whatever you feel most comfortable with.</li> <li>Imo option 4 is the best one.</li> <li>Go to the #dojo channel on freenode. There are great guys there (including me) that will help you with any question you've got.</li> </ol> http://stackoverflow.com/questions/1800746/are-you-using-pen-and-paper-during-programming/1800804#1800804 1 Answer by the_drow for Are you using "pen and paper" during programming? the_drow 2009-11-26T00:03:58Z 2009-11-26T00:03:58Z <p>Most of the times when I program you can see papers all over my desk, some are wrinkled on the floor and some are not.<br> I usually do my brainstorming on paper and preliminary UML diagrams.<br> If only I had a whiteboard... :)</p> http://stackoverflow.com/questions/1366524/boost-any-vs-boost-variant 1 Boost.Any vs. Boost.Variant the_drow 2009-09-02T08:49:58Z 2009-10-13T07:06:16Z <p>Hello,<br /> I'm having trouble choosing between Boost.Any and Boost.Variant.<br /> When should I use each one?<br /> What are the advantages and disadvantages of each?<br /> I am basically looking to store some states from external sources. </p> <p>Thanks,<br /> Omer</p> http://stackoverflow.com/questions/1540172/javascript-scope-issues 1 Javascript scope issues the_drow 2009-10-08T20:20:45Z 2009-10-09T08:53:54Z <p>Hello,<br /> I am extending dojo's dojox.data.JsonRestStore and I want to provide my own fixed scheme. this is getUsername won't work because it doesn't refer to the current datastore Take a look at this code:</p> <pre><code>/** * @author user */ dojo.provide("cms.user.UserAuthenticationStore"); dojo.require("dojox.data.JsonRestStore"); dojo.declare("cms.user.UserAuthenticationStore", [dojox.data.JsonRestStore], { schema: { prototype: { getUsername: function(){ return ???.getValue(this, "username"); } } } }); </code></pre> <p>Can you tell me what to replace ??? with?<br /> EDIT:<br /> Here's the code that works but it's ugly as hell, can someone tell me how to fix this? </p> <pre><code>/** * @author user */ dojo.provide("cms.user.UserAuthenticationStore"); dojo.require("dojox.data.JsonRestStore"); dojo.declare("cms.user.UserAuthenticationStore", [dojox.data.JsonRestStore], { schema: { prototype: {} }, constructor: function(){ var that = this; this.schema.prototype.getUsername = function(){ return that.getValue(this, "username"); } } }); </code></pre> http://stackoverflow.com/questions/1540172/javascript-scope-issues/1542657#1542657 0 Answer by the_drow for Javascript scope issues the_drow 2009-10-09T08:53:54Z 2009-10-09T08:53:54Z <p>Here's the right way to do this: </p> <pre><code>/** * @author user */ dojo.provide("cms.user.UserAuthenticationStore"); dojo.require("dojox.data.JsonRestStore"); dojo.declare("cms.user.UserAuthenticationStore", [dojox.data.JsonRestStore], { schema: { prototype: { store: null, getUsername: function(){ return this.store.getValue(this, "username"); } } }, constructor: function(){ this.schema.prototype.store = this; }, login: function(){ }, logout: function(){ } }); </code></pre> http://stackoverflow.com/questions/149698/what-is-a-good-mfc-starting-book/1517285#1517285 1 Answer by the_drow for What is a good MFC starting book? the_drow 2009-10-04T20:19:59Z 2009-10-04T20:19:59Z <p>A good MFC book is a book that says don't use MFC.</p> http://stackoverflow.com/questions/1476943/how-to-implement-permissions-in-a-blogging-system 0 How to implement permissions in a blogging system? the_drow 2009-09-25T12:06:27Z 2009-09-27T13:35:52Z <p>I am rolling my own blogging system and I am wondering how to determine permissions and implement them in a blogging system?<br /> What should be the permissions for a commenter, a blogger and an admin?<br /> What is the best way to implement them? </p> http://stackoverflow.com/questions/1124645/is-it-possible-to-make-a-functor-in-javascript 4 Is it possible to make a functor in JavaScript? the_drow 2009-07-14T10:48:50Z 2009-09-19T18:49:00Z <p>I'm trying to make a function that holds state but is called with foo().<br /> Is it possible?</p> http://stackoverflow.com/questions/1446945/controller-mini-kernel-design-pattern-in-c/1446980#1446980 0 Answer by the_drow for Controller/mini-kernel design pattern in C++ the_drow 2009-09-18T21:48:51Z 2009-09-18T21:48:51Z <p>Read here for Game programming 101 <a href="http://www.gamedev.net/reference/articles/article1031.asp" rel="nofollow">part 1</a> and <a href="http://www.gamedev.net/reference/articles/article1074.asp" rel="nofollow">part 2</a>.<br /> From your question it seems that you are looking for threads and a game loop.<br /> Start with a single threaded app and then move to multithreading since C++ is a language that is very hard to learn and even harder to master.</p> http://stackoverflow.com/questions/1446901/small-company-of-150-employees-needs-inexpensive-issue-tracking-system/1446906#1446906 7 Answer by the_drow for Small company of 150 employees needs inexpensive Issue Tracking system. the_drow 2009-09-18T20:13:11Z 2009-09-18T21:28:14Z <p>I believe that you guys all missed FogCreek's <a href="http://www.fogcreek.com/FogBugz/" rel="nofollow">FogBugz</a>.<br /> I've heard only good things about it and even tried the demo.<br /> It is awesome.<br /> It can be hosted.</p> http://stackoverflow.com/questions/1443064/parsing-file-in-c/1443830#1443830 1 Answer by the_drow for Parsing file in C++ the_drow 2009-09-18T10:56:09Z 2009-09-18T10:56:09Z <p>Just download boost and use <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/tokenizer/index.html" rel="nofollow">boost.tokenizer</a>.<br /> It's the best solution there is.</p> http://stackoverflow.com/questions/1437712/how-to-override-private-variable-in-javascript/1437769#1437769 2 Answer by the_drow for How to override private variable in javascript? the_drow 2009-09-17T09:45:44Z 2009-09-17T09:45:44Z <p>First of all your code doesn't work at all and it's wrong.<br /> Here's the code that works: </p> <pre><code>// base function function Man(name) { // private property var lover = "simron"; // public property this.wife = "rocy"; // privileged method this.getLover = function(){return lover}; // public method Man.prototype.getWife = function(){return this.wife;}; } // child function function Indian(){ var lover = "jothika"; this.wife = "kamala"; this.getLover = function(){return lover}; } Indian.prototype = new Man(); Indian.prototype.constructor = Indian; var oneIndian = new Indian(); document.write(oneIndian.getLover()); </code></pre> <p>aMan didn't exist until you declared it.<br /> Also you should have set the ctor to Indian.<br /> And at last, getLover is a closure that refers to Man and not to Indian.<br /> Declaring it again refers it to the right scope.<br /> See <a href="http://www.herongyang.com/JavaScript/Inheritance-Prototype-constructor-Property.html" rel="nofollow">here</a> and <a href="http://javascript.crockford.com/inheritance.html" rel="nofollow">here</a> for further details and improvements of your code.</p> http://stackoverflow.com/questions/1432463/how-do-i-sanitize-title-uris 1 How do I sanitize title URIs? the_drow 2009-09-16T11:43:02Z 2009-09-16T15:57:57Z <p>Hello,<br /> I am programming a blog and I want the URIs to be the title like the question title here in stackoverflow or like wordpress.<br /> What are the rules for sanitizing a URI?<br /> Is there an already made code in PHP that does this? </p> <p>Thanks in advance,<br /> Omer</p> http://stackoverflow.com/questions/1433163/are-there-any-special-server-requirements-for-rendering-a-mobi-site/1433252#1433252 1 Answer by the_drow for Are there any special server requirements for rendering a .mobi site? the_drow 2009-09-16T14:15:20Z 2009-09-16T14:15:20Z <p>I believe that you should check the availability of Javascript in the target platforms.</p> http://stackoverflow.com/questions/1427931/what-is-the-most-common-way-of-understanding-a-very-large-c-application/1430294#1430294 1 Answer by the_drow for What is the most common way of understanding a very large C++ application? the_drow 2009-09-16T00:22:48Z 2009-09-16T00:22:48Z <p>Try generating a documentation using Doxygen or something similar if it wasn't done already.<br /> Walk through the API and see if there is something that is unclear to you and look at the code, if you still don't get it ask a developer who already worked on it before.<br /> Always examine whatever you have to work on first.<br /> Take a look at whatever UML documents you've got, if you don't have any: </p> <ol> <li>Smack the developer/s who worked on it. It's a shame they didn't do something as basic as UML class diagrams.</li> <li>Try to generate them from the code. They will not be accurate but the they will give you a head start. </li> </ol> <p>If there is something specific that you don't understand or think is wrong, ask the team who developed it. They will probably know better.</p> http://stackoverflow.com/questions/1429720/boost-static-vs-shared-libraries/1429748#1429748 1 Answer by the_drow for Boost - "static" vs "shared" libraries the_drow 2009-09-15T21:36:22Z 2009-09-15T21:36:22Z <p>Static libraries are used when you don't need to dynamically load a componenet into the program. It is compiled into the exe.<br /> A shared library is loaded on runtime, and is usually used for plugins or extentions.<br /> Imo a static library is better here since you will probably load the boost shared library anyway on the program's startup.<br /> Why do you prefer a shared library?</p> http://stackoverflow.com/questions/1420908/what-is-the-reason-for-the-creation-of-llvm 1 What is the reason for the creation of LLVM? the_drow 2009-09-14T11:03:52Z 2009-09-14T20:12:47Z <p>What are the differences between an LLVM and a regular compiler?<br /> Is it more dynamic and thus can be used to compile normally very dynamic languages (i.e. Javascript) into static binary code? What are the principles behind creating one?<br /> I know the Dragon Book for compilers, but is there such a thing for a LLVM? </p> <p>Thanks in advance, Omer.</p> http://stackoverflow.com/questions/1152367/how-to-turn-the-v8-compiled-javascript-into-an-exe 1 How to turn the V8 compiled javascript into an EXE? the_drow 2009-07-20T08:37:06Z 2009-09-10T18:01:55Z <p>I know that google's v8 compiles javascript into native machine (binary if I understand correctly) code.<br /> Is there a way to take the output and turn it into a exe?</p> http://stackoverflow.com/questions/1396294/how-to-add-private-variable-to-this-javascript-object-literal-snippet/1396416#1396416 0 Answer by the_drow for How to add private variable to this Javascript object literal snippet? the_drow 2009-09-08T21:26:29Z 2009-09-08T21:26:29Z <p>Private variables in javascript are done using the var keyword inside a closure. Only priviliged methods and attributes can access it. Here's the way to do it:</p> <pre><code>function dataset() { var private_stuff = 10; // private this.foo = new function() { alert(private_stuff); } // priviliged return { tables:{ customers:{ cols:[ ], rows:[ ] }, orders:{ cols:[ ], rows:[ ] } }, relations:{ 0:{ parent:'customers', child:'orders', keyparent:'custid', keychild:'orderid', onetomany:true } } }; // public } var d = new dataset; alert(d.foo()); </code></pre> http://stackoverflow.com/questions/1393249/in-house-propriety-vs-open-source 4 In-House Propriety vs. Open Source the_drow 2009-09-08T10:40:02Z 2009-09-08T11:51:50Z <p>Is there a reason not to use wordpress and develop your own blogging system?<br /> Same goes with Durpal and our own CMS. </p> <p>I am wondering since my marketing women disagrees with me that we should develop our own in house solutions because there are better solutions. She also says that we might even loose time and money on it since it is our responsibility to maintain it and solve bugs and we can't throw it on wordpress' dev team for example. </p> <p>I don't want to invest time in something that might not worth it but I would really like to make more money. </p> <p>Does it depend on the site's scale and visitors?<br /> What are the factors of choosing one over anohter?</p> http://stackoverflow.com/questions/1164982/cppcms-vs-c-server-pages-vs-wt 2 CppCMS vs. C++ Server Pages vs. Wt the_drow 2009-07-22T12:42:48Z 2009-08-28T15:05:08Z <p>I know <a href="http://www.webtoolkit.eu/" rel="nofollow">Wt</a> is the most stable of them, but it's a bit uncomfortable to use.<br /> <a href="http://art-blog.no-ip.info/cppcms/blog" rel="nofollow">CppCMS</a> sounds good but how stable is it? How secure is it?<br /> I have encountered <a href="http://www.tntnet.org/index.html" rel="nofollow">C++ Server Pages</a> as well but there's nothing about their security in there.<br /> Has anyone had some experience with any of those libraries and can enlight me?</p> http://stackoverflow.com/questions/1322012/how-to-name-resource-identifiers/1322083#1322083 0 Answer by the_drow for How to name Resource Identifiers? the_drow 2009-08-24T12:30:31Z 2009-08-24T12:30:31Z <p>First of all you write RESTful. REST is an abbreviation.<br /> Second, imo you should access them by Reservation ID so the first option is the best.<br /> Reservation (Unique Key: Reservation ID) has many Rooms (Forign Key: Reservation ID).<br /> Use the second option to see what reservations are on a specific room. Also you can use the third option to show data about a room in the reservation.</p> http://stackoverflow.com/questions/1318525/policy-based-design-decisions 1 Policy based design decisions the_drow 2009-08-23T13:11:38Z 2009-08-23T17:54:57Z <p>Hello, I have a class called <strong>Device</strong> that accepts two policies as far as I can see: <strong>StatePolicy</strong> and <strong>BehaviorPolicy</strong>.<br /> The <strong>StatePolicy</strong> holds and manages the state of the device.<br /> The <strong>BehaviorPolicy</strong> wraps the device driver that is written in C or C++.<br /> Now I have two questions: </p> <ol> <li>How to coordinate between the state and the behavior policies?</li> <li>How do I store all the devices inside one container? Since Device&lt;X, Y&gt;'s type is different then Device&lt;N, M&gt; I cannot store them with one container.</li> </ol> <p>EDIT 1: Here's some code to illustrate my problem:</p> <pre><code>class AbstractDevice { public: virtual ~AbstractDevice() {} virtual void performAction() = 0; virtual const string &amp;getName() const = 0; //virtual void changeState(const ??? &amp;_state) = 0; If I put a template here it won't solve my problem }; template&lt;typename T&gt; class State { private: T state; protected: typedef T StateType; public: State() : state(1) {} const T &amp;getState() { return state; } void setState(const T _state) { state = _state; } }; template &lt;class StatePolicy&gt; class LightbulbBehvior : protected StatePolicy { private: typedef StatePolicy SP; public: virtual void performAction() { if ( SP::getState() ) cout &lt;&lt; "do stuff"; } void changeState(const typename SP::StateType &amp;_state) { setState(_state); performAction(); } }; template&lt;class StatePolicy, template &lt;class&gt; class BehviorPolicy&gt; class Device : public AbstractDevice, public BehviorPolicy&lt;StatePolicy&gt; { private: string sName; public: const string &amp;getName() const { return sName; } }; int main() { AbstractDevice *d = new Device&lt;State&lt;int&gt;, LightbulbBehvior&gt;(); d-&gt;changeState(5); return 0; } </code></pre> <p>EDIT 2: This makes the code works with one downside, I have to maintain a list of all allowed state types. It looks a bit like the visitor pattern to me. Any thoughts?</p> <pre><code>class AbstractDevice { public: virtual ~AbstractDevice() {} virtual void performAction() = 0; virtual const string &amp;getName() const = 0; virtual void changeState(const int &amp;_state) = 0; }; </code></pre> <p>Thanks in advance,<br /> Omer.</p> http://stackoverflow.com/questions/1318525/policy-based-design-decisions/1319141#1319141 0 Answer by the_drow for Policy based design decisions the_drow 2009-08-23T17:54:57Z 2009-08-23T17:54:57Z <p>Here is the full design that works and does it's job pretty well at it:</p> <pre><code>class AbstractState { public: virtual ~AbstractState() {} }; class AbstractDevice { public: virtual ~AbstractDevice() {} virtual void performAction() = 0; virtual const string &amp;getName() const = 0; virtual void changeState(const AbstractState &amp;_state) = 0; }; template&lt;typename T&gt; class State : public AbstractState { private: T state; protected: typedef T StateType; public: State() {} State(const T _state) : state(_state) {} const T &amp;getState() const { return state; } void setState(const T _state) { state = _state; } }; template &lt;class StatePolicy&gt; class LightbulbBehvior : protected StatePolicy { private: typedef StatePolicy SP; public: virtual void performAction() { if ( SP::getState() ) cout &lt;&lt; "do stuff"; } void changeState(const typename SP::StateType &amp;_state) { setState(_state); performAction(); } }; template&lt;class StatePolicy, template &lt;class&gt; class BehviorPolicy&gt; class Device : public AbstractDevice, public BehviorPolicy&lt;StatePolicy&gt; { private: string sName; typedef BehviorPolicy&lt;StatePolicy&gt; BP; typedef StatePolicy SP; public: const string &amp;getName() const { return sName; } void performAction() { BP::performAction(); } void changeState(const AbstractState &amp;_state) { BP::changeState(((const SP &amp;)_state).getState()); } }; int main() { AbstractDevice *d = new Device&lt;State&lt;int&gt;, LightbulbBehvior&gt;(); d-&gt;changeState(State&lt;int&gt;(5)); delete d; return 0; } </code></pre> <p>@cjhuitt: Generally I think you are right but take a look and tell me what do you think.</p> http://stackoverflow.com/questions/1184086/how-to-incoparate-or-implement-a-dom-api-to-v8 1 How to incoparate or implement a DOM API to v8? the_drow 2009-07-26T09:03:55Z 2009-08-23T06:43:00Z <p>I am writing a server application that is able to manipulate the DOM before it is served to the client.<br /> I am using C++ and Google's v8 as a javascript engine but I don't see any DOM API in v8.<br /> Is there an open source implementation for doing DOM manipulation on HTML?<br /> If not how would you implement one?</p> http://stackoverflow.com/questions/1149340/how-do-you-include-another-js-file-in-googles-v8 1 How do you include another js file in Google's v8? the_drow 2009-07-19T06:17:09Z 2009-08-23T06:34:10Z <p>How do you include another script file inside a .js script file in v8?<br /> There's the &lt;script&gt; tag in HTML but how can it be done inside a v8 embedded program?</p> http://stackoverflow.com/questions/1255090/i-need-a-guidance-for-designing-a-gaming-web-site/1255301#1255301 0 Answer by the_drow for I need a guidance for designing a gaming web site. the_drow 2009-08-10T14:40:39Z 2009-08-10T14:40:39Z <p>I say just hire someone from around here :)<br /> There are tons of talented web developers.<br /> You can also check <a href="http://www.rentacoder.com" rel="nofollow">rentacoder.com</a>.<br /> You'll find very good programmers there.</p> http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack/1830672#1830672 Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-12-03T09:07:28Z 2009-12-03T09:07:28Z The documentation wiki looks useless and we've already read the Xilinx manual, the first demo is actually what we're trying to run. The doxygen documentation might be useful. http://stackoverflow.com/questions/1832185/why-is-java-using-so-much-memory Comment by the_drow on Why is java using so much memory the_drow 2009-12-02T11:25:35Z 2009-12-02T11:25:35Z @edoloughlin: When this question will be clearer and more specific I will remove the downvote. If the question interests me I will even upvote. Currently the question isn't very useful. http://stackoverflow.com/questions/1832185/why-is-java-using-so-much-memory Comment by the_drow on Why is java using so much memory the_drow 2009-12-02T10:59:58Z 2009-12-02T10:59:58Z What benchmarks? What code? Java is good for one thing and bad for the other. What are you trying to do? http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack/1830672#1830672 Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-12-02T09:26:52Z 2009-12-02T09:26:52Z I am using lwIP but I haven't found any useful documentation on any of their sites (there is an old version and a new one) http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-12-02T09:25:51Z 2009-12-02T09:25:51Z @Maciek Sawicki: Is the Linux microblaze port stable? Can it be used in commercial products? http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-12-01T23:09:40Z 2009-12-01T23:09:40Z It's the 'I have no clue what is wrong' trouble. Nothing that you mentioned though, it just doesn't ping. http://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack/1824308#1824308 Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stack the_drow 2009-12-01T08:38:58Z 2009-12-01T08:38:58Z Is there any free e-book/tutorial on the internet? http://stackoverflow.com/questions/1819024/c-2d-dynamic-array-crash Comment by the_drow on C++ 2D dynamic array crash the_drow 2009-11-30T10:44:04Z 2009-11-30T10:44:04Z If this isn't for practice I recommend you to use a vector of vectors. It's much easier to handle. http://stackoverflow.com/questions/1818699/timing-in-javascript/1818761#1818761 Comment by the_drow on Timing in JavaScript the_drow 2009-11-30T09:33:33Z 2009-11-30T09:33:33Z Firebug is a good advice. +1 http://stackoverflow.com/questions/1810753/overloading-operator-for-a-templated-class/1810838#1810838 Comment by the_drow on Overloading operator<< for a templated class the_drow 2009-11-27T22:46:29Z 2009-11-27T22:46:29Z @Charles: You are correct but it seems that the binary tree only stores Word objects. http://stackoverflow.com/questions/1810835/jquery-animate-params-duration-easing-callback Comment by the_drow on jQuery: animate( params, [duration], [easing], [callback] ) the_drow 2009-11-27T22:42:46Z 2009-11-27T22:42:46Z Why the downvote? This is a question, even if he's wrong that does not mean he deserve a downvote. That's the reason he is asking. +1 from me to balance until I'm convinced otherwise. http://stackoverflow.com/questions/1800832/learning-dojo-chaining-animations-on-a-collection-of-objects/1800899#1800899 Comment by the_drow on Learning dojo: Chaining animations on a collection of objects the_drow 2009-11-26T17:05:07Z 2009-11-26T17:05:07Z Not in my opinion. But you should ask on freenode since I'm not the expert on dojo's animation api. http://stackoverflow.com/questions/1800641/pass-a-value-from-jsp-to-javascript/1800681#1800681 Comment by the_drow on Pass a value from JSP to Javascript the_drow 2009-11-26T00:17:39Z 2009-11-26T00:17:39Z 1) This should be in the comments section. 2) You should accept his answer as the correct one. http://stackoverflow.com/questions/1800594/in-javascript-why-is-preferred-over-new-array/1800610#1800610 Comment by the_drow on In JavaScript, why is [ ] preferred over new Array(); ? the_drow 2009-11-26T00:07:57Z 2009-11-26T00:07:57Z @Brenton: I think he means that it's shorter to parse. I believe he's right http://stackoverflow.com/questions/1655336/use-of-in-php/1655339#1655339 Comment by the_drow on Use of => in PHP the_drow 2009-10-31T22:30:09Z 2009-10-31T22:30:09Z See here: <a href="http://www.php.net/manual/en/language.operators.array.php" rel="nofollow">php.net/manual/en/&hellip;</a>