User Marius - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:15:25Zhttp://stackoverflow.com/feeds/user/1585http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811422/classical-vs-prototypal-how-are-they-so-different/1811445#18114454Answer by Marius for Classical vs Prototypal... how are they so different?Marius2009-11-28T03:29:52Z2009-11-28T03:29:52Z<p>In JavaScript you can change the inheritance as the program is running, something you cannot do in classical programming. For example:</p>
<pre><code>function foo(name){
this.name=name;
}
foo.prototype.sayMyName=function(){return this.name};
function foo2(name){
this.name = name;
}
foo2.prototype.sayMyName = function(){return "My name is "+this.name;};
function bar(){}
bar.prototype = new foo();
var myBar = new bar();
myBar.name = "Marius";
alert(myBar.sayMyName());
bar.prototype = new foo2();
var myBar2 = new bar();
myBar2.name = "Marius";
alert(myBar2.sayMyName());
</code></pre>
http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/1762722#17627220Answer by Marius for What is the most spectacular way to shoot yourself in the foot with C++?Marius2009-11-19T11:41:20Z2009-11-19T11:41:20Z<p>If you go above or below the size of your arrays, then C/C++ will access different things in memory. For example the following code will replace the value of a variable in outside the function. </p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
void f(int x) {
int a[10];
printf("a[20] is at address 0x%x\n",(int)&a[20]);
a[20] = -1; /* change variable answer in main (gcc4.3.2/linux/i86) */
}
int main(void) {
int answer = 42;
printf("answer is at address 0x%x\n",(int)&answer);
f(5);
printf("answer=%d\n", answer);
return 0;
}
</code></pre>
<p>Even worse is the following, which will change the place the function returns to, to skip a password checking if statement:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
int check_password() {
char buffer[8];
printf("Enter password: ");
gets(buffer);
int i;
int * p = (int *) & buffer[20];
printf("*p is %x\n",*p);
*p += 4;
/* change function's return address on stack (gcc 4.3.2/Linux/i86) */
return strcmp(buffer, "secret") == 0;
}
int main(int argc, char *argv[]) {
int k = 7;
printf("size of address %d\n",sizeof(int *));
printf("function main is at address 0x%x\n", &main);
if (check_password()) {
printf("Authenticated\n");
} else {
printf("Password Incorrect\n");
}
printf ("bye\n");
}
</code></pre>
http://stackoverflow.com/questions/20322/how-do-i-log-uncaught-exceptions-in-php6How do I log uncaught exceptions in PHP?Marius2008-08-21T15:54:14Z2009-11-18T01:26:02Z
<p>I've found out how to convert errors into exceptions, and I display them nicely if they aren't caught, but I don't know how to log them in a useful way. Simply writing them to a file won't be useful, will it? And would you risk accessing a database, when you don't know what caused the exception yet?</p>
http://stackoverflow.com/questions/1733297/how-do-i-link-to-a-dll-from-javascript-in-xulrunner0How do I link to a DLL from javascript in XULRunner?Marius2009-11-14T04:41:21Z2009-11-17T00:02:55Z
<p>I have a dll (that I didn't write) and I would like to use it in an XULRunner application. I know nearly nothing about this, so bear with me. Apparently I can use XPCOM to load the dll and then call functions in it. How would I do that?</p>
http://stackoverflow.com/questions/1740437/object-is-same-but-the-output-is-different-please-help/1740446#17404460Answer by Marius for Object is same but the output is different ? please help Marius2009-11-16T06:36:46Z2009-11-16T06:53:15Z<p>== checks if the two objects are the same, not if their content is the same. To compare the content of two objects, use .equals. Neither == nor equals use the hashcode.</p>
<pre><code>if(s1.equals(s4)){
System.out.println("s1 and s4 are same.");
}else{
System.out.println("s1 and s4 are not same.");
}
</code></pre>
http://stackoverflow.com/questions/1740475/which-is-more-efficient/1740483#174048312Answer by Marius for Which is more efficient?Marius2009-11-16T06:47:07Z2009-11-16T06:47:07Z<p>You really shouldn't care, unless this is all you do, thousands of times per second, for several hours.</p>
<p>Rumor has it that using a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/StringBuilder.html" rel="nofollow">StringBuilder</a> is the fastest.</p>
<p>Try it both of them, running in a loop, a million times, and logging the time it takes, then report back to the rest of us.</p>
http://stackoverflow.com/questions/1739991/how-to-select-elements-like-question1-question2-question3-in-jquery-form-va/1739998#17399980Answer by Marius for How to select elements like question1, question2, question3,... in JQuery form validation plug-in?Marius2009-11-16T04:10:18Z2009-11-16T05:06:46Z<p>Assuming you mean <code><input type="text" name="question1" /></code>, then try the following jquery selector:</p>
<pre><code>$("input[name^='question']");
</code></pre>
<p>It will return a list of all of those elements.</p>
<p>This is how to do it (assuming the code you posted works for one element):</p>
<pre><code>$(document).ready(function() {
$("input[name^='question']").validate({
rules: {
title: {
required: true,
minlength:40
},
content: {
required: true,
minlength:100,
maxlength:2000
}
},
messages: {
}
});
});
</code></pre>
http://stackoverflow.com/questions/1739955/how-do-i-submit-a-form-to-javascript-without-the-submit-button/1739963#17399634Answer by Marius for How do I submit a form to JavaScript without the submit button?Marius2009-11-16T03:53:46Z2009-11-16T05:03:43Z<pre><code><form>
<input type="text" name="sometext">
<input type="button" value="Send" onClick="this.form.submit">
</form>
</code></pre>
<p>Or, from the sendsometext function:</p>
<pre><code>function sendsometext(form){
form.submit();
}
</code></pre>
<p>To run the function when the form submits (when the user presses Enter), try the following:</p>
<pre><code><form onsubmit="sendsometext(this)">
<input type="text" name="sometext">
</form>
</code></pre>
<p>If you return false from sendsometext, then the form will not submit.</p>
<h2>Edit (Again)</h2>
<p>Apparently you don't want to submit the form, all you want to do is let the function process the data and then do something with it. If your sendsometext function returns false, then the form should not submit:</p>
<pre><code>function sendsometext(form){
//do something with the form;
return false;
}
</code></pre>
<p>and then the html code:</p>
<pre><code><form onsubmit="return sendsometext(this)">
<input type="text" name="sometext">
</form>
</code></pre>
<p>If this does not work, then please specify what browser you are using, and what happens. Also post a demo page with how you have implemented it. You cannot sumbmit the form to JavaScript without the use of JavaScript (that does not make sense).</p>
http://stackoverflow.com/questions/1740133/7-1-7-10-ordering-numbers/1740145#17401451Answer by Marius for 7.1 < 7.10 - ordering numbersMarius2009-11-16T05:00:20Z2009-11-16T05:00:20Z<p>store it as a string, that is the only way those two numbers are different.</p>
http://stackoverflow.com/questions/1739883/how-do-i-find-the-smallest-positive-integer-congruent-to-i-modulo-m0How do I find the smallest positive integer congruent to i modulo m?Marius2009-11-16T03:26:31Z2009-11-16T03:39:37Z
<p>I have a variable that holds an angle, in degrees, which can be both positive and negative. I now need to make sure that this number is between 0 and 360 only. The number is a double.</p>
<p>What would a nice algorithm for doing that be? Simply doing angle % 360 does not work, because negative numbers end up still being negative. Bonus points to the smallest algorithm (aka, Code Golf).</p>
<p><hr></p>
<h2>EDIT</h2>
<p>Apparently this is different in different languages. In ActionScript and JavaScript, modulo will return a number between +m and -m:</p>
<pre><code>(-5) % 360 = -5
</code></pre>
http://stackoverflow.com/questions/1739804/new-to-php-hello-world/1739813#17398136Answer by Marius for new to php - hello worldMarius2009-11-16T02:53:29Z2009-11-16T03:02:52Z<p>You need to have a webserver that you open it through. Simply entering file:///whatever.php does not work, because the file is not parsed by PHP then. </p>
<p>There are several web servers you can chose from, but my advice is <a href="http://httpd.apache.org/" rel="nofollow">Apache</a>, the worlds most popular webserver. I have it running on my Windows XP laptop along with PHP, and it's easy to install and setup, and works great. There are lots of modules that can be installed later if you need them. It's also free, not only as in free beer, but also as in open source.</p>
http://stackoverflow.com/questions/1739095/possible-to-create-a-form-using-php-code-like-this/1739117#17391170Answer by Marius for possible to create a form using php code like this?Marius2009-11-15T22:36:08Z2009-11-15T22:36:08Z<p><code><input type="submit"></code> Don't need to have an onclick, it will submit the form when you click on it. </p>
http://stackoverflow.com/questions/1726927/json-with-classes1JSON with classes?Marius2009-11-13T03:20:34Z2009-11-13T04:50:27Z
<p>Is there a standardized way to store classes in JSON, and then converting them back into classes again from a string? For example, I might have an array of objects of type Questions. I'd like to serialize this to JSON and send it to (for example) a JavaScript page, which would convert the JSON string back into objects. But it should then be able to convert the Questions into objects of type Question, using the constructor I already have:</p>
<pre><code>function Question(id, title, description){
}
</code></pre>
<p>Is there a standardized way to do this? I have a few ideas on how to do it, but reinventing the wheel and so on.</p>
<h2>Edit:</h2>
<p>To clarify what I mean by classes: Several languages can use classes (JAVA, PHP, C#) and they will often communicate with JavaScript through JSON. On the server side, data is stored in instances of classes, but when you serialize them, this is lost. Once deserialized, you end up with an object structure that do not indicate what type of objects you have. JavaScript supports prototypal OOP, and you can create objects from constructors which will become typeof that constructor, for example Question above. The idea I had would be to have classes implement a JSONType interface, with two functions:</p>
<pre><code>public interface JSONType{
public String jsonEncode();//Returns serialized JSON string
public static JSONType jsonDecode(String json);
}
</code></pre>
<p>For example, the Question class would implement JSONType, so when I serialize my array, it would call jsonEncode for each element in that array (it detects that it implements JSONType). The result would be something like this:</p>
<pre><code>[{typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"},
{typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"},
{typeof:"Question", id:0, title:"Some Question", description:"blah blah blah"}]
</code></pre>
<p>The javascript code would then see the typeof attribute, and would look for a Question function, and would then call a static function on the Question object, similar to the interface above (yes, I realize there is a XSS security hole here). The jsonDecode object would return an object of type Question, and would recursively decode the JSON values (eg, there could be a comment value which is an array of Comments).</p>
http://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore/1719365#17193655Answer by Marius for Do Small Memory Leaks Matter Anymore?Marius2009-11-12T01:49:06Z2009-11-12T01:49:06Z<p>A memory leak really depends on several things:</p>
<ul>
<li>How often the leak happens</li>
<li>How much memory is lost each time</li>
<li>How long is the program going to run</li>
</ul>
<p>For example, if you lose 40 bytes every time a task happens, and that task happens when the program starts, then nobody cares. If you lose 40Mb every time the program starts, then it should be investigated. If you lose 40 bytes every frame in your video or game engine, then you should look into that, because you'll lose 1.2kB each second, and after an hour you would have lost almost 4Mb. </p>
<p>It also depends on how long the program is going to stick around for. For example, I have a small calculator app, that I open, run a calculation in, and then close again. If that app loses 4Mb in it's run, then it doesn't really matter, because the OS will reclaim that lost memory once I close it. If the hypothetical video/game engine mentioned earlier lost 4Mb an hour, and it ran a demo unit, for several hours a day at a stand at a convention, then I'd look into it.</p>
<p>An example of a famous memory leak is Firefox, which lost a lot of memory in it's earlier versions. If your browser leaked memory 10 years ago, then you probably wouldn't care. You shut down the computer every day, and you while running the browser you only had one page up at a time. Today I just let my laptop go to standby, and I never close Firefox. It is open for weeks at a time, and I have at least 10 tabs open at any given time. If memory leaks every time a tab is closed, then that is going to build up to a larger leak now than it did 10 years ago, and so it is more important.</p>
http://stackoverflow.com/questions/1701624/best-practice-of-big-javascript-objects/1701667#17016674Answer by Marius for Best practice of big javascript objectsMarius2009-11-09T15:15:34Z2009-11-10T00:08:24Z<p>The first method (a) is the fastest. In some situations using the . syntax can be faster, i.e. <code>myDataset.a</code> is faster than <code>myDataset['a']</code> which is way faster than <code>function(a){return myDataset[a];}</code>. Using functions is very rarely fast. In (b) you do exactly the same as in (a), but you have another function call, and that will add a new closure to the heap, which takes up space and time.</p>
http://stackoverflow.com/questions/1626919/how-to-suppress-the-browsers-authentication-required-dialog-when-doing-an-ajax/1701598#17015980Answer by Marius for How to suppress the browser's "authentication required" dialog when doing an ajax call that requires authentication?Marius2009-11-09T15:06:13Z2009-11-09T15:06:13Z<p>Without jquery (does not work in IE, but that is OK for a firefox extensions):</p>
<pre><code>var xhr = new XMLHttpRequest();
xhr.open("GET", "http://example.com", true, "username", "password");
xhr.onreadystatechange = function(){
if(this.readyState == 4){
if(this.status == 200){
alert("we got a response");
}
}
}
xhr.send();
</code></pre>
http://stackoverflow.com/questions/1701543/clipboard-access-using-javascript-sans-flash/1701574#17015743Answer by Marius for Clipboard access using Javascript - sans Flash?Marius2009-11-09T15:01:47Z2009-11-09T15:01:47Z<p>No, not in FF and Chrome. It works in IE (not sure about 7 and 8, but definitively 6), and from Flash. That is why Flash is always used.</p>
http://stackoverflow.com/questions/1701532/wrap-text-after-perticular-symbol-with-jquery/1701554#17015540Answer by Marius for Wrap text after perticular symbol with jQueryMarius2009-11-09T14:59:28Z2009-11-09T14:59:28Z<p>This will insert a linebreak before every - in a list item.</p>
<pre><code>$(function(){
$("li").each(function(){
$(this).html($(this).html().replace(\-\, "<br />-"));
});
});
</code></pre>
http://stackoverflow.com/questions/1701246/is-it-possible-to-reload-a-form-after-an-input-typefile-changes/1701368#17013680Answer by Marius for Is it possible to reload a form after an input type="file" changes?Marius2009-11-09T14:36:12Z2009-11-09T14:36:12Z<p>When you submit the form, the entire page reloads. The only way around this is to put the upload form in an iframe. You cannot upload an image without submitting the form, and you cannot upload a thumbnail of the image, you have to upload the entire image, unless you use flash, silverlight or java.</p>
http://stackoverflow.com/questions/1701240/parsing-date-like-twitter/1701253#17012535Answer by Marius for Parsing date like twitterMarius2009-11-09T14:23:11Z2009-11-09T14:23:11Z<p>You are looking for <a href="http://ejohn.org/blog/javascript-pretty-date/" rel="nofollow">Pretty date in JavaScript</a>, by John Resig.</p>
<p>For example: </p>
<pre><code>prettyDate("2008-01-28T20:24:17Z") // => "2 hours ago"
prettyDate("2008-01-27T22:24:17Z") // => "Yesterday"
prettyDate("2008-01-26T22:24:17Z") // => "2 days ago"
prettyDate("2008-01-14T22:24:17Z") // => "2 weeks ago"
prettyDate("2007-12-15T22:24:17Z") // => undefined
</code></pre>
http://stackoverflow.com/questions/1700870/how-do-i-do-outerhtml-in-firefox/1700960#17009600Answer by Marius for How do I do OuterHTML in firefox?Marius2009-11-09T13:21:19Z2009-11-09T14:12:21Z<p>If all you want is the onclick attribute, then try the following: This assumes that you did not set the event using attachEvent or addEventListener.</p>
<pre><code>elm.getAttribute("onclick");
</code></pre>
<p>If you want to make an outerHTML string (just promise not to take it apart after you make it):</p>
<pre><code>function outerHTML(elm){
var ret = "<"+elm.tagName;
for(var i=0; i<elm.attributes.length; i++){
var attr = elm.attributes[i];
ret += " "+attr.name+"=\""+attr.nodeValue.replace(/"/, "\"")+"\"";
}
ret += ">";
ret += elm.innerHTML+"</"+elm.tagName+">";
return ret;
}
</code></pre>
<p>This function should do the trick in most cases, but it does not take namespaces into account.</p>
http://stackoverflow.com/questions/1701026/php-recursive-function-array-by-reference-headache/1701052#17010520Answer by Marius for PHP recursive function + array by reference = headacheMarius2009-11-09T13:41:44Z2009-11-09T13:41:44Z<p>If you want to send a data structure from javascript to php, then try JSON. It would look something like this in javascript:</p>
<pre><code>var obj = {1:[],
2:[],
3:{
4:{
5:[],
6:[],
7:[]
}
},
8:[]};
var json = JSON.stringify(obj);
//Now send it to the server as a string
</code></pre>
<p>This is all you need on the server, assuming $json has now got the string you created in javascript</p>
<pre><code><?php
$arr = json_decode($strng, true);
print_r($arr);
?>
</code></pre>
http://stackoverflow.com/questions/1700932/how-can-i-not-repeat-this-code-in-jquery/1701016#17010161Answer by Marius for How can I not repeat this code in jquery?Marius2009-11-09T13:33:48Z2009-11-09T13:33:48Z<pre><code>function slideBoth(elm1, elm2){
if(elm1.is(":visible")){
elm1.slideUp(function(){
elm2.slideToggle("fast");
}
}else{
elm2.slideToggle("fast");
}
}
$('#accountLoginButton').click(function() {
slideBoth($("#topSubscribe"), $("#topLogin"));
}
$('#subscribeTopButton').click(function() {
slideBoth($("#topLogin"),$("#topSubscribe"));
}
</code></pre>
http://stackoverflow.com/questions/1700807/how-to-show-extended-option-in-select-list/1700840#17008402Answer by Marius for How to show extended option in select list?Marius2009-11-09T12:58:19Z2009-11-09T12:58:19Z<p>This is a bug in IE, and there is no way to solve it, apart from making the select box wider:</p>
<pre><code><select style="width: 500px;">
<option value="1">
This is a very long option, but it's cool, cause the select is also very long
</option>
</select>
</code></pre>
<p>Another alternative is to use a framework that will replace the selectbox with a styled combination of other elements. They will behave like a selectbox, but require javascript to work.</p>
http://stackoverflow.com/questions/1700784/i-wrote-a-tab-control-but-i-cannot-get-the-css-to-work-in-all-browsers-how-do-i/1700805#17008051Answer by Marius for I wrote a tab control but I cannot get the css to work in all browsers, how do I fix it?Marius2009-11-09T12:50:33Z2009-11-09T12:50:33Z<p>Have a look at the page using the DOM inspector in Firefox, and make sure there isn't something wrong with the JavaScript by either using the Error Console or Firebug. </p>
<p>If you could post some more code, or even better, the link to a test page, then we might be able to help you more. Right now there isn't much we can do with the code you've posted.</p>
http://stackoverflow.com/questions/1700643/javascript-character-issue-when-filling-dropdown-with-jquery-from-external-js-fil/1700778#17007780Answer by Marius for JavaScript Character Issue When Filling Dropdown With jQuery From External JS FileMarius2009-11-09T12:45:16Z2009-11-09T12:45:16Z<p>Make sure you save the javascript file using UTF-8 encoding. If you open the file in Notepad++, then you can click Format>Encode in UTF-8 (If you try Format>Convert to UTF-8, then have a look at the page using a hex editor. Sometimes you end up with some strange characters at the beginning of the file).</p>
http://stackoverflow.com/questions/1700062/change-link-text-in-html-using-javascript/1700078#17000780Answer by Marius for change link text in HTML using JavaScriptMarius2009-11-09T09:58:45Z2009-11-09T09:58:45Z<p>If elm is the link:</p>
<pre><code>elm.addEventListener("click", function(){
this.innerHTML = "close";
}, true);
</code></pre>
http://stackoverflow.com/questions/1699847/ajax-problem-with-redirect/1700068#17000683Answer by Marius for AJAX: problem with redirect Marius2009-11-09T09:56:55Z2009-11-09T09:56:55Z<p>AJAX (or XMLHttpRequest to be acurate) won't be tricked by a redirect. To be able to get content from another domain you need to use a proxy on the server. The following is a simple PHP proxy:</p>
<pre><code>if(strpos($_GET['q'], "http://") === 0){
echo file_get_contents($_GET['q']);
}
</code></pre>
<p>use it like this:</p>
<pre><code>xhr.open(GET, "www.xyz.org/proxy.php?q=subdomain.xyz.org/testscript", true);
</code></pre>
http://stackoverflow.com/questions/1699938/javascript-callback-question/1699967#16999674Answer by Marius for javascript callback questionMarius2009-11-09T09:26:40Z2009-11-09T09:31:59Z<p>A callback function is a function that is going to be called later, usually when some event occurs. For example, when adding an event listener:</p>
<pre><code>function callback(){
alert("click");
}
document.body.addEventListener("click", callback, true);
</code></pre>
<p>In many cases you pass the callback function as an anonymous function:</p>
<pre><code>setTimeout(function(){alert("It's been 1 second");}, 1000);
</code></pre>
<p>The code <code>getListCallback = function1(obj);</code> will not call getListCallback with the results of function1(obj). It will store whatever <code>function1(obj)</code> returns into <code>getListCallback</code>. If function1 returns a function, then you can call that function later, like so:</p>
<pre><code>function function1(obj){
return function(){
alert("getListCallback was called. obj = "+obj);
}
}
getListCallback = function1(1);
getListCallback();
</code></pre>
http://stackoverflow.com/questions/1671016/whats-the-most-impressive-thing-youve-seen-done-with-javascript/1671944#16719440Answer by Marius for Whats the most impressive thing you've seen done with JavaScript?Marius2009-11-04T06:08:24Z2009-11-04T14:39:27Z<p><a href="http://en.wikipedia.org/wiki/Doom%5F%28video%5Fgame%29" rel="nofollow">Doom</a> clone in JavaScript: <a href="http://canvex.lazyilluminati.com/83/play.xhtml" rel="nofollow">http://canvex.lazyilluminati.com/83/play.xhtml</a></p>
<p>It uses the canvas, similar to the <a href="http://en.wikipedia.org/wiki/Wolfenstein%5F%28series%29" rel="nofollow">Wolfenstein</a> clones already posted.</p>
http://stackoverflow.com/questions/1740475/which-is-more-efficientComment by Marius on Which is more efficient?Marius2009-11-16T06:46:12Z2009-11-16T06:46:12ZYou really shouldn't care, unless this is all you do, thousands of times per second, for several hours.http://stackoverflow.com/questions/1739991/how-to-select-elements-like-question1-question2-question3-in-jquery-form-va/1739998#1739998Comment by Marius on How to select elements like question1, question2, question3,... in JQuery form validation plug-in?Marius2009-11-16T06:10:55Z2009-11-16T06:10:55ZIn that case, there is none.http://stackoverflow.com/questions/1739955/how-do-i-submit-a-form-to-javascript-without-the-submit-buttonComment by Marius on How do I submit a form to JavaScript without the submit button?Marius2009-11-16T04:08:24Z2009-11-16T04:08:24ZThe form will submit automatically if you hit enter in the textfield. If you want to run the function before submitting, then try onsubmit.http://stackoverflow.com/questions/1739883/how-do-i-find-the-smallest-positive-integer-congruent-to-i-modulo-m/1739907#1739907Comment by Marius on How do I find the smallest positive integer congruent to i modulo m?Marius2009-11-16T03:36:49Z2009-11-16T03:36:49Znot correct. -5 will return 5, when it should return 355http://stackoverflow.com/questions/1739883/how-do-i-find-the-smallest-positive-integer-congruent-to-i-modulo-m/1739894#1739894Comment by Marius on How do I find the smallest positive integer congruent to i modulo m?Marius2009-11-16T03:31:23Z2009-11-16T03:31:23ZJavascript and (therefore) ActionScripthttp://stackoverflow.com/questions/1739804/new-to-php-hello-worldComment by Marius on new to php - hello worldMarius2009-11-16T02:58:55Z2009-11-16T02:58:55ZApache works on most OS, and is relatively easy to install. It's also free (not only as in free beer) and works well with PHPhttp://stackoverflow.com/questions/1739804/new-to-php-hello-world/1739813#1739813Comment by Marius on new to php - hello worldMarius2009-11-16T02:55:17Z2009-11-16T02:55:17ZHe edited his question after I answered his question.http://stackoverflow.com/questions/1739165/in-javadesktop-a-lot-of-framework-but-which-is-the-bestComment by Marius on in javadesktop a lot of framework but which is the best?Marius2009-11-15T22:56:58Z2009-11-15T22:56:58Z"Best" really depends on what you need and what you value as important and unimportant. We have no idea what you are looking for, so there is no way we can compare them all for you and then tell you which one you should pick.http://stackoverflow.com/questions/1738573/easiest-way-to-execute-local-file-from-firefox/1738597#1738597Comment by Marius on Easiest way to execute local file from Firefox?Marius2009-11-15T22:51:59Z2009-11-15T22:51:59ZWriting an extension is not that difficult. Have a google search for it, read some tutorials and then search for "execute local file firefox extenson".http://stackoverflow.com/questions/1739146/ajax-instant-messaging-web-basedComment by Marius on Ajax instant messaging (web-based)Marius2009-11-15T22:50:27Z2009-11-15T22:50:27Zwhat do you mean by "would it be acceptable"?http://stackoverflow.com/questions/1739126/silverlight-what-is-silverlight-does-anyone-really-use-it-other-than-microsoftComment by Marius on Silverlight? What is silverlight? Does anyone really use it other than microsoft?Marius2009-11-15T22:43:45Z2009-11-15T22:43:45Z<a href="http://lmgtfy.com/?q=silverlight" rel="nofollow">lmgtfy.com/?q=silverlight</a>http://stackoverflow.com/questions/1739095/possible-to-create-a-form-using-php-code-like-thisComment by Marius on possible to create a form using php code like this?Marius2009-11-15T22:36:03Z2009-11-15T22:36:03ZRight click on the page in the browser, view page sourcehttp://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore/1719270#1719270Comment by Marius on Do Small Memory Leaks Matter Anymore?Marius2009-11-12T01:59:55Z2009-11-12T01:59:55Z@McWafflestix, The problem with your bank metaphor is that at the end of the day, the operating system reclaims the memory lost. It's like the bank calls you and says, "Hey, your bank account with $10 000 on it, we lost $0.02 a few hours ago, but they are back now".http://stackoverflow.com/questions/1701624/best-practice-of-big-javascript-objects/1701667#1701667Comment by Marius on Best practice of big javascript objectsMarius2009-11-10T00:07:22Z2009-11-10T00:07:22ZRight you are :) Fixed.http://stackoverflow.com/questions/1626919/how-to-suppress-the-browsers-authentication-required-dialog-when-doing-an-ajax/1697467#1697467Comment by Marius on How to suppress the browser's "authentication required" dialog when doing an ajax call that requires authentication?Marius2009-11-09T15:10:03Z2009-11-09T15:10:03Znot true: <a href="https://developer.mozilla.org/en/XmlHttpRequest#open%28%29" rel="nofollow">developer.mozilla.org/en/XmlHttpRequest#open%28%29/…</a>