User chaos - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:52:22Z http://stackoverflow.com/feeds/user/47529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1677997/rewriterule-with-string-starting-http/1678062#1678062 1 Answer by chaos for RewriteRule with string starting "http://" chaos 2009-11-05T02:59:27Z 2009-11-05T02:59:27Z <p>Well, that pattern you're repeating should be <code>([^/]+\.[^/.]+)</code>, but that's only going to be important when DNS names with more than two elements show up.</p> <p>Your main problem is probably that the last redirect should be to <code>/check.php?domain=$1</code>. Unless <code>mod_rewrite</code> is going to choke in general because that's not a valid W3C URL. But we can hope.</p> http://stackoverflow.com/questions/1678009/php-errorlog-not-working/1678031#1678031 0 Answer by chaos for php error_log not working chaos 2009-11-05T02:54:03Z 2009-11-05T02:54:03Z <p>You also need to set <code>log_errors = On</code>.</p> http://stackoverflow.com/questions/1638503/bash-scripting-execute-and-grep-command-inside-script/1638518#1638518 3 Answer by chaos for Bash scripting - execute and grep command inside script chaos 2009-10-28T16:46:08Z 2009-10-29T16:30:48Z <p>You want <code>grep -q</code>. That's "quiet mode"; just sets status based on whether there were any matches, doesn't output anything. So:</p> <pre><code>if who | grep -q "user000"; then things; fi </code></pre> http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017 1 Answer by chaos for Determining which inputs to weigh in an evolutionary algorithm chaos 2009-10-28T18:04:55Z 2009-10-28T18:04:55Z <p>In neural networks, you can select 'interesting' potential inputs by finding the ones that have the strongest correlation, positive or negative, with the classifications you're training for. I imagine you can do similarly in other contexts.</p> http://stackoverflow.com/questions/1638950/vim-search-for-a-pattern-and-if-not-occurs-delete-line/1638995#1638995 1 Answer by chaos for Vim search for a pattern and if NOT occurs delete line chaos 2009-10-28T18:02:19Z 2009-10-28T18:02:19Z <pre><code>:v/pattern/s/.*// </code></pre> http://stackoverflow.com/questions/1638646/optimizing-mysql-query/1638692#1638692 0 Answer by chaos for Optimizing Mysql Query chaos 2009-10-28T17:10:46Z 2009-10-28T17:10:46Z <p>The left join should work great if you give <code>responses</code> a compound key on <code>pollID</code> and <code>username</code>.</p> <p>Though it's somewhat distressing that you're using a username as a key, as opposed to a numeric user ID.</p> http://stackoverflow.com/questions/1638527/php-find-element-key/1638534#1638534 3 Answer by chaos for PHP find element key chaos 2009-10-28T16:48:32Z 2009-10-28T16:48:32Z <p><a href="http://php.net/manual/en/function.array-search.php" rel="nofollow">array_search()</a></p> http://stackoverflow.com/questions/1627240/modrewrite-do-not-apply-here/1627259#1627259 2 Answer by chaos for mod_rewrite: do not apply here chaos 2009-10-26T20:50:22Z 2009-10-26T20:50:22Z <p>Make this your first rule:</p> <pre><code>RewriteRule localhost/admin - [L] </code></pre> <p>That means: match <code>localhost/admin</code>, do nothing, last rule (only if matched).</p> http://stackoverflow.com/questions/1624445/mysql-replication-restore/1624481#1624481 0 Answer by chaos for Mysql Replication Restore chaos 2009-10-26T12:18:41Z 2009-10-26T12:18:41Z <p>No. If you want replication to stop at that point, you'll have to issue a command to stop it at that time.</p> http://stackoverflow.com/questions/1621421/my-array-is-not-giving-the-correct-results/1621429#1621429 0 Answer by chaos for My array is not giving the correct results. chaos 2009-10-25T17:10:31Z 2009-10-25T17:42:32Z <pre><code>$conv = array(); foreach($nav['sidebar'] as $index =&gt; $data) foreach($data as $name =&gt; $entries) foreach($entries as $entry) $conv[$name][] = $entry; $nav['sidebar'] = $conv; </code></pre> http://stackoverflow.com/questions/1619482/what-techniques-to-avoid-conditional-branching-do-you-know/1619506#1619506 3 Answer by chaos for What techniques to avoid conditional branching do you know? chaos 2009-10-24T23:37:38Z 2009-10-24T23:37:38Z <p>The generalization of the example you give is "replace conditional evaluation with math"; conditional-branch avoidance largely boils down to that.</p> <p>What's going on with replacing <code>&amp;&amp;</code> with <code>&amp;</code> is that, since <code>&amp;&amp;</code> is short-circuit, it constitutes conditional evaluation in and of itself. <code>&amp;</code> gets you the same logical results if both sides are either 0 or 1, and isn't short-circuit. Same applies to <code>||</code> and <code>|</code> except you don't need to make sure the sides are constrained to 0 or 1 (again, for logic purposes only, i.e. you're using the result only Booleanly).</p> http://stackoverflow.com/questions/1618468/why-undefine-failed-in-m4/1618475#1618475 8 Answer by chaos for Why undefine failed in m4? chaos 2009-10-24T16:38:48Z 2009-10-24T16:44:12Z <p>You have to quote <code>foo</code> with a backtick in front and a single-quote after in order to undefine it. Otherwise, it winds up substituted and you undefine <code>0000</code>. So:</p> <pre><code>undefine(`foo') </code></pre> http://stackoverflow.com/questions/1618125/neural-networks/1618136#1618136 0 Answer by chaos for Neural Networks chaos 2009-10-24T14:22:31Z 2009-10-24T14:22:31Z <p>I found <a href="http://rads.stackoverflow.com/amzn/click/0133341860" rel="nofollow">Fausett's <em>Fundamentals of Neural Networks</em></a> very accessible.</p> http://stackoverflow.com/questions/1616603/php-check-if-certain-item-in-an-array-is-empty/1616609#1616609 5 Answer by chaos for php: check if certain item in an array is empty chaos 2009-10-24T00:40:52Z 2009-10-24T00:46:45Z <pre><code>if(empty($array['item'])) </code></pre> <p>or</p> <pre><code>if(!isset($array['item'])) </code></pre> <p>or</p> <pre><code>if(!array_key_exists('item', $array)) </code></pre> <p>depending on what <em>precisely</em> you mean by "empty". See the docs for <a href="http://php.net/manual/en/function.empty.php" rel="nofollow">empty()</a>, <a href="http://php.net/manual/en/function.isset.php" rel="nofollow">isset() </a> and <a href="http://php.net/manual/en/function.array-key-exists.php" rel="nofollow">array_key_exists()</a> as to what exactly they mean.</p> http://stackoverflow.com/questions/1616585/what-database-field-type-do-you-use-for-yes-no-entries-in-sql-buddy/1616591#1616591 1 Answer by chaos for What database field type do you use for yes/no entries in SQL Buddy? chaos 2009-10-24T00:33:17Z 2009-10-24T00:33:17Z <p>Try <code>BOOL</code>. (It's an alias for <code>TINYINT(1)</code>.)</p> <p>If the MySQL server is at least version 5.0.3, you can also use <code>BIT</code> (or <code>BIT(1)</code>, same thing).</p> <p>You'd probably benefit from checking out <a href="http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html" rel="nofollow">some of the docs</a>.</p> http://stackoverflow.com/questions/1615996/whats-wrong-with-my-regex-while-using-vi-editor/1616011#1616011 1 Answer by chaos for What's wrong with my REGEX while using VI editor? chaos 2009-10-23T21:31:11Z 2009-10-23T21:36:14Z <p>You want:</p> <pre><code>:0,$s/ width="\d\+"//gc </code></pre> <p><code>\d</code> isn't recognized inside a character class (or rather, it's recognized as the letter <code>d</code>), and <code>+</code> without a backslash isn't recognized as a metacharacter by <code>vim</code>'s BRE. You also probably want the space before <code>width</code> to be eliminated.</p> http://stackoverflow.com/questions/1613161/identical-consecutive-commit-messages-from-the-same-user/1613197#1613197 3 Answer by chaos for Identical consecutive commit messages from the same user chaos 2009-10-23T12:45:13Z 2009-10-23T12:45:13Z <p>I usually write very high-abstraction commit messages, because I don't really see the point of telling the same story that the <code>diff</code> does. That sometimes results in identical consecutive commit messages.</p> http://stackoverflow.com/questions/1609467/in-perl-is-there-a-built-in-way-to-compare-two-arrays-for-equality/1609481#1609481 12 Answer by chaos for In Perl, is there a built in way to compare two arrays for equality? chaos 2009-10-22T19:35:31Z 2009-10-22T19:40:40Z <p>Not built-in, but there is <a href="http://search.cpan.org/dist/Array-Compare/" rel="nofollow">Array::Compare</a>.</p> <p>This is one of the operations that's left out of the Perl core for what I believe are didactic reasons -- that is, if you're trying to do it, there's probably something wrong. The most illustrative example of this, I think, is the absence of a core <code>read_entire_file</code> function; basically, providing that function in the core would lead people to think it's a <em>good idea</em> to do that, but instead, Perl is designed in a way that gently nudges you toward processing files line-at-a-time, which is generally far more efficient and otherwise a better idea, but novice programmers are rarely comfortable with it and they need some encouragement to get there.</p> <p>The same applies here: there is probably a much better way to make the determination you're trying to accomplish by comparing two arrays. Not <em>necessarily</em>, but probably. So Perl is nudging you to think about other ways of accomplishing your goal.</p> http://stackoverflow.com/questions/1607962/any-excuse-for-shortcut-columns-in-a-db-schema/1607978#1607978 1 Answer by chaos for Any excuse for "shortcut" columns in a db schema? chaos 2009-10-22T15:20:32Z 2009-10-22T15:20:32Z <p>Yes. Eliminating joins can have performance implications; queries that directly back a user interface running fast enough for that interface to be usable is a consideration that trumps design purity.</p> <p>Though there's something to be said for maintaining a sort of partition between a well-normalized core schema and a set of summary tables, fed from the core tables, that back the UI.</p> http://stackoverflow.com/questions/1607948/php-syntax-help/1607965#1607965 7 Answer by chaos for Php Syntax Help chaos 2009-10-22T15:18:42Z 2009-10-22T15:18:42Z <p>You can't put <code>AND</code> conjunctions for your <code>WHERE</code> clause after an <code>ORDER BY</code>. Your <code>ORDER BY</code> clause has to come after the entirety of the <code>WHERE</code> clause.</p> http://stackoverflow.com/questions/1603469/php-how-to-pass-child-class-construct-arguments-to-parentconstruct/1603489#1603489 0 Answer by chaos for PHP: How to Pass child class __construct() arguments to parent::__construct() ? chaos 2009-10-21T20:43:33Z 2009-10-21T20:43:33Z <p>Yeah, it's pretty bad practice to make a child class that uses different constructor arguments from the parent. Especially in a language like PHP where it's poorly supported.</p> <p>Of course, the generic way to pass a set of "whatever arguments we might ever want" in PHP is to pass a single argument consisting of an array of configuration values.</p> http://stackoverflow.com/questions/1602880/should-i-allow-a-2-char-password/1602917#1602917 5 Answer by chaos for Should I allow a 2-char password? chaos 2009-10-21T19:02:27Z 2009-10-21T19:02:27Z <p>No. That's just silly.</p> <p>If your passwords are <a href="http://www.securityfocus.com/blogs/262" rel="nofollow">properly hashed and salted</a>, rainbow tables are a non-issue, incidentally.</p> http://stackoverflow.com/questions/1585358/why-does-perl-warn-me-about-using-pseudo-hashes/1585393#1585393 9 Answer by chaos for Why does Perl warn me about using pseudo-hashes? chaos 2009-10-18T16:47:36Z 2009-10-18T16:47:36Z <p>The problem isn't in that code. The problem is that <code>@arrayOfHash</code> actually contains arrayrefs, not hashrefs.</p> <p>If for some reason you can't fix <code>@arrayOfHash</code>, you can work around it by doing:</p> <pre><code>foreach my $hash (@arrayOfHash) { my %hash = @$hash; print keys %hash; } </code></pre> http://stackoverflow.com/questions/1585215/pregmatch-not-splitting-one-result/1585383#1585383 1 Answer by chaos for preg_match not splitting one result chaos 2009-10-18T16:44:45Z 2009-10-18T16:44:45Z <p>Basically, your whole methodology is made of layers of craziness that are fighting with each other. I did this and it works:</p> <pre><code>&lt;? $file = '&lt;?php include("scripts/php/auth.php"); include("scripts/php/sessions.php"); ?&gt;&lt;?php if($VERIFICATION!==1) { ?&gt;&lt;?php echo $WEBSITE; ?&gt;&lt;?php } ?&gt; &lt;/p&gt; &lt;/div&gt; &lt;div class="contentBlock"&gt; &lt;h2&gt;ACT Web Designs Group&lt;/h2&gt; &lt;p&gt;&lt;a href="http://www.actwebdesigns.co.uk" title="link to ACT Web Designs Home"&gt;www.actwebdesigns.co.uk&lt;/a&gt;&lt;br /&gt; &lt;a href="http://hosting.actwebdesigns.co.uk" title="link to ACT Web Designs Hosting Solutions"&gt;www.hosting.actwebdesigns.co.uk&lt;/a&gt; &lt;a href="http://www.plugnplaycms.co.uk.co.uk" title="link to the home of plug n play cms"&gt;www.plugnplaycms.co.uk&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="mainBodyRight"&gt; &lt;?php if(isset($_GET[\'msg\']) &amp;&amp; !empty($_GET[\'msg\'])) { echo "&lt;div class=\"contentBlock\"&gt;\n"; echo "&lt;h2&gt;".$_GET[\'h2\']."&lt;/h2&gt;"; echo " &lt;p style=\"color:".$_GET[\'color\']."\"&gt;".$_GET[\'msg\']."&lt;/p&gt;\n"; echo "&lt;/div&gt;\n"; } if($VERIFICATION==0) { issetJava("Your account needs verifying.", "javascript", "Authorisation", "red"); } elseif($VERIFICATION==1) { include("pageIncludes/install.php"); } elseif($VERIFICATION==2) { include("pageIncludes/mainPage.php"); } ?&gt;'; $str = preg_replace("#(?:\s\s+)|(?:\n)|(?:\t)|(?:\r)#", " ", $file); $dataToAdd = array(); while(preg_match("#(&lt;\?php .*?\?&gt;)#is", $str, $match)) { $dataToAdd[] = $match[1]; $PQmatch = preg_quote($match[1], "#"); $str = preg_replace("#".$PQmatch."#is", "", $str, 1); } $z=1; foreach($dataToAdd as $data) { echo "&lt;xmp&gt;".$z."-----&gt;&gt;&gt; ".$data."&lt;br /&gt;&lt;/xmp&gt;\n"; $z++; } ?&gt; </code></pre> http://stackoverflow.com/questions/1574236/should-i-find-another-job-instead-of-programmer/1574258#1574258 2 Answer by chaos for Should I find another job instead of programmer? chaos 2009-10-15T18:39:20Z 2009-10-18T03:56:58Z <p>Uhm. You don't need to change careers. You just need to change jobs. Try working someplace with a decent score on the <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">Joel Test</a>. From everything you say, you'll be a lot happier.</p> http://stackoverflow.com/questions/1583792/value-as-the-key/1583798#1583798 6 Answer by chaos for Value as the key chaos 2009-10-18T02:04:30Z 2009-10-18T02:04:30Z <pre><code>$new = array_combine(array_values($old), array_values($old)); </code></pre> http://stackoverflow.com/questions/1583526/html-slideshow-for-images/1583537#1583537 1 Answer by chaos for HTML Slideshow for images chaos 2009-10-17T23:51:14Z 2009-10-17T23:51:14Z <pre><code>var num_images = 8; var curr_image = parseInt(Math.random() * num_images) + 1); put_image(curr_image); window.setInterval(swap_image, 2000); function put_image(which) { document.getElementById('your_image').src = '/yourfolder/' + which + '.jpg'; } function swap_image() { curr_image++; if(curr_image &gt; num_images) curr_image = 1; put_image(curr_image); } </code></pre> http://stackoverflow.com/questions/1583514/shell-script-not-executed/1583518#1583518 3 Answer by chaos for shell script not executed chaos 2009-10-17T23:41:58Z 2009-10-17T23:41:58Z <p><code>source .bashrc</code> is being executed, but it only affects the shell that's running your script, not its parent shell, which is your interactive shell. In order for what you're doing to work, you would have to <code>source</code> your script (or, y'know, use <code>.</code>, which is shorter).</p> http://stackoverflow.com/questions/1583474/filter-out-rows-by-hardcoded-list-in-mysql-performance/1583508#1583508 0 Answer by chaos for Filter out rows by hardcoded list in MySQL performance chaos 2009-10-17T23:35:40Z 2009-10-17T23:35:40Z <p>Try putting your list in a temporary table as <code>temptable.ID</code> and doing</p> <pre><code>SELECT * FROM myTable m LEFT JOIN othertable t ON t.REF_ID = m.ID LEFT JOIN temptable ON m.ID = temptable.ID WHERE temptable.ID IS NULL </code></pre> http://stackoverflow.com/questions/1581106/unidentified-problem-with-jquerys-click-function/1581110#1581110 4 Answer by chaos for Unidentified problem with jQuery's .click() function chaos 2009-10-17T01:03:23Z 2009-10-17T01:03:23Z <p>I wouldn't expect the click event handler you're defining to show up in an HTML rendering of the element. You're really not "setting an <code>onclick</code>"; you're binding a function to the DOM click event, which is kind of a different thing. For starters, you can bind several such functions and they play nicely with each other.</p> <p>If it's really important to you that it render, try doing:</p> <pre><code>.attr('onclick', "expand(this, 'tdb', 'years', 'danwoods')") </code></pre> <p>and see if that works for you.</p> http://stackoverflow.com/questions/965093/selectively-disable-gcc-warnings-for-only-part-of-a-translation-unit/965163#965163 Comment by chaos on Selectively disable GCC warnings for only part of a translation unit? chaos 2009-11-18T14:45:15Z 2009-11-18T14:45:15Z I don't really imagine that &quot;not adding features&quot; to gcc tends to have a rationale so much as an absence of anyone submitting a working patch. http://stackoverflow.com/questions/1677997/rewriterule-with-string-starting-http/1678060#1678060 Comment by chaos on RewriteRule with string starting "http://" chaos 2009-11-05T03:00:11Z 2009-11-05T03:00:11Z No; there's no leading slash on the URL portions <code>mod&#95;rewrite</code> is matching against. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/578463#578463 Comment by chaos on What's your favorite "programmer ignorance" pet peeve? chaos 2009-10-31T22:26:46Z 2009-10-31T22:26:46Z My God... it's full of <i>stupid</i>! http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017 Comment by chaos on Determining which inputs to weigh in an evolutionary algorithm chaos 2009-10-28T20:06:55Z 2009-10-28T20:06:55Z Sounds like a great data source, sure. http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017 Comment by chaos on Determining which inputs to weigh in an evolutionary algorithm chaos 2009-10-28T18:30:39Z 2009-10-28T18:30:39Z As far as pre-existing data for Tetris goes, when your system has played a game, the records of what situations it faced, what decisions it made (maybe randomly to start) and what the outcomes now constitutes a corpus of data you can use for training. http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017 Comment by chaos on Determining which inputs to weigh in an evolutionary algorithm chaos 2009-10-28T18:17:38Z 2009-10-28T18:17:38Z Say you're training a neural net to classify patterns as &quot;the letter A&quot; or &quot;not the letter A&quot;. You have a bunch of training cases where you have some data and you know whether or not it's an A. You can slice and dice that data any number of ways, each one of which is a potential input. The best potential inputs are the ones that show a strong numeric correlation with the A-or-not-A state. If a potential input doesn't vary, it's useless. If it varies randomly, it's useless. If it varies in coordination with the A-or-not-Aness of the pattern, it's gold. http://stackoverflow.com/questions/1638646/optimizing-mysql-query/1638692#1638692 Comment by chaos on Optimizing Mysql Query chaos 2009-10-28T17:19:46Z 2009-10-28T17:19:46Z Wastes storage, makes operations using it a tiny bit slower, maybe (if it's a variable-width column) makes the table variable-width instead of fixed-width, which also makes things slower. And it's just kind of messy. http://stackoverflow.com/questions/1638551/whatsup-new-here Comment by chaos on whatsup? new here chaos 2009-10-28T16:54:55Z 2009-10-28T16:54:55Z Remember, alongub, on the intarwebs, GIRL stands for Guy In Real Life. http://stackoverflow.com/questions/1638551/whatsup-new-here Comment by chaos on whatsup? new here chaos 2009-10-28T16:52:59Z 2009-10-28T16:52:59Z I think the horizons of people using Q&amp;A sites for cybering are woefully unexplored. http://stackoverflow.com/questions/1627240/modrewrite-do-not-apply-here/1627259#1627259 Comment by chaos on mod_rewrite: do not apply here chaos 2009-10-27T01:16:59Z 2009-10-27T01:16:59Z Yeah. It will match <code>/administrator</code>, for that matter. Put a slash on the end to only match <code>/admin</code> and things under it. http://stackoverflow.com/questions/1621421/my-array-is-not-giving-the-correct-results/1621429#1621429 Comment by chaos on My array is not giving the correct results. chaos 2009-10-25T17:44:20Z 2009-10-25T17:44:20Z @NSD: Apparently. @JimS: This code needs no curly brackets. It does, however, need you to change <code>$nav</code> to the name of the variable you keep this data structure in, which you have not told us. http://stackoverflow.com/questions/1621421/my-array-is-not-giving-the-correct-results/1621429#1621429 Comment by chaos on My array is not giving the correct results. chaos 2009-10-25T17:19:32Z 2009-10-25T17:19:32Z The results aren't exactly like that; they're more sensibly structured. Any particular reason you wouldn't just use <code>print&#95;r()</code> to see for yourself what results my code gives? http://stackoverflow.com/questions/1618468/why-undefine-failed-in-m4/1618475#1618475 Comment by chaos on Why undefine failed in m4? chaos 2009-10-24T17:21:17Z 2009-10-24T17:21:17Z Yeah, it's certainly bizarre, but that's m4 for you. http://stackoverflow.com/questions/1616585/what-database-field-type-do-you-use-for-yes-no-entries-in-sql-buddy Comment by chaos on What database field type do you use for yes/no entries in SQL Buddy? chaos 2009-10-24T12:57:04Z 2009-10-24T12:57:04Z FYI, if my answer solved your problem, you should click the checkmark next to it to mark it 'accepted'. http://stackoverflow.com/questions/1616603/php-check-if-certain-item-in-an-array-is-empty/1616609#1616609 Comment by chaos on php: check if certain item in an array is empty chaos 2009-10-24T00:45:11Z 2009-10-24T00:45:11Z That will be empty, set, and existant.