User chaos - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:52:22Zhttp://stackoverflow.com/feeds/user/47529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1677997/rewriterule-with-string-starting-http/1678062#16780621Answer by chaos for RewriteRule with string starting "http://"chaos2009-11-05T02:59:27Z2009-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#16780310Answer by chaos for php error_log not workingchaos2009-11-05T02:54:03Z2009-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#16385183Answer by chaos for Bash scripting - execute and grep command inside scriptchaos2009-10-28T16:46:08Z2009-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#16390171Answer by chaos for Determining which inputs to weigh in an evolutionary algorithmchaos2009-10-28T18:04:55Z2009-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#16389951Answer by chaos for Vim search for a pattern and if NOT occurs delete linechaos2009-10-28T18:02:19Z2009-10-28T18:02:19Z<pre><code>:v/pattern/s/.*//
</code></pre>
http://stackoverflow.com/questions/1638646/optimizing-mysql-query/1638692#16386920Answer by chaos for Optimizing Mysql Querychaos2009-10-28T17:10:46Z2009-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#16385343Answer by chaos for PHP find element keychaos2009-10-28T16:48:32Z2009-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#16272592Answer by chaos for mod_rewrite: do not apply herechaos2009-10-26T20:50:22Z2009-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#16244810Answer by chaos for Mysql Replication Restorechaos2009-10-26T12:18:41Z2009-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#16214290Answer by chaos for My array is not giving the correct results.chaos2009-10-25T17:10:31Z2009-10-25T17:42:32Z<pre><code>$conv = array();
foreach($nav['sidebar'] as $index => $data)
foreach($data as $name => $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#16195063Answer by chaos for What techniques to avoid conditional branching do you know?chaos2009-10-24T23:37:38Z2009-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>&&</code> with <code>&</code> is that, since <code>&&</code> is short-circuit, it constitutes conditional evaluation in and of itself. <code>&</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#16184758Answer by chaos for Why undefine failed in m4?chaos2009-10-24T16:38:48Z2009-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#16181360Answer by chaos for Neural Networkschaos2009-10-24T14:22:31Z2009-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#16166095Answer by chaos for php: check if certain item in an array is emptychaos2009-10-24T00:40:52Z2009-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#16165911Answer by chaos for What database field type do you use for yes/no entries in SQL Buddy?chaos2009-10-24T00:33:17Z2009-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#16160111Answer by chaos for What's wrong with my REGEX while using VI editor?chaos2009-10-23T21:31:11Z2009-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#16131973Answer by chaos for Identical consecutive commit messages from the same userchaos2009-10-23T12:45:13Z2009-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#160948112Answer by chaos for In Perl, is there a built in way to compare two arrays for equality?chaos2009-10-22T19:35:31Z2009-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#16079781Answer by chaos for Any excuse for "shortcut" columns in a db schema?chaos2009-10-22T15:20:32Z2009-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#16079657Answer by chaos for Php Syntax Helpchaos2009-10-22T15:18:42Z2009-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#16034890Answer by chaos for PHP: How to Pass child class __construct() arguments to parent::__construct() ?chaos2009-10-21T20:43:33Z2009-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#16029175Answer by chaos for Should I allow a 2-char password?chaos2009-10-21T19:02:27Z2009-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#15853939Answer by chaos for Why does Perl warn me about using pseudo-hashes?chaos2009-10-18T16:47:36Z2009-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#15853831Answer by chaos for preg_match not splitting one resultchaos2009-10-18T16:44:45Z2009-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><?
$file = '<?php include("scripts/php/auth.php"); include("scripts/php/sessions.php"); ?><?php if($VERIFICATION!==1) { ?><?php echo $WEBSITE; ?><?php } ?> </p> </div> <div class="contentBlock"> <h2>ACT Web Designs Group</h2> <p><a href="http://www.actwebdesigns.co.uk" title="link to ACT Web Designs Home">www.actwebdesigns.co.uk</a><br /> <a href="http://hosting.actwebdesigns.co.uk" title="link to ACT Web Designs Hosting Solutions">www.hosting.actwebdesigns.co.uk</a> <a href="http://www.plugnplaycms.co.uk.co.uk" title="link to the home of plug n play cms">www.plugnplaycms.co.uk</a></p> </div> </div> <div id="mainBodyRight"> <?php if(isset($_GET[\'msg\']) && !empty($_GET[\'msg\'])) { echo "<div class=\"contentBlock\">\n"; echo "<h2>".$_GET[\'h2\']."</h2>"; echo " <p style=\"color:".$_GET[\'color\']."\">".$_GET[\'msg\']."</p>\n"; echo "</div>\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"); } ?>';
$str = preg_replace("#(?:\s\s+)|(?:\n)|(?:\t)|(?:\r)#", " ", $file);
$dataToAdd = array();
while(preg_match("#(<\?php .*?\?>)#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 "<xmp>".$z."----->>> ".$data."<br /></xmp>\n";
$z++;
}
?>
</code></pre>
http://stackoverflow.com/questions/1574236/should-i-find-another-job-instead-of-programmer/1574258#15742582Answer by chaos for Should I find another job instead of programmer?chaos2009-10-15T18:39:20Z2009-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#15837986Answer by chaos for Value as the keychaos2009-10-18T02:04:30Z2009-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#15835371Answer by chaos for HTML Slideshow for images chaos2009-10-17T23:51:14Z2009-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 > num_images)
curr_image = 1;
put_image(curr_image);
}
</code></pre>
http://stackoverflow.com/questions/1583514/shell-script-not-executed/1583518#15835183Answer by chaos for shell script not executedchaos2009-10-17T23:41:58Z2009-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#15835080Answer by chaos for Filter out rows by hardcoded list in MySQL performancechaos2009-10-17T23:35:40Z2009-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#15811104Answer by chaos for Unidentified problem with jQuery's .click() functionchaos2009-10-17T01:03:23Z2009-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#965163Comment by chaos on Selectively disable GCC warnings for only part of a translation unit?chaos2009-11-18T14:45:15Z2009-11-18T14:45:15ZI don't really imagine that "not adding features" 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#1678060Comment by chaos on RewriteRule with string starting "http://"chaos2009-11-05T03:00:11Z2009-11-05T03:00:11ZNo; there's no leading slash on the URL portions <code>mod_rewrite</code> is matching against.http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/578463#578463Comment by chaos on What's your favorite "programmer ignorance" pet peeve?chaos2009-10-31T22:26:46Z2009-10-31T22:26:46ZMy God... it's full of <i>stupid</i>!http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017Comment by chaos on Determining which inputs to weigh in an evolutionary algorithmchaos2009-10-28T20:06:55Z2009-10-28T20:06:55ZSounds like a great data source, sure.http://stackoverflow.com/questions/1638981/determining-which-inputs-to-weigh-in-an-evolutionary-algorithm/1639017#1639017Comment by chaos on Determining which inputs to weigh in an evolutionary algorithmchaos2009-10-28T18:30:39Z2009-10-28T18:30:39ZAs 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#1639017Comment by chaos on Determining which inputs to weigh in an evolutionary algorithmchaos2009-10-28T18:17:38Z2009-10-28T18:17:38ZSay you're training a neural net to classify patterns as "the letter A" or "not the letter A". 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#1638692Comment by chaos on Optimizing Mysql Querychaos2009-10-28T17:19:46Z2009-10-28T17:19:46ZWastes 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-hereComment by chaos on whatsup? new herechaos2009-10-28T16:54:55Z2009-10-28T16:54:55ZRemember, alongub, on the intarwebs, GIRL stands for Guy In Real Life.http://stackoverflow.com/questions/1638551/whatsup-new-hereComment by chaos on whatsup? new herechaos2009-10-28T16:52:59Z2009-10-28T16:52:59ZI think the horizons of people using Q&A sites for cybering are woefully unexplored.http://stackoverflow.com/questions/1627240/modrewrite-do-not-apply-here/1627259#1627259Comment by chaos on mod_rewrite: do not apply herechaos2009-10-27T01:16:59Z2009-10-27T01:16:59ZYeah. 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#1621429Comment by chaos on My array is not giving the correct results.chaos2009-10-25T17:44:20Z2009-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#1621429Comment by chaos on My array is not giving the correct results.chaos2009-10-25T17:19:32Z2009-10-25T17:19:32ZThe results aren't exactly like that; they're more sensibly structured. Any particular reason you wouldn't just use <code>print_r()</code> to see for yourself what results my code gives?http://stackoverflow.com/questions/1618468/why-undefine-failed-in-m4/1618475#1618475Comment by chaos on Why undefine failed in m4?chaos2009-10-24T17:21:17Z2009-10-24T17:21:17ZYeah, 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-buddyComment by chaos on What database field type do you use for yes/no entries in SQL Buddy?chaos2009-10-24T12:57:04Z2009-10-24T12:57:04ZFYI, 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#1616609Comment by chaos on php: check if certain item in an array is emptychaos2009-10-24T00:45:11Z2009-10-24T00:45:11ZThat will be empty, set, and existant.