Chris Conway

7,521
Reputation
346 views

Registered User

Name Chris Conway
Member for 1 year
Seen 57 mins ago
Website
Location Brooklyn, NY
Age 32
Permanent graduate student.
1d
comment JUnit: Enable assertions in class under test
Cool idea! It's not going to work for me, though, if it doesn't work in Eclipse.
1d
comment JUnit: Enable assertions in class under test
@Alexander: That's not a bad idea. @jitter: Of course you're right. Maven seems to enable assertions by default. I hadn't noticed before that Eclipse has a preference setting for this. The problem is these kinds of settings can change behind your back...
1d
comment JUnit: Enable assertions in class under test
That doesn't work in my case. It relies on the order that the classes get loaded.
2d
asked JUnit: Enable assertions in class under test
2d
awarded  Popular Question
Nov
16
comment Any guaranteed minimum sizes for types in C?
A char is required to be one byte. But a byte is not required to be 8 bits.
Nov
11
revised Is it possible to use unary function instead of binary in `flip`?
Editing for clarity
Nov
11
accepted How do I duplicate a whole line in Emacs?
Nov
9
answered Replacing an element in a n-ary tree
Nov
9
awarded  Popular Question
Nov
9
revised Replacing an element in a n-ary tree
Adding more generic version
Nov
8
accepted Replacing an element in a n-ary tree
Nov
8
answered Replacing an element in a n-ary tree
Nov
6
comment Cons’ing a List in Java
Functional Java looks pretty cool, but I'm already relying pretty heavily on Google Collections and am not in the market for a new library dependency :-(
Oct
27
revised Mutable Data in OCaml
copy edits
Oct
22
comment OCaml: What is the different between `fun` and `function` keywords?
@Rosarch, yes, of course. I think the question is implicitly about anonymous function definitions.
Oct
22
comment How to configure Eclipse to autocomplete using java.util.List and not java.awt.List?
It's one of my most highly rated questions too. Scratches an itch!
Oct
22
awarded  Nice Question
Oct
21
asked How to configure Eclipse to autocomplete using java.util.List and not java.awt.List?
Oct
21
awarded  Notable Question
Oct
20
awarded  Notable Question
Oct
19
revised OCaml: Set modules
Adding some examples of set operations
Oct
19
revised How do I strip whitespace from a string in OCaml?
Inlining code, cleaning up link
Oct
19
comment How do I strip whitespace from a string in OCaml?
Core is not part of the standard library. It's a third-party library that extends the standard (like Extlib and Batteries). You can download it here: janestcapital.com/?q=node/13
Oct
13
revised What is a monad?
adding a bit of information at the beginning
Oct
6
comment Turn off buffering in pipe
When pipelining calls to unbuffer, you should use the -p argument so that unbuffer reads from stdin.
Oct
3
answered OCaml Emacs Tuareg: Evaluate phrase keyboard shortcut, and how to display actual greek symbols?
Oct
3
comment OCaml: Permutation of every value in two sets? (how to translate this from Java)
Quite right. I've fixed it now.
Oct
3
revised OCaml: Permutation of every value in two sets? (how to translate this from Java)
fixing mistakes
Oct
2
answered OCaml: Permutation of every value in two sets? (how to translate this from Java)
Oct
2
awarded  Popular Question
Sep
30
comment How do I change the scratch message in Emacs?
I'm using Emacs 23.0. Could be an API change.
Sep
30
comment How do I change the scratch message in Emacs?
Doesn't work for me.
Sep
27
answered What’s a stupidly simple way to compile an OCaml project?
Sep
27
comment Why does the runtime shows the generic types as “GenericType`n”?
I thought the CLI didn't erase generic types? If not, where does "String" when "List<String>" becomes List`1?
Sep
26
comment Does “match … true -> foo | false -> bar” have special meaning in Ocaml?
Not only is it equivalent to an if statement, it's quite likely that all if statements get desugared in this way by the compiler.
Sep
25
comment Ocaml: Set current working directory?
There are certain Unix functions that are not implemented on Windows. See: caml.inria.fr/pub/docs/…
Sep
22
awarded  Popular Question
Sep
21
revised OCaml: Set modules
typo
Sep
21
comment OCaml: Set modules
Right. It's functors all the way down.
Sep
20
revised OCaml: Set modules
Adding info
Sep
20
answered OCaml: Set modules
Sep
19
comment How do you know when to use fold-left and when to use fold-right?
This Q is more general than that, which was specifically about Haskell. Laziness makes a big difference in the answer to the question.
Sep
18
accepted Parser/Lexer ignoring incomplete grammar rules
Sep
18
answered Parser/Lexer ignoring incomplete grammar rules
Sep
17
comment Sharing output streams through a JNI interface
Reimplementing the library in Java is not an option (it is large, mature, and performance intensive).
Sep
16
asked Sharing output streams through a JNI interface
Sep
15
answered OCaml: List that could contain two types?
Sep
10
revised Why do you need to append an L or F after a value assigned to a C++ constant?
on -> of
Sep
9
revised Why do you need to append an L or F after a value assigned to a C++ constant?
Making precision/represntability more accurate