User Ikke - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:58:58Z http://stackoverflow.com/feeds/user/20261 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795754/how-to-close-a-window-without-confirm-dialog/1795766#1795766 2 Answer by Ikke for How to close a window without confirm dialog? Ikke 2009-11-25T09:41:02Z 2009-11-25T09:41:02Z <p>I think that's not without a reason. People don't like windows being closed without notice.</p> http://stackoverflow.com/questions/1795735/find-all-css-styles-used-on-website/1795746#1795746 3 Answer by Ikke for Find all CSS styles used on website Ikke 2009-11-25T09:35:53Z 2009-11-25T09:35:53Z <p>For firefox there is an add-in called <a href="http://www.sitepoint.com/dustmeselectors/" rel="nofollow">dust-me-selectors</a>. If you provide a sitemap, it will find all unused css styles.</p> http://stackoverflow.com/questions/1785128/php-function-declaration-function-exampletest-explain/1785161#1785161 4 Answer by Ikke for PHP function declaration: function example(&$Test) { } Explain &? Ikke 2009-11-23T18:48:10Z 2009-11-23T18:48:10Z <p>It makes the parameter <a href="http://nl.php.net/manual/en/language.references.pass.php" rel="nofollow">pass by reference</a>, instead of pass by value. </p> <p>From php5 and above, it is not necessary to pass objects by reference anymore.</p> http://stackoverflow.com/questions/1783302/clear-cookies-on-browser-close/1783307#1783307 0 Answer by Ikke for Clear cookies on browser close Ikke 2009-11-23T14:06:53Z 2009-11-23T14:06:53Z <p>Sessions are usualy used for this. According to <a href="http://en.wikipedia.org/wiki/HTTP%5Fcookie#Implementation" rel="nofollow">Wikipedia</a>, when no expiration date is set, a cookie is cleared when the user closes the browser.</p> <blockquote> <p>The cookie setter can specify a deletion date, in which case the cookie will be removed on that date. If the cookie setter does not specify a date, the cookie is removed once the user quits his or her browser.</p> </blockquote> http://stackoverflow.com/questions/1782465/finding-git-installer-for-ubuntu/1782483#1782483 1 Answer by Ikke for Finding GIT installer for Ubuntu. Ikke 2009-11-23T11:13:05Z 2009-11-23T11:13:05Z <p><code>sudo apt-get install git-core</code> or with the Synaptic Package Manager</p> http://stackoverflow.com/questions/1782080/what-is-eof-in-the-c-programming-language/1782086#1782086 4 Answer by Ikke for What is EOF in the C programming language? Ikke 2009-11-23T09:41:32Z 2009-11-23T09:55:53Z <p><a href="http://en.wikipedia.org/wiki/End-of-file" rel="nofollow">EOF</a> means end of file. It's a sign that the end of a file is reached, and that there will be no data anymore.</p> <p><strong>Edit:</strong></p> <p>I stand corrected. In this case it's not an end of file. As mentioned, it is passed when CTRL+d (linux) or CTRL+z (windows) is passed.</p> http://stackoverflow.com/questions/1781994/image-attachement-in-input-fields/1782016#1782016 1 Answer by Ikke for image attachement in input fields Ikke 2009-11-23T09:27:30Z 2009-11-23T09:27:30Z <p>Have a look at <a href="http://www.tizag.com/phpT/fileupload.php" rel="nofollow">this</a> link. It explains the basics.</p> <p>The most important things is putting the right enctype on the form like this:</p> <pre><code>&lt;form enctype="multipart/form-data" action="uploader.php" method="POST"&gt; </code></pre> <p>and then put a file input in the form:</p> <pre><code> &lt;input name="uploadedfile" type="file" /&gt; </code></pre> <p>The php side is explained at the link</p> http://stackoverflow.com/questions/1778907/convert-dates-to-hours/1778930#1778930 0 Answer by Ikke for Convert dates to hours Ikke 2009-11-22T14:56:52Z 2009-11-22T14:56:52Z <p>TheGrandWazoo mentioned a method for php 5.3>. For lower versions you can devide the number of seconds between the two dates with the number of seconds in a day to find the number of days. </p> <p>For days, you do:</p> <pre><code>$days = floor(($now_date - $key_date) / (60 * 60 * 24)) </code></pre> <p>If you want to know how many hours are still left, you can use the modulo operator (%)</p> <pre><code>$hours = floor((($now_date - $key_date) % * (60 * 60 * 24)) / 60 * 60) </code></pre> http://stackoverflow.com/questions/1778897/php-should-i-encrypt-email-addresses/1778909#1778909 0 Answer by Ikke for php - Should I encrypt email addresses? Ikke 2009-11-22T14:50:57Z 2009-11-22T14:50:57Z <p>MD5 is an hash, which makes it allmost inpossible to get the original value back. You should use an encryption instead of an hash if you want to get the email back.</p> http://stackoverflow.com/questions/1778871/how-do-i-determine-which-kind-of-tree-data-structure-to-choose/1778890#1778890 0 Answer by Ikke for How do I determine which kind of tree data structure to choose? Ikke 2009-11-22T14:46:13Z 2009-11-22T14:46:13Z <p>Each tree has specific characteristics which make them usefull in a certain way. You should compare there characteristics with the needs you have.</p> http://stackoverflow.com/questions/1778675/method-accessing-protected-property-of-another-object-of-the-same-class/1778692#1778692 1 Answer by Ikke for Method accessing protected property of another object of the same class Ikke 2009-11-22T13:26:48Z 2009-11-22T13:26:48Z <p>This is intended. It's even possible to access the private members of the same class. So think of the modifiers to be class wise modifiers, not objectwise modifiers.</p> <p>PHP is not the only language that has this feature. Java for example has this too.</p> http://stackoverflow.com/questions/1771216/is-there-really-a-performance-hit-when-catching-exceptions/1771325#1771325 3 Answer by Ikke for Is there really a performance hit when catching exceptions Ikke 2009-11-20T15:40:03Z 2009-11-20T15:40:03Z <p><a href="http://stackoverflow.com/questions/161942/how-slow-are-net-exceptions/162069#162069">Here</a> is an answer on Stackoverflow which shortly explains why.</p> http://stackoverflow.com/questions/1756600/when-youre-the-origin-repo-in-git-how-do-you-do-a-local-pull/1756624#1756624 1 Answer by Ikke for When you're the origin repo in git, how do you do a local pull? Ikke 2009-11-18T15:04:38Z 2009-11-18T21:00:15Z <p>I guess there is not remote set.</p> <p>With <code>git remote add &lt;remotename&gt; &lt;address&gt;</code> you can add a remote repository. <code>&lt;remotename&gt;</code> is just the name you give it, and addresss is the url to the repository you want to pull from.</p> http://stackoverflow.com/questions/1756618/how-to-adjust-height-of-a-div-with-respect-to-other-div/1756657#1756657 0 Answer by Ikke for How to adjust height of a DIV with respect to other DIV ? Ikke 2009-11-18T15:08:25Z 2009-11-18T15:08:25Z <p>Normaly this is done with <a href="http://www.alistapart.com/articles/fauxcolumns/" rel="nofollow">faux columns</a>. But the background images is a bit more complex, so I suspect it wouldn't look nice.</p> http://stackoverflow.com/questions/1755964/whats-wrong-with-word-recursion-in-google-search/1755976#1755976 1 Answer by Ikke for What's wrong with word 'recursion' in Google Search? Ikke 2009-11-18T13:30:18Z 2009-11-18T13:30:18Z <p>It's a live example of recursion for the ones who don't get it.</p> http://stackoverflow.com/questions/1735419/why-isnt-the-jquery-color-picker-plug-in-working-for-me-in-firefox/1735422#1735422 3 Answer by Ikke for Why isn't the jQuery Color Picker Plug-in working for me in Firefox? Ikke 2009-11-14T19:57:40Z 2009-11-14T19:57:40Z <p>try <code>&lt;script type="text/javascript"&gt;..&lt;/script&gt;</code></p> <p>The first time you use it, but the second time you use <code>text/jscript</code></p> http://stackoverflow.com/questions/1731077/css-position-fixed-and-bottom/1731091#1731091 0 Answer by Ikke for CSS - position fixed and bottom Ikke 2009-11-13T18:44:20Z 2009-11-13T18:44:20Z <p>put</p> <pre><code>html { height: 100%; } </code></pre> <p>in your css</p> http://stackoverflow.com/questions/1729800/installing-google-go-on-windows-xp/1729805#1729805 0 Answer by Ikke for Installing Google Go on Windows XP? Ikke 2009-11-13T15:11:44Z 2009-11-13T15:11:44Z <p>As far as I know, Go is not available for windows.</p> http://stackoverflow.com/questions/1728267/calling-javascript-functions-contained-in-js-file/1728278#1728278 2 Answer by Ikke for Calling JavaScript functions contained in .js file Ikke 2009-11-13T10:00:01Z 2009-11-13T10:00:01Z <ol> <li>Only ie supports so called behaviours in css. So generaly speaking, it's not possible.</li> <li>Functions inside other .js files just live in the global namespace. You can just call them by their name.</li> </ol> http://stackoverflow.com/questions/1721602/regex-match-a-z-a-z-0-9-and/1721619#1721619 11 Answer by Ikke for Regex match A-Z, a-z, 0-9, _ and . Ikke 2009-11-12T11:36:18Z 2009-11-12T11:36:18Z <pre><code>^[A-Za-z0-9_.]+$ </code></pre> <p>From beginning until the end one or more of these characters</p> http://stackoverflow.com/questions/1714351/return-an-empty-ienumerator/1714373#1714373 0 Answer by Ikke for Return an empty IEnumerator Ikke 2009-11-11T10:38:44Z 2009-11-11T10:38:44Z <p>You can make a NullEnumerator which implements the IEnumerator interface. You can just pass an instance off the NullEnumerator.</p> <p><a href="http://www.csharp411.com/c-empty-enumerator/" rel="nofollow">here</a> is an example of an EmptyEnumerator</p> http://stackoverflow.com/questions/1713759/css-need-div-to-extend-its-containers-width/1713770#1713770 0 Answer by Ikke for CSS need div to extend it's containers width Ikke 2009-11-11T08:16:46Z 2009-11-11T08:16:46Z <p>Try setting both left and right property to 0;</p> http://stackoverflow.com/questions/1708409/how-to-start-mysql-with-skip-grant-tables/1708423#1708423 2 Answer by Ikke for How to start MySQL with --skip-grant-tables? Ikke 2009-11-10T14:38:04Z 2009-11-10T14:38:04Z <p>Mysql has a step by step manual for doing this:</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html" rel="nofollow">Reset mysql root password</a></p> http://stackoverflow.com/questions/1701973/clear-all-divs-contents-inside-a-div/1701991#1701991 3 Answer by Ikke for clear all divs' contents inside a div Ikke 2009-11-09T16:06:28Z 2009-11-09T16:06:28Z <p>If all the divs inside that masterdiv needs to be cleared, it this.</p> <pre><code>$('#masterdiv div').html(''); </code></pre> <p>else, you need to iterate on all the div children of #masterdiv, and check if the id starts with childdiv.</p> <pre><code>$('#masterdiv div).each( function(element){ if(element.attr('id').substr(0, 8) == "childdiv") { element.html(''); } } ); </code></pre> http://stackoverflow.com/questions/1701407/based-on-construct-create-or-delete-some-methods/1701431#1701431 2 Answer by Ikke for Based on construct create or delete some methods Ikke 2009-11-09T14:42:35Z 2009-11-09T15:17:39Z <p>You can use the factory pattern to create an instance of a subclass of the class. Each subclass has the methods it needs. The superclass only has the methods every subclass needs.</p> <pre><code>class User { function foo(){} function foo1(){} static function constructUser() { if(self::isValidUser()) { return new ValidUser(); } else { return new User(); } } static function isValidUser() { //... } } class ValidUser extends User { function addItem(){} } $user = User::constructUser(); </code></pre> http://stackoverflow.com/questions/1700178/unable-to-create-actions-different-from-index/1700226#1700226 0 Answer by Ikke for Unable to create actions different from index Ikke 2009-11-09T10:32:21Z 2009-11-09T10:32:21Z <p>Do you use pretty urls? Then it's better to use absolute url's. That way the path is allways correct.</p> http://stackoverflow.com/questions/1674603/can-apache-serve-a-default-file-instead-of-a-404/1674623#1674623 2 Answer by Ikke for Can Apache serve a default file instead of a 404? Ikke 2009-11-04T15:41:24Z 2009-11-04T15:41:24Z <p>What kind of file? Is it a static file? With Apache you can set <a href="http://www.webreference.com/programming/apache%5Ferrors/" rel="nofollow">custom error pages</a>.</p> http://stackoverflow.com/questions/1673449/this-is-useful-but-im-not-sure-why-it-works/1673481#1673481 2 Answer by Ikke for This is useful but I'm not sure why it works Ikke 2009-11-04T12:25:43Z 2009-11-04T12:25:43Z <p>This is what short-circuit means. When the first operand yields false, the second part does not need to be evaluated, because the result will be false anyways.</p> http://stackoverflow.com/questions/1673004/tag-replacement/1673041#1673041 0 Answer by Ikke for tag replacement Ikke 2009-11-04T10:53:17Z 2009-11-04T11:43:20Z <p>You can use the <a href="http://docs.jquery.com/Manipulation/replaceWith#content" rel="nofollow">replaceWith</a> or the <a href="http://docs.jquery.com/Manipulation/replaceAll#selector" rel="nofollow">replaceAll</a> functions to replace elements. </p> <p>You have to manually place the content from the old element to the new element.</p> <pre><code>$('fieldset').each(function(object){ var html = this.html(); this.replaceWith('div').html(html) }); </code></pre> <p>Something like this. The code is not tested.</p> http://stackoverflow.com/questions/642063/labelsize-appears-bigger-in-vb-net 0 Labelsize appears bigger in VB.Net Ikke 2009-03-13T10:17:28Z 2009-11-04T11:00:03Z <p>I'm trying to stack a few lists on top of each other. But the label.size.height appears to be bigger then the label itself.</p> <p>When i set the borderstyle to fixedsingle, i see the border around the text. But the height is bigger, so there comes a space between one label and the next.</p> <p>I have tried to set margin and padding to 0 without result.</p> <p>Exemple: label.size.height return 23, when the height actually is something around 15.</p> <p>Does someone knows how i get the right size?</p> <p><b>Edit:</b> When i explicitly set the height of the lable, the problem is solved. Is this some problem with autosize?</p> http://stackoverflow.com/questions/1800211/why-use-underscores-in-c-c-names Comment by Ikke on Why Use Underscores In C/C++ Names? Ikke 2009-11-25T22:01:55Z 2009-11-25T22:01:55Z Why is it changed back to underlines? They're called underscores. http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection Comment by Ikke on Does this code prevent SQL injection? Ikke 2009-11-25T21:51:36Z 2009-11-25T21:51:36Z +1 for the update http://stackoverflow.com/questions/1797875/is-newline-n-not-working-for-innerhtml-in-ie/1797901#1797901 Comment by Ikke on is newline (\n) not working for innerHTML in IE? Ikke 2009-11-25T15:59:13Z 2009-11-25T15:59:13Z It's in a pre block. Whitespace should be preserved. http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108661#108661 Comment by Ikke on What is your single favorite development tool? Ikke 2009-11-25T15:44:41Z 2009-11-25T15:44:41Z Vista / Win7 has a launcher intergrated in the startmenu http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1776946#1776946 Comment by Ikke on What's your most controversial programming opinion? Ikke 2009-11-24T21:15:43Z 2009-11-24T21:15:43Z I guess this is not very controversial. http://stackoverflow.com/questions/1792838/enable-ident-string-for-git-repos Comment by Ikke on Enable ident string for Git repos Ikke 2009-11-24T20:51:08Z 2009-11-24T20:51:08Z You mean like SVN does? http://stackoverflow.com/questions/1788711/why-are-jon-skeet-and-skeet-jon-two-seperate-people Comment by Ikke on Why are Jon Skeet and Skeet Jon two seperate people? Ikke 2009-11-24T08:41:46Z 2009-11-24T08:41:46Z This definitely belongs on <a href="http://meta.stackoverflow.com" rel="nofollow">meta.stackoverflow.com</a> http://stackoverflow.com/questions/1783302/clear-cookies-on-browser-close/1783307#1783307 Comment by Ikke on Clear cookies on browser close Ikke 2009-11-23T14:41:01Z 2009-11-23T14:41:01Z It really depends on how the browser has implemented it. http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783186#1783186 Comment by Ikke on Examples of vulnerable PHP code? Ikke 2009-11-23T13:43:35Z 2009-11-23T13:43:35Z You should also show what's the rigt way to do templates. http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783166#1783166 Comment by Ikke on Examples of vulnerable PHP code? Ikke 2009-11-23T13:41:57Z 2009-11-23T13:41:57Z The header could be ignored, and the php script is still executing. The private function still executes, even if the user is not logged in. http://stackoverflow.com/questions/1781727/sitemap-stackoverflow-and-google Comment by Ikke on Sitemap Stackoverflow and google Ikke 2009-11-23T08:13:59Z 2009-11-23T08:13:59Z This belongs on <a href="http://meta.stackoverflow.com" rel="nofollow">meta.stackoverflow.com</a> http://stackoverflow.com/questions/1779205/create-temporary-file-and-auto-removed Comment by Ikke on Create temporary file and auto removed Ikke 2009-11-22T16:43:29Z 2009-11-22T16:43:29Z How long should the file be kept? http://stackoverflow.com/questions/1778695/installing-php-through-aptitude-on-ubuntu-server Comment by Ikke on installing php through aptitude on ubuntu server Ikke 2009-11-22T13:31:07Z 2009-11-22T13:31:07Z I think this belongs on superuser. http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1206339#1206339 Comment by Ikke on What are things that make a programmer's life miserable? Ikke 2009-11-20T11:19:48Z 2009-11-20T11:19:48Z +1 I'm mostly working alone on my internship. http://stackoverflow.com/questions/1763032/html-css-table-with-gridlines Comment by Ikke on HTML / CSS table with GRIDLINES Ikke 2009-11-19T12:42:43Z 2009-11-19T12:42:43Z What do you mean by gridlines?