User John Kugelman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:52:22Zhttp://stackoverflow.com/feeds/user/68587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1898553/return-a-regex-match-in-a-bash-script-instead-of-replacing-it/1898573#18985732Answer by John Kugelman for Return a regex match in a BASH script, instead of replacing itJohn Kugelman2009-12-14T01:59:10Z2009-12-14T01:59:10Z<p>You could do this purely in bash using the double square bracket <code>[[ ]]</code> test operator, which stores results in an array called <code>BASH_REMATCH</code>:</p>
<pre><code>[[ "TestT100String" =~ ([0-9]+) ]] && echo "${BASH_REMATCH[1]}"
</code></pre>
http://stackoverflow.com/questions/1895625/odd-comparison-problem-in-checking-for-anagram/1895628#18956282Answer by John Kugelman for Odd comparison problem in checking for anagramJohn Kugelman2009-12-13T05:23:07Z2009-12-13T05:23:07Z<p>Use the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Arrays.html#equals%28char%5B%5D,%20char%5B%5D%29" rel="nofollow">Arrays.equals()</a> method to compare two arrays. It will compare the elements of the arrays, whereas the default <code>Object.equals()</code> method will not.</p>
<blockquote>
<p>Returns <code>true</code> if the two specified arrays of chars are equal to one another. Two arrays are considered equal if both arrays contain the same number of elements, and all corresponding pairs of elements in the two arrays are equal. In other words, two arrays are equal if they contain the same elements in the same order. Also, two array references are considered equal if both are <code>null</code>.</p>
</blockquote>
http://stackoverflow.com/questions/1868024/tricky-makefile-syntax-with-quotes/1868122#18681222Answer by John Kugelman for Tricky makefile syntax with quotesJohn Kugelman2009-12-08T16:30:20Z2009-12-08T16:30:20Z<p>You're missing a pipe <code>|</code> between svn and perl, and you're missing a backslash <code>\</code> after the echo. This works for me:</p>
<pre><code>test_svn_version:
@if [ $$(svn --version --quiet | \
perl -ne '@a=split(/\./); \
print $$a[0]*10000 + $$a[1]*100 + $$a[2]') \
-lt 10600 ]; \
then \
echo >&2 "Svn version $$(svn --version --quiet) too old; upgrade to v1.6"; \
false; \
fi
</code></pre>
http://stackoverflow.com/questions/1862782/regular-expression-search-replace-help-needed-python/1862794#18627946Answer by John Kugelman for Regular Expression search/replace help needed, PythonJohn Kugelman2009-12-07T20:49:31Z2009-12-07T20:49:31Z<pre><code>re.sub(r"([aeiou])(t|k|s|tk)([^aeiou]*)$", r"\1:\2\3", "orchestras")
re.sub(r"([aeiou])(t|k|s|tk)$", r"\1:\2", "orchestras")
</code></pre>
<p>You don't say if there can be other consonants after the t/k/s/tk. The first regex allows for this as long as there aren't any more vowels, so it'll change "fist" to "fi:st" for instance. If the word must end with the t/k/s/tk then use the second regex, which will do nothing for "fist".</p>
http://stackoverflow.com/questions/1860737/object-appended-to-a-list-instance-appears-in-a-different-instance-of-that-list/1860810#18608100Answer by John Kugelman for Object appended to a list instance appears in a different instance of that list. John Kugelman2009-12-07T15:46:46Z2009-12-07T15:46:46Z<pre><code>def __init__(self, name = 'a room', devs = list()):
self.name = name
self.devs = devs
print('room ' + self.name + ' created')
</code></pre>
<p>When you do this <code>list()</code> actually is always the same list. You don't get a <em>new</em> empty list each time the constructor is called, you get the <em>same</em> empty list. To fix that you'll want to make a copy.</p>
<p>Also <code>list()</code> is more idiomatically written as <code>[]</code>.</p>
<pre><code>def __init__(self, name='a room', devs=[]):
self.name = name
self.devs = list(devs)
print('room ' + self.name + ' created')
</code></pre>
http://stackoverflow.com/questions/1817303/how-to-detect-a-filename-within-a-case-statement-in-unix-shell/1817315#18173152Answer by John Kugelman for How to detect a filename within a case statement - in unix shell?John Kugelman2009-11-30T00:37:26Z2009-11-30T02:12:09Z<p>You can match an empty string with a <code>'')</code> or <code>"")</code> case.</p>
<p>A file name can contain any character--even weird ones likes symbols, spaces, newlines, and control characters--so trying to figure out if you have a file name by looking for letters and numbers isn't the right way to do it. Instead you can use the <code>[ -e filename ]</code> test to check if a string is a valid file name.</p>
<p>You should, by the way, put <code>"$1"</code> in double quotes so your script will work if the file name does contain spaces.</p>
<pre><code>case "$1" in
'') echo empty;;
-l) echo ls;;
-L) echo ls -l;;
*) if [ -e "$1" ]; then
echo filename
else
echo usage >&2 # echo to stderr
exit 1
fi;;
esac
</code></pre>
http://stackoverflow.com/questions/1813827/how-do-i-process-something-like-this-in-unix-shell/1813854#18138541Answer by John Kugelman for How do I process something like this in unix shell?John Kugelman2009-11-28T21:39:17Z2009-11-28T21:39:17Z<pre><code>#!/bin/sh
CARS=
while [ $# -gt 0 ]; do
# Cheesy way to test if $1 is a year.
if [ "$1" -gt 0 ] 2> /dev/null; then
YEAR=$1
for CAR in $CARS; do
echo $CAR $YEAR
done
CARS=
else
# Add car to list
CARS="$CARS $1"
fi
# Process the next command-line argument.
shift
done
</code></pre>
http://stackoverflow.com/questions/1805663/shell-script-purpose-of-x-in-xvariable/1805685#18056857Answer by John Kugelman for shell script purpose of x in "x$VARIABLE" John Kugelman2009-11-26T21:17:38Z2009-11-26T21:17:38Z<p>It's a trick to ensure you don't get an empty string in the substitution if one of the variables is empty. By putting <code>x</code> on both sides it's the same as just comparing the variables directly but the two sides will always be non-empty.</p>
<p>It's an old kludge which made more sense when scripts were written as:</p>
<pre><code>if [ x$USER != x$RUN_AS_USER ]
</code></pre>
<p>There if you just had <code>$USER</code> and it were empty then you could end up with</p>
<pre><code>if [ != root ] # Syntax error
</code></pre>
<p>With the <code>x</code> you get this, which is better:</p>
<pre><code>if [ x != xroot ]
</code></pre>
<p>However, when the variables are quoted the <code>x</code> is unnecessary since an empty string in quotes isn't removed entirely. It still shows up as a token. Thus</p>
<pre><code>if [ "$USER" != "$RUN_AS_USER" ] # Best
</code></pre>
<p>is the best way to write this. In the worst case with both variables empty you'd get this which is a valid statement:</p>
<pre><code>if [ "" != "" ]
</code></pre>
http://stackoverflow.com/questions/1802773/can-you-say-that-associative-arrays-in-php-are-like-2d-arrays/1802810#18028106Answer by John Kugelman for Can you say that associative arrays in PHP are like 2D arrays?John Kugelman2009-11-26T10:17:20Z2009-11-26T10:17:20Z<p>No, they are still one-dimensional just like regular 0-based arrays. The difference is that you aren't limited to integers for the keys; you can use any arbitrary string.</p>
<p>And strictly speaking there isn't a technical distinction between associative and non-associative arrays. They use the same syntax, it's just your choice whether you use integers or strings or both for the keys.</p>
http://stackoverflow.com/questions/1780174/split-dictionary-of-lists-into-list-of-dictionaries/1780215#17802151Answer by John Kugelman for Split dictionary of lists into list of dictionariesJohn Kugelman2009-11-22T22:22:07Z2009-11-22T22:22:07Z<pre><code>>>> a = {'key1': [1, 2, 3], 'key2': [4, 5, 6]}
>>> [dict((key, a[key][i]) for key in a.keys()) for i in range(len(a.values()[0]))]
[{'key2': 4, 'key1': 1}, {'key2': 5, 'key1': 2}, {'key2': 6, 'key1': 3}]
</code></pre>
http://stackoverflow.com/questions/1779709/friend-function-declared-inside-befriended-class-gcc-does-not-compile/1779802#17798020Answer by John Kugelman for friend function declared inside befriended class, GCC does not compileJohn Kugelman2009-11-22T20:02:18Z2009-11-22T20:02:18Z<p>A <code>friend</code> declaration doesn't count as a prototype. You also need to need a separate prototype:</p>
<pre><code>// File: Foo.h
void Bar();
class Foo {
friend void Bar();
};
</code></pre>
http://stackoverflow.com/questions/1736919/list-retreving-items-problem-with-iterator/1736932#17369327Answer by John Kugelman for <list> retreving items problem with iteratorJohn Kugelman2009-11-15T07:53:27Z2009-11-15T07:53:27Z<p><code>p</code> is an iterator of <code>Instruction *</code> pointers. You can think of it as if it were of type <code>Instruction **</code>. You need to double dereference <code>p</code> like so:</p>
<pre><code>(*p)->execute();
</code></pre>
<p><code>*p</code> will evaluate to an <code>Instruction *</code>, and further applying the <code>-></code> operator on that will dereference the pointer.</p>
http://stackoverflow.com/questions/1724697/packet-detection-using-regex/1724750#17247504Answer by John Kugelman for Packet detection using regexJohn Kugelman2009-11-12T19:28:05Z2009-11-12T19:28:05Z<p><code>\$CH;.*?#</code> is fine and should be quite efficient. You can make it more explicit that there should be no backtracking by writing it as <code>\$CH;[^#]*#</code>, if you like.</p>
<p>You can use <code>(.|\n)</code> or <code>[\w\W]</code> to match truly any character--or even better, use the <a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regexoptions.aspx" rel="nofollow">RegexOptions.Singleline</a> option to change the behavior of <code>.</code>:</p>
<blockquote>
<p>Specifies single-line mode. Changes the meaning of the dot (<code>.</code>) so it matches every character (instead of every character except <code>\n</code>).</p>
</blockquote>
http://stackoverflow.com/questions/1724588/deleting-duplicate-dictionaries-in-a-list-in-python/1724622#17246223Answer by John Kugelman for Deleting duplicate dictionaries in a list in pythonJohn Kugelman2009-11-12T19:11:55Z2009-11-12T19:18:14Z<p>You can't use <code>dict</code>s in <code>set</code>s because they're mutable and don't have stable identities. You can work around that by making a <code>tuple</code> out of their items. Note that simply wrapping a <code>dict</code> in a <code>tuple</code> doesn't get around the fact that distinct <code>dict</code>s will still appear to be distinct objects even if they contain the same items.</p>
<p>To turn two "equivalent" <code>dict</code>s into equal objects, take all of their items, sort the items, and then stuff them into a <code>tuple</code>: <code>tuple(sorted(map.items()))</code>. Those <code>tuple</code>s will properly compare equal to each other if they contain the same items, no matter the order of the original <code>dict</code>.</p>
<pre><code>def removeDups(list1, list2):
set1 = set(tuple(sorted(x.items())) for x in list1)
set2 = set(tuple(sorted(x.items())) for x in list2)
return set1 - set2
</code></pre>
http://stackoverflow.com/questions/1717599/how-to-know-if-my-program-crashed-the-last-time-it-ran/1717627#17176272Answer by John Kugelman for How to know if my program crashed the last time it ran?John Kugelman2009-11-11T19:51:50Z2009-11-11T19:51:50Z<p>Yes, yes it is.</p>
http://stackoverflow.com/questions/1710571/returning-arrays-in-php-causes-syntax-error/1710616#17106163Answer by John Kugelman for Returning arrays in php causes syntax errorJohn Kugelman2009-11-10T19:38:00Z2009-11-10T19:45:00Z<p>This is simply a limitation of PHP's syntax. You cannot index a function's return value if the function returns an array. There's nothing wrong with your function; rather this shows the homebrewed nature of PHP. Like a katamari ball it has grown features and syntax over time in a rather haphazard fashion. It was not thought out from the beginning and this syntactical limitation is evidence of that.</p>
<p>Similarly, even this simpler construct does not work:</p>
<pre><code>// Syntax error
echo array("one", "two", "three")[0];
</code></pre>
<p>To workaround it you must assign the result to a variable and then index the variable:</p>
<pre><code>$array = get_arr();
echo $array[0];
</code></pre>
<p>Oddly enough they got it right with objects. <code>get_obj()->prop</code> is syntactically valid and works as expected. Go figure.</p>
http://stackoverflow.com/questions/1689984/modulus-in-pythons-slicing/1690010#16900106Answer by John Kugelman for Modulus in Python's slicingJohn Kugelman2009-11-06T20:01:22Z2009-11-06T20:01:22Z<pre><code>sums += sum(arra[1::5])
</code></pre>
<p>And it's spelled <code>array</code>. ;-)</p>
http://stackoverflow.com/questions/1670397/how-to-sort-by-line-length-then-reverse-alphabetically/1670428#16704280Answer by John Kugelman for How to sort by line length, then reverse alphabeticallyJohn Kugelman2009-11-03T22:02:21Z2009-11-03T22:12:22Z<p>This will sort a file by line length, longest lines first:</p>
<pre><code>cat file.txt | (while read LINE; do echo -e "${#LINE}\t$LINE"; done) | sort -rn | cut -f 2-
</code></pre>
<p>This will replace <code>term</code> with <code>_term_</code> but won't turn <code>_term_</code> into <code>__term__</code>:</p>
<pre><code>sed -r 's/(^|[^_])term([^_]|$)/\1_term_\2/g'
sed -r -e 's/(^|[^_])term/\1_term_/g' -e 's/term([^_]|$)/_term_\1/g'
</code></pre>
<p>The first will work pretty well except it will miss out on <code>_term</code> and <code>term_</code>, mistakenly leaving those alone. Use the second if that's important. Here's my silly test case:</p>
<pre><code># echo here is _term_ and then a term you terminator haha _terminator and then _term_inator term_inator | sed -re 's/(^|[^_])term([^_]|$)/\1_term_\2/g'
here is _term_ and then a _term_ you _term_inator haha _terminator and then _term_inator term_inator
# echo here is _term_ and then a term you terminator haha _terminator and then _term_inator term_inator | sed -r -e 's/(^|[^_])term/\1_term_/g' -e 's/term([^_]|$)/_term_\1/g'
here is _term_ and then a _term_ you _term_inator haha __term_inator and then _term_inator _term__inator
</code></pre>
http://stackoverflow.com/questions/1657834/how-can-i-check-if-multiplying-two-numbers-in-java-will-cause-an-overflow/1657868#16578688Answer by John Kugelman for How can I check if multiplying two numbers in Java will cause an overflow? John Kugelman2009-11-01T18:16:08Z2009-11-02T14:08:38Z<p>If <code>a</code> and <code>b</code> are both positive then you can use:</p>
<pre><code>if (a != 0 && b > Long.MAX_VALUE / a) {
// Overflow
}
</code></pre>
<p>If you need to deal with both positive and negative numbers then it's more complicated:</p>
<pre><code>long maximum = Math.sign(a) == Math.sign(b) ? Long.MAX_VALUE : Long.MIN_VALUE;
if (a != 0 && (b > 0 && b > maximum / a ||
b < 0 && b < maximum / a))
{
// Overflow
}
</code></pre>
<p>Here's a little table I whipped up to check this, pretending that overflow happens at -10 or +10:</p>
<pre><code>a = 5 b = 2 2 > 10 / 5
a = 2 b = 5 5 > 10 / 2
a = -5 b = 2 2 > -10 / -5
a = -2 b = 5 5 > -10 / -2
a = 5 b = -2 -2 < -10 / 5
a = 2 b = -5 -5 < -10 / 2
a = -5 b = -2 -2 < 10 / -5
a = -2 b = -5 -5 < 10 / -2
</code></pre>
http://stackoverflow.com/questions/1659126/how-to-determine-the-first-set-of-e-in-this-grammar/1659151#16591512Answer by John Kugelman for How to determine the FIRST set of E in this grammar ?John Kugelman2009-11-02T02:17:25Z2009-11-02T04:35:25Z<p>Well, assuming that you're starting with <em>E</em>, then either the first terminal is x via the <em>E</em>→<em>XYE</em> production (since <em>X</em> always produces x) or it is e via the <em>E</em>→e production. So First(<em>E</em>) = {x,e}.</p>
<p>That seems pretty straightforward...</p>
http://stackoverflow.com/questions/1659099/why-is-it-preferable-to-write-func-const-class-value/1659121#16591217Answer by John Kugelman for Why is it preferable to write func( const Class &value )?John Kugelman2009-11-02T02:02:27Z2009-11-02T02:02:27Z<p>The first form doesn't create a copy of the object, it just passes a reference (pointer) to the existing copy. The second form creates a copy, which can be expensive. This isn't something that is optimized away: there are semantic differences between having a copy of an object vs. having the original, and copying requires a call to the class's copy constructor.</p>
<p>For very small classes (like <16 bytes) with no copy constructor it is probably more efficient to use the value syntax rather than pass references. This is why you see <code>void foo(double bar)</code> and not <code>void foo(const double &var)</code>. But in the interests of not micro-optimizing code that doesn't matter, as a general rule you should pass all real-deal objects by reference and only pass built-in types like <code>int</code> and <code>void *</code> by value.</p>
http://stackoverflow.com/questions/1658994/php-create-array-of-arrays-ignoring-empty-arrays/1659011#16590112Answer by John Kugelman for PHP: Create array of arrays, ignoring empty arraysJohn Kugelman2009-11-02T01:17:27Z2009-11-02T01:17:27Z<pre><code>$myArray = array_filter(array($a, $b, $c));
</code></pre>
http://stackoverflow.com/questions/1658844/is-the-regex-a-z-valid-and-if-yes-then-is-it-the-same-as-a-za-z/1658859#165885915Answer by John Kugelman for is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]John Kugelman2009-11-02T00:07:23Z2009-11-02T00:14:18Z<p>No, <code>a</code> (97) is higher than <code>Z</code> (90). <code>[a-Z]</code> isn't a valid character class. However <code>[A-z]</code> wouldn't be equivalent either, but for a different reason. It would cover all the letters but would also include the characters between the uppercase and lowercase letters: <code> [\]^_` </code>.</p>
http://stackoverflow.com/questions/1658067/can-i-use-c-libraries-in-a-c-program/1658086#16580868Answer by John Kugelman for Can I use C++ libraries in a C program?John Kugelman2009-11-01T19:32:09Z2009-11-01T19:32:09Z<p>Not <code>std::vector</code>, no. Anything templated is right out.</p>
<p>In general it's un-fun to use C++ code, but it can be done. You have to wrap classes in plain non-class functions that your C code can call, since C doesn't do classes. To make these functions useable from C you then wrap them with an <code>extern "C"</code> declaration to tell the C++ compiler not to do name mangling.</p>
<p>You can then compile the wrapper functions with a C++ compiler and create a library which your C program can link against. Here's a very simple example:</p>
<pre><code>// cout.cpp - Compile this with a C++ compiler
#include <iostream>
extern "C" {
void print_cout(const char *str) {
std::cout << str << std::endl;
}
}
/* print.c - Compile this with a C compiler */
void print_cout(const char *);
int main(void) {
print_cout("hello world!");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1658012/how-does-this-array-indexing-work/1658028#16580283Answer by John Kugelman for how does this array indexing work?John Kugelman2009-11-01T19:11:52Z2009-11-01T19:11:52Z<p>Actually what that's doing is counting how many times you count each digit. So you have an array like:</p>
<pre><code>int ndigit[10] = { 0 }; // Start with all zeros
</code></pre>
<p>Given an ASCII digit from <code>'0'</code> to <code>'9'</code>, <code>c-'0'</code> converts it from an ASCII digit to a simple integer from 0 to 9. That is, the character <code>'0'</code> which is 48 in ASCII is subtracted from each character, so they go from 48 through 57 to 0 through 9.</p>
<p>Then this number 0 through 9 is used an an index into the array, and that index is incremented by one. Thus <code>ndigit</code> counts how many times each digit is typed.</p>
http://stackoverflow.com/questions/1658000/how-to-detect-whether-a-windows-batch-file-is-run-from-a-zip-archive/1658007#16580071Answer by John Kugelman for How to detect whether a Windows batch file is run from a ZIP archiveJohn Kugelman2009-11-01T19:05:23Z2009-11-01T19:05:23Z<p>Why does it fail? I presume you're missing some files because Windows only unzipped the batch file and not the entire archive. If that's true you can check to see if those files exist when the batch file starts.</p>
http://stackoverflow.com/questions/1657914/send-reply-to-broadcast-with-a-socket/1657928#16579283Answer by John Kugelman for Send reply to broadcast with a SocketJohn Kugelman2009-11-01T18:39:35Z2009-11-01T19:03:17Z<p>It doesn't look like your <code>SendBroadcast()</code> socket is bound to a port so he's not going to receive anything. In fact your <code>ReceiveBroadcast()</code> socket is sending the reply back his own port so he will receive his own reply.</p>
<pre><code>ReceiveBroadcast: binds to port 16789
SendBroadcast: sends to port 16789
ReceiveBroadcast: receives datagram on port 16789
ReceiveBroadcast: sends reply to 16789
ReceiveBroadcast: **would receive own datagram if SendTo follwed by Receive**
</code></pre>
<p>You need to (a) have <code>SendBroadcast()</code> bind to a <em>different</em> port and change <code>ReceiveBroadcast()</code> send to that port (instead of his own endpoint <code>ep</code>), or (b) have both functions use the same socket object so they can <em>both</em> receive datagrams on port 16789.</p>
http://stackoverflow.com/questions/1657893/generating-a-random-winner-and-displaying-the-odds-of-winning-am-i-doing-this-r/1657917#16579176Answer by John Kugelman for Generating a random winner and displaying the odds of winning - am I doing this right?John Kugelman2009-11-01T18:36:07Z2009-11-01T18:42:34Z<p>That's right. Five people can win, there are 3215 entrants, so the odds of winning are 3215 ÷ 5 which is 1 in 643, or 642-to-1. 1 in every 643 wins meaning there are 642 losers to every 1 winner. Note the subtle one-off difference between "x in y chance" versus "x-to-y chance".</p>
<p>Your selection method looks fine. You could also select them all at once by changing it to <code>LIMIT 5</code>.</p>
http://stackoverflow.com/questions/1656508/weird-input-text-and-input-password-erasing-default-input-password/1656550#16565501Answer by John Kugelman for Weird input text and input password erasing default input passwordJohn Kugelman2009-11-01T06:44:18Z2009-11-01T06:44:18Z<p>Sounds like Firefox's form field auto-completion is getting in your way. You can disable it by adding <code>autocomplete="off"</code> to the <code><input></code> fields or to the <code><form></code> element to disable it for all fields.</p>
http://stackoverflow.com/questions/1656535/php-multidimensional-array-sum-erase-problem/1656547#16565471Answer by John Kugelman for PHP Multidimensional Array Sum/Erase ProblemJohn Kugelman2009-11-01T06:41:31Z2009-11-01T06:41:31Z<p>Removing only unused banks is definitely tricker than just removing all zero balances. Here's my attempt at eliminating the banks:</p>
<pre><code>for ($bank = 0; ; ++$bank) {
$bankUsed = null;
foreach ($balances as $customer) {
if (isset($customer[$bank])) {
$bankUsed = false;
if ($customer[$bank] > 0) {
$bankUsed = true;
break;
}
}
}
if ($bankUsed === null) {
echo "Bank $bank not found. Exiting.\n";
break;
}
else if ($bankUsed === false) {
echo "Bank $bank unused.\n";
foreach ($balances as &$customer) {
unset($customer[$bank]);
}
}
}
</code></pre>
<p>Output:</p>
<pre><code>Bank 2 unused.
Bank 5 not found. Exiting.
Array
(
[1] => Array
(
[0] => 707
[1] => 472
)
[2] => Array
(
[0] => 2614
[3] => 140
[1] => 2802
[4] => 245
)
[3] => Array
(
[3] => 0
[0] => 1710
[4] => 0
[1] => 575
)
[4] => Array
(
[1] => 1105
[0] => 1010
[4] => 0
[3] => 120
)
[5] => Array
(
[1] => 238
[4] => 0
[0] => 0
)
[6] => Array
(
[0] => 850
[1] => 0
)
[7] => Array
(
[0] => 850
[1] => 0
)
)
</code></pre>
http://stackoverflow.com/questions/1943863/whats-the-difference-between-b-and-b-in-this-place-thanks/1943866#1943866Comment by John Kugelman on What's the difference between _b and b in this place,thanksJohn Kugelman2009-12-22T02:48:39Z2009-12-22T02:48:39ZI didn't downvote, but "underscore means private" is a helpful answer. "Ask the author of that code" is not helpful.http://stackoverflow.com/questions/1940056/python-sorts-u11-phrase-1000-wav-before-u11-phrase-101-wav-how-can-i-overcom/1940088#1940088Comment by John Kugelman on Python sorts "u11-Phrase 1000.wav" before "u11-Phrase 101.wav"; how can I overcome this?John Kugelman2009-12-21T13:25:48Z2009-12-21T13:25:48ZAlso called natural sorting: <a href="http://www.codinghorror.com/blog/archives/001018.html" rel="nofollow">codinghorror.com/blog/archives/…</a>http://stackoverflow.com/questions/1876851/why-do-perl-control-statements-require-bracesComment by John Kugelman on Why do Perl control statements require braces?John Kugelman2009-12-09T21:05:51Z2009-12-09T21:05:51Z+1 The accepted answer on the previous question didn't satisfy my curiosity either.http://stackoverflow.com/questions/1817303/how-to-detect-a-filename-within-a-case-statement-in-unix-shell/1817315#1817315Comment by John Kugelman on How to detect a filename within a case statement - in unix shell?John Kugelman2009-11-30T02:13:09Z2009-11-30T02:13:09ZSee <code>man bash</code>: -e checks that a file exists, -f checks that it's also a file (not a directory)http://stackoverflow.com/questions/1813866/managing-bidirectional-associations-in-my-java-modelComment by John Kugelman on Managing bidirectional associations in my java modelJohn Kugelman2009-11-28T21:52:19Z2009-11-28T21:52:19Z"I think, writing code, that keeps the associations up to date on both ends is quite tedious and errorprone." Why do you say that? This isn't usually very difficult at all.http://stackoverflow.com/questions/1813860/is-there-any-significant-difference-between-nesting-a-while-loop-in-a-while-loopComment by John Kugelman on Is there any significant difference between nesting a while loop in a while loop and nesting an if-else loop in a while loop? (C++)John Kugelman2009-11-28T21:45:08Z2009-11-28T21:45:08ZThese aren't equivalent, at least not in general. But I presume you have something in mind where they are. Can you give an example where the two loops do the same thing?http://stackoverflow.com/questions/1724697/packet-detection-using-regex/1724750#1724750Comment by John Kugelman on Packet detection using regexJohn Kugelman2009-11-12T20:37:32Z2009-11-12T20:37:32ZYep, it would be redundant.http://stackoverflow.com/questions/1659553/find-the-shortest-path-between-two-nodes-vertices/1659566#1659566Comment by John Kugelman on Find the shortest Path between two nodes (vertices)John Kugelman2009-11-02T05:43:24Z2009-11-02T05:43:24ZOnly needed if edges are weighted.http://stackoverflow.com/questions/1659126/how-to-determine-the-first-set-of-e-in-this-grammarComment by John Kugelman on How to determine the FIRST set of E in this grammar ?John Kugelman2009-11-02T02:20:11Z2009-11-02T02:20:11ZFirst(<i>E</i>) is the set of terminals that could be present at the start of <i>E</i>. These are the terminals you use for state transitions since you'll always hit one of them.http://stackoverflow.com/questions/1658844/is-the-regex-a-z-valid-and-if-yes-then-is-it-the-same-as-a-za-z/1658859#1658859Comment by John Kugelman on is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]John Kugelman2009-11-02T00:19:19Z2009-11-02T00:19:19ZI explained why both <code>[a-Z]</code> and <code>[A-z]</code> are invalid. Don't downvote me for doing extra credit. :-)http://stackoverflow.com/questions/1658844/is-the-regex-a-z-valid-and-if-yes-then-is-it-the-same-as-a-za-z/1658851#1658851Comment by John Kugelman on is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]John Kugelman2009-11-02T00:09:00Z2009-11-02T00:09:00ZI don't like "try it and see" because if he had tried <code>[A-z]</code> there'd be no error message but it wouldn't work right either.http://stackoverflow.com/questions/1658012/how-does-this-array-indexing-workComment by John Kugelman on how does this array indexing work?John Kugelman2009-11-01T19:47:22Z2009-11-01T19:47:22ZRight. The standard mandates that digits be contiguous. Characters, OTOH, don't have to be, as seen in the oft-cited pathological EBCDIC character set. See <a href="http://www.legacyj.com/cobol/ebcdic.html" rel="nofollow">legacyj.com/cobol/ebcdic.html</a>.http://stackoverflow.com/questions/1657834/how-can-i-check-if-multiplying-two-numbers-in-java-will-cause-an-overflow/1657860#1657860Comment by John Kugelman on How can I check if multiplying two numbers in Java will cause an overflow? John Kugelman2009-11-01T18:59:52Z2009-11-01T18:59:52ZRight, but in that case no need for the Abs's. If negative numbers are allowed then this fails for at least one edge case. That's all I'm saying, just being nitpicky.http://stackoverflow.com/questions/1657893/generating-a-random-winner-and-displaying-the-odds-of-winning-am-i-doing-this-r/1657917#1657917Comment by John Kugelman on Generating a random winner and displaying the odds of winning - am I doing this right?John Kugelman2009-11-01T18:57:24Z2009-11-01T18:57:24ZYou've got it. Something like <code>UPDATE entries SET won = 1 WHERE id IN (?, ?, ?, ?, ?)</code> would work.http://stackoverflow.com/questions/1657834/how-can-i-check-if-multiplying-two-numbers-in-java-will-cause-an-overflow/1657855#1657855Comment by John Kugelman on How can I check if multiplying two numbers in Java will cause an overflow? John Kugelman2009-11-01T18:43:55Z2009-11-01T18:43:55ZHeh, interesting answer given your username. ;-)