chaos

34,190
Reputation
2520 views

Registered User

Name chaos
Member for 11 months
Seen 18 hours ago
Website
Location New Jersey
Age 35
My stuff:

lostsouls.org
mudseek.com
mudfind.com
discordianquotes.com
Nov
27
awarded  Necromancer
Nov
18
comment Selectively disable GCC warnings for only part of a translation unit?
I 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.
Nov
11
accepted What’s a clever one-liner I can use to describe my program?
Nov
9
accepted Is there a way to flush a POSIX socket?
Nov
6
accepted Mysql Replication Restore
Nov
5
comment RewriteRule with string starting “http://”
No; there's no leading slash on the URL portions mod_rewrite is matching against.
Nov
5
answered RewriteRule with string starting “http://”
Nov
5
answered php error_log not working
Oct
31
comment What’s your favorite “programmer ignorance” pet peeve?
My God... it's full of stupid!
Oct
29
revised Bash scripting - execute and grep command inside script
added 5 characters in body
Oct
29
accepted Determining which inputs to weigh in an evolutionary algorithm
Oct
28
comment Determining which inputs to weigh in an evolutionary algorithm
Sounds like a great data source, sure.
Oct
28
revised Bash scripting - execute and grep command inside script
deleted 2 characters in body
Oct
28
comment Determining which inputs to weigh in an evolutionary algorithm
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.
Oct
28
comment Determining which inputs to weigh in an evolutionary algorithm
Say 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.
Oct
28
answered Determining which inputs to weigh in an evolutionary algorithm
Oct
28
answered Vim search for a pattern and if NOT occurs delete line
Oct
28
revised Bash scripting - execute and grep command inside script
deleted 4 characters in body
Oct
28
comment Optimizing Mysql Query
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.
Oct
28
answered Optimizing Mysql Query
Oct
28
answered PHP find element key
Oct
28
answered Bash scripting - execute and grep command inside script
Oct
27
comment mod_rewrite: do not apply here
Yeah. It will match /administrator, for that matter. Put a slash on the end to only match /admin and things under it.
Oct
27
accepted What database field type do you use for yes/no entries in SQL Buddy?
Oct
26
accepted mod_rewrite: do not apply here
Oct
26
answered mod_rewrite: do not apply here
Oct
26
answered Mysql Replication Restore
Oct
25
comment My array is not giving the correct results.
@NSD: Apparently. @JimS: This code needs no curly brackets. It does, however, need you to change $nav to the name of the variable you keep this data structure in, which you have not told us.
Oct
25
revised My array is not giving the correct results.
added 4 characters in body; deleted 4 characters in body
Oct
25
comment My array is not giving the correct results.
The results aren't exactly like that; they're more sensibly structured. Any particular reason you wouldn't just use print_r() to see for yourself what results my code gives?
Oct
25
answered My array is not giving the correct results.
Oct
25
accepted Why undefine failed in m4?
Oct
25
revised What techniques to avoid conditional branching do you know?
deleted 5 characters in body
Oct
24
revised What techniques to avoid conditional branching do you know?
deleted 1 characters in body
Oct
24
answered What techniques to avoid conditional branching do you know?
Oct
24
comment Why undefine failed in m4?
Yeah, it's certainly bizarre, but that's m4 for you.
Oct
24
revised Why undefine failed in m4?
added 3 characters in body; added 28 characters in body
Oct
24
answered Why undefine failed in m4?
Oct
24
answered Neural Networks
Oct
24
comment What database field type do you use for yes/no entries in SQL Buddy?
FYI, if my answer solved your problem, you should click the checkmark next to it to mark it 'accepted'.
Oct
24
revised php: check if certain item in an array is empty
edited body
Oct
24
comment php: check if certain item in an array is empty
That will be empty, set, and existant.
Oct
24
answered php: check if certain item in an array is empty
Oct
24
answered What database field type do you use for yes/no entries in SQL Buddy?
Oct
23
revised What’s wrong with my REGEX while using VI editor?
added 102 characters in body; deleted 3 characters in body
Oct
23
answered What’s wrong with my REGEX while using VI editor?
Oct
23
revised MySQL - Not using Index
added 10 characters in body; added 35 characters in body
Oct
23
answered Identical consecutive commit messages from the same user
Oct
22
comment Any excuse for “shortcut” columns in a db schema?
Yes, the value of a performance enhancement is somewhat undermined if the results it produces are, y'know, wrong.
Oct
22
revised In Perl, is there a built in way to compare two arrays for equality?
added 253 characters in body; added 101 characters in body; deleted 9 characters in body