User the_drow - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T16:41:41Zhttp://stackoverflow.com/feeds/user/85140http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818355/tuturials-for-problems-with-xilinxs-microblaze-ip-stack0Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-11-30T07:40:05Z2009-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#18321730Answer by the_drow for What is the absolutely best way to recommend music?the_drow2009-12-02T10:55:50Z2009-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#18048612Answer by the_drow for Extending enums in C++?the_drow2009-11-26T17:19:37Z2009-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#18008992Answer by the_drow for Learning dojo: Chaining animations on a collection of objectsthe_drow2009-11-26T00:22:38Z2009-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#18008041Answer by the_drow for Are you using "pen and paper" during programming?the_drow2009-11-26T00:03:58Z2009-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-variant1Boost.Any vs. Boost.Variantthe_drow2009-09-02T08:49:58Z2009-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-issues1Javascript scope issuesthe_drow2009-10-08T20:20:45Z2009-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#15426570Answer by the_drow for Javascript scope issuesthe_drow2009-10-09T08:53:54Z2009-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#15172851Answer by the_drow for What is a good MFC starting book?the_drow2009-10-04T20:19:59Z2009-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-system0How to implement permissions in a blogging system?the_drow2009-09-25T12:06:27Z2009-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-javascript4Is it possible to make a functor in JavaScript?the_drow2009-07-14T10:48:50Z2009-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#14469800Answer by the_drow for Controller/mini-kernel design pattern in C++the_drow2009-09-18T21:48:51Z2009-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#14469067Answer by the_drow for Small company of 150 employees needs inexpensive Issue Tracking system.the_drow2009-09-18T20:13:11Z2009-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#14438301Answer by the_drow for Parsing file in C++the_drow2009-09-18T10:56:09Z2009-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#14377692Answer by the_drow for How to override private variable in javascript?the_drow2009-09-17T09:45:44Z2009-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-uris1How do I sanitize title URIs?the_drow2009-09-16T11:43:02Z2009-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#14332521Answer by the_drow for Are there any special server requirements for rendering a .mobi site?the_drow2009-09-16T14:15:20Z2009-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#14302941Answer by the_drow for What is the most common way of understanding a very large C++ application?the_drow2009-09-16T00:22:48Z2009-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#14297481Answer by the_drow for Boost - "static" vs "shared" librariesthe_drow2009-09-15T21:36:22Z2009-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-llvm1What is the reason for the creation of LLVM?the_drow2009-09-14T11:03:52Z2009-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-exe1How to turn the V8 compiled javascript into an EXE?the_drow2009-07-20T08:37:06Z2009-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#13964160Answer by the_drow for How to add private variable to this Javascript object literal snippet?the_drow2009-09-08T21:26:29Z2009-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-source4In-House Propriety vs. Open Sourcethe_drow2009-09-08T10:40:02Z2009-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-wt2CppCMS vs. C++ Server Pages vs. Wtthe_drow2009-07-22T12:42:48Z2009-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#13220830Answer by the_drow for How to name Resource Identifiers?the_drow2009-08-24T12:30:31Z2009-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-decisions1Policy based design decisionsthe_drow2009-08-23T13:11:38Z2009-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<X, Y>'s type is different then Device<N, M> 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 &getName() const = 0;
//virtual void changeState(const ??? &_state) = 0; If I put a template here it won't solve my problem
};
template<typename T>
class State
{
private:
T state;
protected:
typedef T StateType;
public:
State() : state(1) {}
const T &getState() { return state; }
void setState(const T _state) { state = _state; }
};
template <class StatePolicy>
class LightbulbBehvior : protected StatePolicy
{
private:
typedef StatePolicy SP;
public:
virtual void performAction()
{
if ( SP::getState() )
cout << "do stuff";
}
void changeState(const typename SP::StateType &_state)
{
setState(_state);
performAction();
}
};
template<class StatePolicy, template <class> class BehviorPolicy>
class Device : public AbstractDevice, public BehviorPolicy<StatePolicy>
{
private:
string sName;
public:
const string &getName() const { return sName; }
};
int main()
{
AbstractDevice *d = new Device<State<int>, LightbulbBehvior>();
d->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 &getName() const = 0;
virtual void changeState(const int &_state) = 0;
};
</code></pre>
<p>Thanks in advance,<br />
Omer.</p>
http://stackoverflow.com/questions/1318525/policy-based-design-decisions/1319141#13191410Answer by the_drow for Policy based design decisionsthe_drow2009-08-23T17:54:57Z2009-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 &getName() const = 0;
virtual void changeState(const AbstractState &_state) = 0;
};
template<typename T>
class State : public AbstractState
{
private:
T state;
protected:
typedef T StateType;
public:
State() {}
State(const T _state) : state(_state) {}
const T &getState() const { return state; }
void setState(const T _state) { state = _state; }
};
template <class StatePolicy>
class LightbulbBehvior : protected StatePolicy
{
private:
typedef StatePolicy SP;
public:
virtual void performAction()
{
if ( SP::getState() )
cout << "do stuff";
}
void changeState(const typename SP::StateType &_state)
{
setState(_state);
performAction();
}
};
template<class StatePolicy, template <class> class BehviorPolicy>
class Device : public AbstractDevice, public BehviorPolicy<StatePolicy>
{
private:
string sName;
typedef BehviorPolicy<StatePolicy> BP;
typedef StatePolicy SP;
public:
const string &getName() const { return sName; }
void performAction()
{
BP::performAction();
}
void changeState(const AbstractState &_state)
{
BP::changeState(((const SP &)_state).getState());
}
};
int main()
{
AbstractDevice *d = new Device<State<int>, LightbulbBehvior>();
d->changeState(State<int>(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-v81How to incoparate or implement a DOM API to v8?the_drow2009-07-26T09:03:55Z2009-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-v81How do you include another js file in Google's v8?the_drow2009-07-19T06:17:09Z2009-08-23T06:34:10Z
<p>How do you include another script file inside a .js script file in v8?<br />
There's the <script> 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#12553010Answer by the_drow for I need a guidance for designing a gaming web site.the_drow2009-08-10T14:40:39Z2009-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#1830672Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-12-03T09:07:28Z2009-12-03T09:07:28ZThe 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-memoryComment by the_drow on Why is java using so much memorythe_drow2009-12-02T11:25:35Z2009-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-memoryComment by the_drow on Why is java using so much memorythe_drow2009-12-02T10:59:58Z2009-12-02T10:59:58ZWhat 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#1830672Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-12-02T09:26:52Z2009-12-02T09:26:52ZI 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-stackComment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-12-02T09:25:51Z2009-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-stackComment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-12-01T23:09:40Z2009-12-01T23:09:40ZIt'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#1824308Comment by the_drow on Tuturials for problems with Xilinx's microblaze IP Stackthe_drow2009-12-01T08:38:58Z2009-12-01T08:38:58ZIs there any free e-book/tutorial on the internet?http://stackoverflow.com/questions/1819024/c-2d-dynamic-array-crashComment by the_drow on C++ 2D dynamic array crashthe_drow2009-11-30T10:44:04Z2009-11-30T10:44:04ZIf 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#1818761Comment by the_drow on Timing in JavaScriptthe_drow2009-11-30T09:33:33Z2009-11-30T09:33:33ZFirebug is a good advice. +1http://stackoverflow.com/questions/1810753/overloading-operator-for-a-templated-class/1810838#1810838Comment by the_drow on Overloading operator<< for a templated classthe_drow2009-11-27T22:46:29Z2009-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-callbackComment by the_drow on jQuery: animate( params, [duration], [easing], [callback] ) the_drow2009-11-27T22:42:46Z2009-11-27T22:42:46ZWhy 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#1800899Comment by the_drow on Learning dojo: Chaining animations on a collection of objectsthe_drow2009-11-26T17:05:07Z2009-11-26T17:05:07ZNot 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#1800681Comment by the_drow on Pass a value from JSP to Javascriptthe_drow2009-11-26T00:17:39Z2009-11-26T00:17:39Z1) 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#1800610Comment by the_drow on In JavaScript, why is [ ] preferred over new Array(); ?the_drow2009-11-26T00:07:57Z2009-11-26T00:07:57Z@Brenton: I think he means that it's shorter to parse. I believe he's righthttp://stackoverflow.com/questions/1655336/use-of-in-php/1655339#1655339Comment by the_drow on Use of => in PHPthe_drow2009-10-31T22:30:09Z2009-10-31T22:30:09ZSee here: <a href="http://www.php.net/manual/en/language.operators.array.php" rel="nofollow">php.net/manual/en/…</a>