User Ikke - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:58:58Zhttp://stackoverflow.com/feeds/user/20261http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795754/how-to-close-a-window-without-confirm-dialog/1795766#17957662Answer by Ikke for How to close a window without confirm dialog?Ikke2009-11-25T09:41:02Z2009-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#17957463Answer by Ikke for Find all CSS styles used on websiteIkke2009-11-25T09:35:53Z2009-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#17851614Answer by Ikke for PHP function declaration: function example(&$Test) { } Explain &?Ikke2009-11-23T18:48:10Z2009-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#17833070Answer by Ikke for Clear cookies on browser close Ikke2009-11-23T14:06:53Z2009-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#17824831Answer by Ikke for Finding GIT installer for Ubuntu.Ikke2009-11-23T11:13:05Z2009-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#17820864Answer by Ikke for What is EOF in the C programming language?Ikke2009-11-23T09:41:32Z2009-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#17820161Answer by Ikke for image attachement in input fieldsIkke2009-11-23T09:27:30Z2009-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><form enctype="multipart/form-data" action="uploader.php" method="POST">
</code></pre>
<p>and then put a file input in the form:</p>
<pre><code> <input name="uploadedfile" type="file" />
</code></pre>
<p>The php side is explained at the link</p>
http://stackoverflow.com/questions/1778907/convert-dates-to-hours/1778930#17789300Answer by Ikke for Convert dates to hoursIkke2009-11-22T14:56:52Z2009-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#17789090Answer by Ikke for php - Should I encrypt email addresses?Ikke2009-11-22T14:50:57Z2009-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#17788900Answer by Ikke for How do I determine which kind of tree data structure to choose?Ikke2009-11-22T14:46:13Z2009-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#17786921Answer by Ikke for Method accessing protected property of another object of the same classIkke2009-11-22T13:26:48Z2009-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#17713253Answer by Ikke for Is there really a performance hit when catching exceptionsIkke2009-11-20T15:40:03Z2009-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#17566241Answer by Ikke for When you're the origin repo in git, how do you do a local pull?Ikke2009-11-18T15:04:38Z2009-11-18T21:00:15Z<p>I guess there is not remote set.</p>
<p>With <code>git remote add <remotename> <address></code> you can add a remote repository. <code><remotename></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#17566570Answer by Ikke for How to adjust height of a DIV with respect to other DIV ?Ikke2009-11-18T15:08:25Z2009-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#17559761Answer by Ikke for What's wrong with word 'recursion' in Google Search?Ikke2009-11-18T13:30:18Z2009-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#17354223Answer by Ikke for Why isn't the jQuery Color Picker Plug-in working for me in Firefox?Ikke2009-11-14T19:57:40Z2009-11-14T19:57:40Z<p>try <code><script type="text/javascript">..</script></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#17310910Answer by Ikke for CSS - position fixed and bottomIkke2009-11-13T18:44:20Z2009-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#17298050Answer by Ikke for Installing Google Go on Windows XP?Ikke2009-11-13T15:11:44Z2009-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#17282782Answer by Ikke for Calling JavaScript functions contained in .js fileIkke2009-11-13T10:00:01Z2009-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#172161911Answer by Ikke for Regex match A-Z, a-z, 0-9, _ and .Ikke2009-11-12T11:36:18Z2009-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#17143730Answer by Ikke for Return an empty IEnumerator Ikke2009-11-11T10:38:44Z2009-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#17137700Answer by Ikke for CSS need div to extend it's containers widthIkke2009-11-11T08:16:46Z2009-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#17084232Answer by Ikke for How to start MySQL with --skip-grant-tables?Ikke2009-11-10T14:38:04Z2009-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#17019913Answer by Ikke for clear all divs' contents inside a divIkke2009-11-09T16:06:28Z2009-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#17014312Answer by Ikke for Based on construct create or delete some methodsIkke2009-11-09T14:42:35Z2009-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#17002260Answer by Ikke for Unable to create actions different from indexIkke2009-11-09T10:32:21Z2009-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#16746232Answer by Ikke for Can Apache serve a default file instead of a 404?Ikke2009-11-04T15:41:24Z2009-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#16734812Answer by Ikke for This is useful but I'm not sure why it worksIkke2009-11-04T12:25:43Z2009-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#16730410Answer by Ikke for tag replacementIkke2009-11-04T10:53:17Z2009-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-net0Labelsize appears bigger in VB.NetIkke2009-03-13T10:17:28Z2009-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-namesComment by Ikke on Why Use Underscores In C/C++ Names?Ikke2009-11-25T22:01:55Z2009-11-25T22:01:55ZWhy is it changed back to underlines? They're called underscores.http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injectionComment by Ikke on Does this code prevent SQL injection?Ikke2009-11-25T21:51:36Z2009-11-25T21:51:36Z+1 for the updatehttp://stackoverflow.com/questions/1797875/is-newline-n-not-working-for-innerhtml-in-ie/1797901#1797901Comment by Ikke on is newline (\n) not working for innerHTML in IE?Ikke2009-11-25T15:59:13Z2009-11-25T15:59:13ZIt's in a pre block. Whitespace should be preserved.http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108661#108661Comment by Ikke on What is your single favorite development tool?Ikke2009-11-25T15:44:41Z2009-11-25T15:44:41ZVista / Win7 has a launcher intergrated in the startmenuhttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1776946#1776946Comment by Ikke on What's your most controversial programming opinion?Ikke2009-11-24T21:15:43Z2009-11-24T21:15:43ZI guess this is not very controversial.http://stackoverflow.com/questions/1792838/enable-ident-string-for-git-reposComment by Ikke on Enable ident string for Git reposIkke2009-11-24T20:51:08Z2009-11-24T20:51:08ZYou mean like SVN does?http://stackoverflow.com/questions/1788711/why-are-jon-skeet-and-skeet-jon-two-seperate-peopleComment by Ikke on Why are Jon Skeet and Skeet Jon two seperate people?Ikke2009-11-24T08:41:46Z2009-11-24T08:41:46ZThis 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#1783307Comment by Ikke on Clear cookies on browser close Ikke2009-11-23T14:41:01Z2009-11-23T14:41:01ZIt really depends on how the browser has implemented it.http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783186#1783186Comment by Ikke on Examples of vulnerable PHP code?Ikke2009-11-23T13:43:35Z2009-11-23T13:43:35ZYou should also show what's the rigt way to do templates.http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783166#1783166Comment by Ikke on Examples of vulnerable PHP code?Ikke2009-11-23T13:41:57Z2009-11-23T13:41:57ZThe 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-googleComment by Ikke on Sitemap Stackoverflow and googleIkke2009-11-23T08:13:59Z2009-11-23T08:13:59ZThis belongs on <a href="http://meta.stackoverflow.com" rel="nofollow">meta.stackoverflow.com</a>http://stackoverflow.com/questions/1779205/create-temporary-file-and-auto-removedComment by Ikke on Create temporary file and auto removedIkke2009-11-22T16:43:29Z2009-11-22T16:43:29ZHow long should the file be kept?http://stackoverflow.com/questions/1778695/installing-php-through-aptitude-on-ubuntu-serverComment by Ikke on installing php through aptitude on ubuntu serverIkke2009-11-22T13:31:07Z2009-11-22T13:31:07ZI think this belongs on superuser.http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1206339#1206339Comment by Ikke on What are things that make a programmer's life miserable?Ikke2009-11-20T11:19:48Z2009-11-20T11:19:48Z+1 I'm mostly working alone on my internship.http://stackoverflow.com/questions/1763032/html-css-table-with-gridlinesComment by Ikke on HTML / CSS table with GRIDLINESIkke2009-11-19T12:42:43Z2009-11-19T12:42:43ZWhat do you mean by gridlines?