User &#211;lafur Waage - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T10:23:52Z http://stackoverflow.com/feeds/user/22459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1781780/php-variable-scope/1781799#1781799 1 Answer by Ólafur Waage for PHP Variable Scope Ólafur Waage 2009-11-23T08:32:38Z 2009-11-23T08:32:38Z <p>There is a $GLOBALS variable and a globals keyword.Check out example 1 and 2 on <a href="http://php.net/manual/en/language.variables.scope.php" rel="nofollow">this page in the documentation.</a></p> <p>But using a global variable is usually a sign of bad structure in your code.</p> http://stackoverflow.com/questions/1776799/how-to-set-div-background-color-to-none-using-jquerys-css/1776809#1776809 1 Answer by Ólafur Waage for How to set div background color to 'none' using jQuery's css? Ólafur Waage 2009-11-21T21:14:47Z 2009-11-21T21:14:47Z <p>How about this?</p> <pre><code>$('#element').css({'background-color':'transparent'}); </code></pre> <p>You can also try</p> <pre><code>$('#element').css("background-color", "transparent"); </code></pre> http://stackoverflow.com/questions/1736130/what-are-the-gotchas-and-issues-i-should-be-aware-of-with-sfml 0 What are the Gotchas and Issues I should be aware of with SFML? Ólafur Waage 2009-11-15T00:31:02Z 2009-11-21T14:32:55Z <p>I've been using SDL for a while to prototype small things and to learn more about graphics programming.</p> <p>Then I saw <a href="http://www.sfml-dev.org" rel="nofollow">SFML</a> and wanted to give it a try, saw that it was more object oriented and fixed some issues I felt SDL had.</p> <p>But since I know little about the library itself, what are it's main flaws and other issues that I should be aware of?</p> <p>Currently I'm liking it, good tutorial and most things just seem to work.</p> http://stackoverflow.com/questions/1774124/php-fatal-error-no-idea-why/1774130#1774130 3 Answer by Ólafur Waage for php fatal error- no idea why Ólafur Waage 2009-11-21T00:58:35Z 2009-11-21T01:17:45Z <p>You are most likely including a file twice or including two files that include the same file each.</p> <p>You can prevent this by using <a href="http://is.php.net/manual/en/function.include-once.php" rel="nofollow">include_once()</a> or setting up a better structure of what you include when.</p> <p><strong>EDIT</strong></p> <p>Try this and see if you see an error in your include setup.</p> <pre><code>echo "&lt;pre&gt;"; print_r(get_included_files()); echo "&lt;/pre&gt;"; </code></pre> <p>Somewhere you're including a file twice or some two files has a definition of your function.</p> http://stackoverflow.com/questions/1774007/working-with-distributed-teams/1774012#1774012 1 Answer by Ólafur Waage for Working with Distributed Teams Ólafur Waage 2009-11-21T00:14:48Z 2009-11-21T00:14:48Z <p>When it's out of beta, I would recommend checking out <a href="http://wave.google.com/" rel="nofollow">Google Wave</a> for any collab work, for it's simplicity in adding images/videos/other media into the wave.</p> http://stackoverflow.com/questions/1753735/cuda-on-non-nvidia-card-hardware/1753755#1753755 0 Answer by Ólafur Waage for CUDA on non-nVidia card hardware Ólafur Waage 2009-11-18T05:04:59Z 2009-11-18T05:04:59Z <p>Check out <a href="http://forums.nvidia.com/lofiversion/index.php?t69417.html" rel="nofollow">this thread</a>, see if it helps you. They link to <a href="http://www.ddj.com/cpp/207200659" rel="nofollow">this page</a>, which might help as well.</p> http://stackoverflow.com/questions/1753743/case-conventions-in-wpf-using-mvvm/1753748#1753748 0 Answer by Ólafur Waage for Case Conventions in wpf using MVVM Ólafur Waage 2009-11-18T05:03:46Z 2009-11-18T05:03:46Z <p>IIRC leading _ is used for member variables. But regarding case conventions, just stay consistent and use something you find comfortable.</p> http://stackoverflow.com/questions/1753667/check-if-a-combination-matches-a-given-set/1753684#1753684 0 Answer by Ólafur Waage for Check if a combination matches a given set Ólafur Waage 2009-11-18T04:40:44Z 2009-11-18T04:40:44Z <p>How about if you add what they need afterwards, so when you add person 1 into the room. You see that he needs a printer, you add a printer into a new array of people within the room and what they currently have.</p> <p>So when you add a new person, you check the current status, not the need of the people.</p> http://stackoverflow.com/questions/1753651/can-you-code-a-web-browser-in-less-that-30-lines-of-code/1753665#1753665 1 Answer by Ólafur Waage for Can you code a web browser in less that 30 lines of code? Ólafur Waage 2009-11-18T04:35:59Z 2009-11-18T04:35:59Z <p>With the correct library included i can do</p> <pre><code>start_browser() </code></pre> <p>It's just all what within that black box, most programing is.</p> http://stackoverflow.com/questions/1753578/php-form-question/1753598#1753598 0 Answer by Ólafur Waage for PHP form question. Ólafur Waage 2009-11-18T04:17:03Z 2009-11-18T04:17:03Z <p>The <a href="http://is.php.net/manual/en/tutorial.forms.php" rel="nofollow">PHP manual</a> has a great tutorial on how to work with forms in PHP</p> <pre><code>&lt;form action="action.php" method="post"&gt; &lt;p&gt;Your name: &lt;input type="text" name="name" /&gt;&lt;/p&gt; &lt;p&gt;Your age: &lt;input type="text" name="age" /&gt;&lt;/p&gt; &lt;p&gt;&lt;input type="submit" /&gt;&lt;/p&gt; &lt;/form&gt; </code></pre> <p><hr></p> <pre><code>Hi &lt;?php echo htmlspecialchars($_POST['name']); ?&gt;. You are &lt;?php echo (int)$_POST['age']; ?&gt; years old. </code></pre> <p>A sample output of this script may be:</p> <blockquote> <p>Hi Joe. You are 22 years old.</p> </blockquote> http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1753589#1753589 1 Answer by Ólafur Waage for Does anyone have any ideas for an assignment in game programming? Ólafur Waage 2009-11-18T04:15:34Z 2009-11-18T04:15:34Z <p>For a starting console game, few things beat <a href="http://en.wikipedia.org/wiki/Nim" rel="nofollow">Nim</a>. Why? It's basic game strategy + AI programming + math skills</p> http://stackoverflow.com/questions/1753562/mysql-inner-join-with-2-on-clauses/1753571#1753571 0 Answer by Ólafur Waage for MYSQL Inner Join with 2 ON Clauses Ólafur Waage 2009-11-18T04:11:27Z 2009-11-18T04:11:27Z <p>You're checking if the column address is equal to an id, I don't think this will be true in any case.</p> http://stackoverflow.com/questions/1753531/php-data-checking-and-clarification/1753538#1753538 1 Answer by Ólafur Waage for php data checking and clarification Ólafur Waage 2009-11-18T04:03:26Z 2009-11-18T04:03:26Z <pre><code>!= '' </code></pre> <p>This is not equal to the empty string, yes. I recommend looking at the <a href="http://php.net/manual/en/types.comparisons.php" rel="nofollow">type comparison table.</a></p> <p>And the second one will mean if numSelections is </p> <ul> <li>a set variable and</li> <li>larger than 0 and</li> <li>smaller than 40</li> </ul> http://stackoverflow.com/questions/1753519/static-domainname-com/1753528#1753528 0 Answer by Ólafur Waage for static.domainname.com Ólafur Waage 2009-11-18T04:00:33Z 2009-11-18T04:00:33Z <p>A browser supports only 2 concurrent connections to the same domain. A subdomain or another site will bypass that limit, so many sites create a site for static content to both help with caching and speedup the loading of their site.</p> http://stackoverflow.com/questions/1729699/how-do-i-correctly-use-sdlfreesurface-when-dealing-with-a-vector-of-surfaces 0 How do I correctly use SDL_FreeSurface when dealing with a vector of surfaces. Ólafur Waage 2009-11-13T14:53:36Z 2009-11-13T19:00:13Z <p>I have setup a small shooter game as a tutorial for myself in SDL. I have a struct of a projectile</p> <pre><code>struct projectile { SDL_Surface* surface; int x; int y; }; </code></pre> <p>And I put that into a vector.</p> <pre><code>vector&lt;projectile&gt; shot; projectile one_shot; </code></pre> <p>And when I press space I create a new projectile and add it to the vector and then they're blitted when they're rendered.</p> <p>This works fine, but I'm in seemingly random cases getting a "program has stopped working" error.</p> <p>So I'm wondering what is the proper way to free the surfaces.</p> <ul> <li>Do I free them all afterwards?</li> <li>Do I free each individual shot when it exits the screen?</li> <li>Or some other choice?</li> </ul> <p>UPDATE:</p> <p>I have found where it crashes when I quit, when I have fired a few shots and they have all exited the screen. I have tried replacing the code that adds the surface to the vector with the "proper way to duplicate" as <a href="http://www.libsdl.org/cgi/docwiki.cgi/SDL%5FSurface" rel="nofollow">seen in this example</a>, and it still behaves in the same way.</p> <p>This is how I free the surface.</p> <pre><code>if(shot.at(i).y &lt; 0 - shot.at(i).surface-&gt;h) { SDL_FreeSurface(shot.at(i).surface); shot.erase(shot.begin() + i); } </code></pre> <p>Anyone have an idea or some sample code I can look at to figure this out.</p> http://stackoverflow.com/questions/1724255/why-does-2-2-in-javascript/1724280#1724280 11 Answer by Ólafur Waage for Why does 2 == [2] in JavaScript? Ólafur Waage 2009-11-12T18:13:59Z 2009-11-12T18:35:49Z <p>A array of one item can be treated as the item itself.</p> <p>This is due to duck typing. Since "2" == 2 == [2] and possibly more.</p> http://stackoverflow.com/questions/1721083/active-directory-lookup-via-php/1721113#1721113 0 Answer by Ólafur Waage for Active Directory Lookup via PHP Ólafur Waage 2009-11-12T09:49:22Z 2009-11-12T09:49:22Z <p>PHP has a <a href="http://is.php.net/manual/en/intro.ldap.php" rel="nofollow">LDAP library</a> which you can use to query an active directory. It's not <a href="http://is.php.net/manual/en/ldap.installation.php" rel="nofollow">enabled by default</a> though.</p> <p>If you can use it, you can look at <a href="http://is.php.net/manual/en/function.ldap-search.php" rel="nofollow">ldap_search()</a></p> http://stackoverflow.com/questions/1721071/hi-i-am-new-in-the-field-of-programming/1721081#1721081 3 Answer by Ólafur Waage for Hi! I am new in the Field of Programming? Ólafur Waage 2009-11-12T09:44:41Z 2009-11-12T09:44:41Z <p>Check out the articles on the right on <a href="http://joelonsoftware.com/" rel="nofollow">Joel Spolsky.</a>'s site.</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1714617#1714617 9 Answer by Ólafur Waage for What's your take on the programming language Go? Ólafur Waage 2009-11-11T11:31:15Z 2009-11-11T11:31:15Z <p>Hello World compiles to a bit over 500KB on a linux machine. How will a system designed by this look like where simple tools are half a MB in size.</p> http://stackoverflow.com/questions/1711492/what-are-the-different-types-of-keys-in-rdbms-with-example/1711506#1711506 1 Answer by Ólafur Waage for What are the Different types of Keys in RDBMS ?With example.. Ólafur Waage 2009-11-10T21:54:28Z 2009-11-10T21:54:28Z <p>From <a href="http://www.coders2020.com/what-are-the-different-types-of-keys-in-rdbms" rel="nofollow">here</a> and <a href="http://wiki.answers.com/Q/What%5Fare%5Fdifferent%5Ftypes%5Fof%5Fkeys%5Fin%5Frdbms%5Fwith%5Fexamples" rel="nofollow">here</a>: (after i googled your title)</p> <blockquote> <ul> <li>Alternate key - An alternate key is any candidate key which is not selected to be the primary key</li> <li>Candidate key - A candidate key is a field or combination of fields that can act as a primary key field for that table to uniquely identify each record in that table.</li> <li>Compound key - compound key (also called a composite key or concatenated key) is a key that consists of 2 or more attributes.</li> <li>Primary key - a primary key is a value that can be used to identify a unique row in a table. Attributes are associated with it. Examples of primary keys are Social Security numbers (associated to a specific person) or ISBNs (associated to a specific book). In the relational model of data, a primary key is a candidate key chosen as the main method of uniquely identifying a tuple in a relation.</li> <li>Superkey - A superkey is defined in the relational model as a set of attributes of a relation variable (relvar) for which it holds that in all relations assigned to that variable there are no two distinct tuples (rows) that have the same values for the attributes in this set. Equivalently a superkey can also be defined as a set of attributes of a relvar upon which all attributes of the relvar are functionally dependent.</li> <li>Foreign key - a foreign key (FK) is a field or group of fields in a database record that points to a key field or group of fields forming a key of another database record in some (usually different) table. Usually a foreign key in one table refers to the primary key (PK) of another table. This way references can be made to link information together and it is an essential part of database normalization</li> </ul> </blockquote> http://stackoverflow.com/questions/1692839/what-is-the-difference-between-and-operator/1692846#1692846 4 Answer by Ólafur Waage for What is the difference between ~ and ! operator? Ólafur Waage 2009-11-07T12:16:24Z 2009-11-07T16:31:51Z <p>~ is the negation operator. It negates bits from true to false or false to true. Used only with integral data types (int, short, byte, char, long).</p> <p>! flips the value of a boolean. This will work on anything that will result in a logical value. So if you have foo &lt; 5 you can do !(foo &lt; 5) and the result will be the opposite.</p> http://stackoverflow.com/questions/1692942/focus-a-cursor-to-submit-button/1692954#1692954 0 Answer by Ólafur Waage for focus a cursor to submit button? Ólafur Waage 2009-11-07T12:55:31Z 2009-11-07T12:55:31Z <p>You can focus anything with the focus() javascript method. This has nothing to do with PHP.</p> <pre><code>document.getElementById('ID_Name_Of_Your_Button').focus(); </code></pre> http://stackoverflow.com/questions/1692934/why-isnt-this-php-working-i-get-undefined-index/1692938#1692938 1 Answer by Ólafur Waage for why isnt this php working, i get undefined index...? Ólafur Waage 2009-11-07T12:50:27Z 2009-11-07T12:50:27Z <p>The form needs to be like this</p> <pre><code>&lt;form enctype="multipart/form-data" action="__URL__" method="POST"&gt; </code></pre> <p>Check out <a href="http://is.php.net/manual/en/features.file-upload.post-method.php" rel="nofollow">this PHP.net documentation</a> for more information.</p> http://stackoverflow.com/questions/1692916/where-can-i-find-the-meanings-of-msdn-library-icons/1692929#1692929 2 Answer by Ólafur Waage for Where can I find the meanings of MSDN library icons? Ólafur Waage 2009-11-07T12:47:11Z 2009-11-07T12:47:11Z <p>The list is <a href="http://msdn.microsoft.com/en-us/library/y47ychfe.aspx" rel="nofollow">here.</a> You can also use <a href="http://msdn.microsoft.com/en-us/library/system.string%5Fmembers.aspx" rel="nofollow">this list</a> to see how it fits into a library.</p> http://stackoverflow.com/questions/1692908/jquery-submit-problem/1692920#1692920 0 Answer by Ólafur Waage for jQuery .submit problem Ólafur Waage 2009-11-07T12:43:42Z 2009-11-07T12:43:42Z <p>If the submit form is named like this</p> <pre><code>&lt;form method="POST" id="the_waffle_form"&gt; </code></pre> <p>Then you can submit it by doing this.</p> <pre><code>$("#the_waffle_form").submit(); </code></pre> <p>Check out the <a href="http://docs.jquery.com/Events/submit" rel="nofollow">documentation</a> for more great examples.</p> http://stackoverflow.com/questions/822768/what-are-the-pitfalls-of-a-java-noob 9 What are the pitfalls of a Java noob? Ólafur Waage 2009-05-05T00:27:07Z 2009-11-07T11:10:23Z <p>I've gone through a few Java questions on SO. And I must say the content here is <a href="http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right">pretty well written</a> and the Java guys on SO can really pump out the answers.</p> <p>But what I always found was Java answers for Java people. Which is great on its own, but I'm a Java noob. So I don't really care for the workings of <a href="http://stackoverflow.com/questions/15496/hidden-features-of-java/42686#42686">"Joint union in type parameter variance"</a>. It's probably handy down the line but for now.. it's not.</p> <p>So Java for a noob (coming from PHP and Python) what are the cheatcodes?</p> <p>If you could link to an SO answer (which is probably out there but I couldn't find) or write up what are the things Java does differently than other languages? (on a basic level)</p> <p>Some might call these the Java Gotchas (I couldn't find the official one though)</p> http://stackoverflow.com/questions/1691461/what-do-these-php-mbstring-settings-do/1691479#1691479 1 Answer by Ólafur Waage for What do these PHP mbstring settings do? Ólafur Waage 2009-11-07T00:47:47Z 2009-11-07T00:47:47Z <p>You can change mbstring.language to whatever language you are using with. <a href="http://marc.info/?l=php-i18n&amp;m=107060346828334&amp;w=2" rel="nofollow">(Source)</a></p> <p>language</p> <pre><code>; language for internal character representation. mbstring.language = Neutral ; Set default language to neutral(UTF-8) (default) mbstring.language = English mbstring.language = Japanese mbstring.language = Korean ;For Korean market later </code></pre> <p>http_input</p> <pre><code>; http input encoding. mbstring.http_input = pass mbstring.http_input = auto mbstring.http_input = UTF-8 mbstring.http_input = UTF-8, SJIS, EUC-JP </code></pre> <p>http_output</p> <pre><code>; http output encoding. mb_output_handler must be ; registered as output buffer to function mbstring.http_output = pass mbstring.http_output = UTF-8 </code></pre> <p>encoding translation</p> <pre><code>; enable automatic encoding translation accoding to ; mbstring.internal_encoding setting. Input chars are ; converted to internal encoding by setting this to On. ; Note: Do _not_ use automatic encoding translation for ; portable libs/applications. mbstring.encoding_translation = On </code></pre> http://stackoverflow.com/questions/1688711/can-we-alias-a-function-in-php/1688809#1688809 5 Answer by Ólafur Waage for Can we alias a function in php ? Ólafur Waage 2009-11-06T16:42:33Z 2009-11-06T16:42:33Z <p>You can look at <a href="http://fabien.potencier.org/article/17/on-php-5-3-lambda-functions-and-closures" rel="nofollow">lambdas also</a> if you have PHP 5.3</p> <pre><code>$wait = function($v) { return sleep($v); }; </code></pre> http://stackoverflow.com/questions/1688647/how-to-set-a-timer-in-php/1688668#1688668 5 Answer by Ólafur Waage for How to set a timer in PHP? Ólafur Waage 2009-11-06T16:23:07Z 2009-11-06T16:23:07Z <p><a href="http://is.php.net/manual/en/function.sleep.php" rel="nofollow">sleep()</a> will wait for you. It's so nice. :)</p> http://stackoverflow.com/questions/1661863/pdo-mysql-how-to-know-if-insert-was-successful/1661878#1661878 4 Answer by Ólafur Waage for PDO mysql: How to know if insert was successful Ólafur Waage 2009-11-02T15:16:45Z 2009-11-02T15:16:45Z <p>execute() returns true on success. There is also PDOStatement->errorCode() which you can check for errors.</p> http://stackoverflow.com/questions/132798/what-should-every-programmer-know/132819#132819 Comment by Ólafur Waage on What should every programmer know? Ólafur Waage 2009-11-21T14:45:48Z 2009-11-21T14:45:48Z +1 Enjoy your gold badge :P http://stackoverflow.com/questions/1753562/mysql-inner-join-with-2-on-clauses/1753571#1753571 Comment by Ólafur Waage on MYSQL Inner Join with 2 ON Clauses Ólafur Waage 2009-11-18T04:13:10Z 2009-11-18T04:13:10Z I've updated the answer. http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase/664390#664390 Comment by Ólafur Waage on What is your best pseudo-code phrase? Ólafur Waage 2009-11-15T15:25:10Z 2009-11-15T15:25:10Z So nobody noticed that the last function is an infinitely recursive function. http://stackoverflow.com/questions/1736110/what-is-the-best-language-for-game-programming/1736118#1736118 Comment by Ólafur Waage on What is the best language for game programming? Ólafur Waage 2009-11-15T00:44:18Z 2009-11-15T00:44:18Z OpenGL is not a language, it's a library. http://stackoverflow.com/questions/1734830/which-problem-would-you-like-to-solve-given-enough-resources Comment by Ólafur Waage on Which problem would you like to solve given enough resources? Ólafur Waage 2009-11-14T17:06:55Z 2009-11-14T17:06:55Z No, its a real question, just subjective. http://stackoverflow.com/questions/1729699/how-do-i-correctly-use-sdlfreesurface-when-dealing-with-a-vector-of-surfaces/1730718#1730718 Comment by Ólafur Waage on How do I correctly use SDL_FreeSurface when dealing with a vector of surfaces. Ólafur Waage 2009-11-13T22:15:33Z 2009-11-13T22:15:33Z I've accepted this solution since I'm going to use something like this later on the road. Thanks. http://stackoverflow.com/questions/1729699/how-do-i-correctly-use-sdlfreesurface-when-dealing-with-a-vector-of-surfaces/1730069#1730069 Comment by Ólafur Waage on How do I correctly use SDL_FreeSurface when dealing with a vector of surfaces. Ólafur Waage 2009-11-13T16:00:51Z 2009-11-13T16:00:51Z I think this may lead me in the right direction. I'm working on the code a bit since adding this doesn't work 100% (crashes when I fire the 2nd shot) http://stackoverflow.com/questions/1724255/why-does-2-2-in-javascript/1724280#1724280 Comment by Ólafur Waage on Why does 2 == [2] in JavaScript? Ólafur Waage 2009-11-12T18:35:31Z 2009-11-12T18:35:31Z Hmm it appears so, my bad. http://stackoverflow.com/questions/1724255/why-does-2-2-in-javascript/1724306#1724306 Comment by Ólafur Waage on Why does 2 == [2] in JavaScript? Ólafur Waage 2009-11-12T18:23:03Z 2009-11-12T18:23:03Z he uses === in his example. http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1714617#1714617 Comment by Ólafur Waage on What's your take on the programming language Go? Ólafur Waage 2009-11-11T14:14:37Z 2009-11-11T14:14:37Z It's the runtime being added to the executable. So libraries won't have this problem. http://stackoverflow.com/questions/1711492/what-are-the-different-types-of-keys-in-rdbms-with-example/1711621#1711621 Comment by Ólafur Waage on What are the Different types of Keys in RDBMS ?With example.. Ólafur Waage 2009-11-10T22:17:25Z 2009-11-10T22:17:25Z good call. :) . http://stackoverflow.com/questions/1704105/why-not-the-interpreted-languages Comment by Ólafur Waage on Why Not The Interpreted Languages? Ólafur Waage 2009-11-09T21:56:50Z 2009-11-09T21:56:50Z Your default != other's default. There's a reason why microsoft went to court over IE being included in windows. http://stackoverflow.com/questions/1694900/what-language-will-skynet-be-programmed-in Comment by Ólafur Waage on What Language Will Skynet be Programmed In? Ólafur Waage 2009-11-08T00:40:06Z 2009-11-08T00:40:06Z PHP obviously. :P http://stackoverflow.com/questions/1694274/iteration-through-arrays-in-arrays-php Comment by Ólafur Waage on Iteration through arrays in arrays PHP Ólafur Waage 2009-11-07T20:21:06Z 2009-11-07T20:21:06Z mmmmmmm emails. http://stackoverflow.com/questions/1692839/what-is-the-difference-between-and-operator/1692846#1692846 Comment by Ólafur Waage on What is the difference between ~ and ! operator? Ólafur Waage 2009-11-07T16:32:25Z 2009-11-07T16:32:25Z Fixed, sorry, i'm from a more of a c world.