Chris Jester-Young

21,452
Reputation
1604 views

Registered User

Name Chris Jester-Young
Member for 1 year
Seen 20 hours ago
Website
Location Durham, NC
Age 29

Unix coder. C++, Perl, JavaScript, Scheme, and (on occasion*) Java and Ruby. Facetious to a fault.

On IRC, I'm cky on freenode. I hang out on #stackoverflow a lot, and I welcome any comments on my posts!

(For pedants reviewing my posts: I'm an expat Kiwi, so I prefer to spell with New Zealand English.)

* i.e., in my day job :-P

Nov
22
comment A very average puzzle
I created a version that used mixed fractions, which helps a little, but is still not perfect (still trips up if dealing with large numbers that are relatively prime (gcd == 1)). :-P So, I'll keep trying. :-)
Nov
22
comment A very average puzzle
Yes, it's one of those "open secrets" that's pretty well-known among Stack Overflow oldtimers. :-P BTW, I'm still working on a more robust solution---coming up soon!
Nov
20
answered A very average puzzle
Nov
17
comment Perl Script, Fork/Exec, System claims my process has died when in fact only my child process has died
Agree with Adam. Show me the code! (Apologies to Jerry Maguire.)
Nov
17
accepted Changing Open Source Software to divert donations
Nov
17
comment How can I use my multiple cored dedicated server to run my java application?
@steven: No, it doesn't. It's a programming question.
Nov
16
answered ComBSTR assignment
Nov
15
awarded  Nice Answer
Nov
11
answered Changing Open Source Software to divert donations
Nov
11
comment How do I run a Perl script on multiple input files with the same extension?
@Jonathan: It's likely that the OP is running on Windows, using the cmd shell. As far as I remember, cmd does not do wildcard expansion as Unix shells do.
Nov
10
answered Scheme: Implementing n-argument compose using fold
Nov
10
comment Scheme: Implementing n-argument compose using fold
I've developed a way to sort-of fake values and call-with-values: new post coming up. :-)
Nov
10
comment How do I calculate someone’s age in C#?
@Stefan: Back when this was written, comments were not a feature of the site. :-)
Nov
9
accepted Iterate over functions
Nov
9
accepted Scheme: Implementing n-argument compose using fold
Nov
9
comment Iterate over functions
Wow. Functional Java was obviously designed with code golfing (or obfuscation :-P) in mind...package name fj, with functor type F, with method named f. I like the idea behind the library, but I'd not have chosen those names. :-P
Nov
9
revised Iterate over functions
Add example usage :-)
Nov
9
comment Iterate over functions
Not a fan of generics?
Nov
9
revised Iterate over functions
Add a simple reflection-based approach, as an alternative
Nov
9
answered Iterate over functions
Nov
9
answered What is wrong with this c++ typedef?
Nov
9
comment Preventing PHP Code from being Pirated
Agree with Jason. It's impossible to rep-whore with a community wiki question; only badge-whoring is possible. But since badges confer no special privileges, it isn't as big of a deal.
Nov
9
answered When I change a parameter inside a function, does it change for the caller, too?
Nov
9
answered How to check for NaN in Scheme?
Nov
9
comment Scheme: Implementing n-argument compose using fold
[Dirk's answer](stackoverflow.com/questions/1693181/…) (since deleted) had the right idea: just use values instead of identity. This is actually the method my implementation of compose exploits: (compose) simply returns values.
Nov
8
answered Scheme: Implementing n-argument compose using fold
Nov
8
comment What is the single most influential book every programmer should read?
(In response to the actual question: I started my development career at 20, by which time I've already been coding with a number of programming languages for more than 5 years. I suspect that a large proportion of the SO readership is in a similar circumstance. They may be new to professional development, but they're definitely not programming newbies.)
Nov
8
comment What is the single most influential book every programmer should read?
@jmucchiello: I don't know if you're responding to my post, or to the comments here, but my post was not written with beginners in mind (I try to avoid answering "newbie" questions on SO, because other people can answer them much more skilfully than I can). :-) If anything, I'm targeting people of a similar experience level to mine.
Nov
5
comment JAXB - generating classes from XSD - converting enums to strings
You can always use the toString or the name methods of the enum, surely? :-)
Nov
5
awarded  java
Nov
2
comment Converting a Scheme expression to a string
That answer is correct, though with implementations supporting SRFI 6, you can just make an output string port, and write to it.
Oct
17
accepted Java Syntax: byte f()[] vs. byte[] f()
Oct
15
comment Which STL Container?
+1 Very ingenious answer. :-) I was gonna say it doesn't provide indexed access, but if you use the index as the key, that actually could work and be decent.
Oct
15
comment An efficient equals(Object o) implementation
EqualsBuilder, at least for the version I have, doesn't do getClass comparison unless two arrays are being compared, which is actually fair game (in most cases).
Oct
15
comment An efficient equals(Object o) implementation
@silky: Thanks for correcting the spelling of my name. :-P
Oct
15
comment An efficient equals(Object o) implementation
I prefer to use Apache Commons EqualsBuilder for this reason: it is less maintenance to use when you're adding new fields. However, you can argue that you'd simply get IDEA to regenerate equals each time you add fields, and that'd be a fair point too. To each their own. :-P
Oct
15
comment An efficient equals(Object o) implementation
@silky: Incidentally I agree that using Apache Commons EqualsBuilder is the best approach too, so have a +1 for that. :-P
Oct
15
comment An efficient equals(Object o) implementation
@silky: lol I normally never kick up a fuss about it, but given that my conclusion is the opposite of Steve's (namely, that substitutability is more important to uphold than symmetry), I felt that my point should be heard too. :-P
Oct
15
comment An efficient equals(Object o) implementation
@silky: I brought it up first and you didn't acknowledge me? That's it, eat another -1. (Just kidding; not wasting my rep point over this.) :-P
Oct
15
comment An efficient equals(Object o) implementation
The trouble with using instanceof is it's asymmetric if you're comparing an object one class A with an object of class B, where B subclasses A. But to do "class equality" comparison is even worse; then subclasses are never considered equal to superclass instances, even when substitutability says that they should be equal. i.e., instanceof is the lesser of two evils.
Oct
14
comment At a Programming crossroads, PHP, .NET, generalise or specialise?
@Alex: Don't mind the others; some people just look at the title and already decided that your post is a duplicate, judging a book by its cover and all that. :-P
Oct
14
comment At a Programming crossroads, PHP, .NET, generalise or specialise?
To clarify my last point, that level of passion will, in some cases, start the next market. I think that's where "market leaders/innovators" come from.
Oct
14
comment At a Programming crossroads, PHP, .NET, generalise or specialise?
I think all this talk about chasing the market sort of misses the point. Really great programmers program because they love it, not because it's a goldmine. Yes, I agree with riding the upcoming wave. But the foremost priority is to find one's passion, and run with it. YMMV.
Oct
14
answered At a Programming crossroads, PHP, .NET, generalise or specialise?
Oct
14
answered Generate SQL statements with python
Oct
14
comment Compound Conditional in Lisp
But but but...cond provides an implicit progn in every branch, so the use of progn here is superfluous. Well, I'm talking about Common Lisp, anyway. Who knows about other dialects of Lisp. :-P
Oct
14
comment What’s the difference between Math.Floor() and Math.Truncate() in .NET?
@Pax Diablo: Given you've changed your nickname back, I'm rolling back your change. :-P
Oct
13
comment Decision Tree code golf
You can shorten it further by using js (lowercase) as the engine name.
Oct
13
comment How to view the contents of parsed R functions?
(i.e., they're not functions per se, despite the visual similarity.)
Oct
13
answered “An unidentified program wants to access your computer” in vista