John Kugelman

11,730
Reputation
476 views

Registered User

Name John Kugelman
Member for 9 months
Seen 3 hours ago
Website
Location Virginia, USA
Age 27
Programmer, guitarist, songwriter, weightlifter, and poker player extraordi-- OMG WHAT IS THAT!!
3h
comment Managing bidirectional associations in my java model
"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.
4h
comment 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++)
These 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?
4h
answered How do I process something like this in unix shell?
20h
revised running an outside program (executable) in python?
added 12 characters in body
1d
accepted php login script - remember me
1d
revised Shell script help! Looping over directories under a directory
added 2 characters in body
1d
revised Php Login Issue (Users cannot login and users can use others passwords to access their own accounts)
edited body
1d
revised Fatal error: Call to a member function prepare() on a non-object
added 17 characters in body
2d
answered shell script purpose of x in “x$VARIABLE”
2d
accepted Can you say that associative arrays in PHP are like 2D arrays?
2d
answered Can you say that associative arrays in PHP are like 2D arrays?
Nov
22
answered Split dictionary of lists into list of dictionaries
Nov
22
answered friend function declared inside befriended class, GCC does not compile
Nov
17
revised Worst case running time (Big O)
added 24 characters in body; edited tags; edited title; added 5 characters in body
Nov
15
accepted Efficient way to compare two strings (ordering of characters irrelevant)
Nov
15
accepted <list> retreving items problem with iterator
Nov
15
answered <list> retreving items problem with iterator
Nov
13
revised Default Values in XForms Input
added 6 characters in body
Nov
12
comment Packet detection using regex
Yep, it would be redundant.
Nov
12
accepted Packet detection using regex
Nov
12
accepted Deleting duplicate dictionaries in a list in python
Nov
12
answered Packet detection using regex
Nov
12
revised Deleting duplicate dictionaries in a list in python
added 332 characters in body; added 16 characters in body; added 296 characters in body; deleted 19 characters in body
Nov
12
answered Deleting duplicate dictionaries in a list in python
Nov
11
answered How to know if my program crashed the last time it ran?
Nov
10
revised Returning arrays in php causes syntax error
added 246 characters in body
Nov
10
accepted Returning arrays in php causes syntax error
Nov
10
answered Returning arrays in php causes syntax error
Nov
6
accepted Modulus in Python’s slicing
Nov
6
answered Modulus in Python’s slicing
Nov
4
accepted Generating a random winner and displaying the odds of winning - am I doing this right?
Nov
3
revised How to sort by line length, then reverse alphabetically
added 811 characters in body
Nov
3
answered How to sort by line length, then reverse alphabetically
Nov
2
revised How can I check if multiplying two numbers in Java will cause an overflow?
edited body
Nov
2
accepted How can I check if multiplying two numbers in Java will cause an overflow?
Nov
2
accepted is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]
Nov
2
comment Find the shortest Path between two nodes (vertices)
Only needed if edges are weighted.
Nov
2
revised How to determine the FIRST set of E in this grammar ?
added 4 characters in body
Nov
2
revised I have a floating-point overflow problem
added 19 characters in body
Nov
2
comment How to determine the FIRST set of E in this grammar ?
First(E) is the set of terminals that could be present at the start of E. These are the terminals you use for state transitions since you'll always hit one of them.
Nov
2
answered How to determine the FIRST set of E in this grammar ?
Nov
2
revised How to determine the FIRST set of E in this grammar ?
added 5 characters in body; edited tags
Nov
2
awarded  Nice Answer
Nov
2
answered Why is it preferable to write func( const Class &value )?
Nov
2
accepted PHP: Create array of arrays, ignoring empty arrays
Nov
2
answered PHP: Create array of arrays, ignoring empty arrays
Nov
2
comment is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]
I explained why both [a-Z] and [A-z] are invalid. Don't downvote me for doing extra credit. :-)
Nov
2
revised is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]
added 96 characters in body
Nov
2
comment is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]
I don't like "try it and see" because if he had tried [A-z] there'd be no error message but it wouldn't work right either.
Nov
2
answered is the regex [a-Z] valid and if yes then is it the same as [a-zA-Z]