finnw

4,486
reputation
433 views

Registered User

name finnw
member for 1 year
seen Dec 15 at 14:16
website
location UK
age 35
Dec
10
comment How to detect System.IO.IOException cause by existing file?
See also stackoverflow.com/questions/425956/…. The accepted answer has a very useful link.
Dec
9
comment while(1) .. break instead of goto
@Matthew, an optimising compiler can spot that if one if (ok) test fails, then so will all the remaining tests, so it can jump directly to the exit point.
Dec
2
comment Checking serial code correctness
See also: stackoverflow.com/questions/559163/…
Nov
30
awarded  Popular Question
Nov
28
comment Why no SortedMultiset in Google Collections?
Almost. One thing it can't do efficiently is answer "how many elements in my Multiset<Integer> are less than 42?" The element set (and its headSet/tailSet methods) will give you the number of distinct values less than 42, but not the number of elements.
Nov
27
comment Synchronization on the local variables
@Sergey, stackoverflow.com/questions/442564/…
Nov
27
answered Synchronization on the local variables
Nov
27
comment Reading samples directly from a converted MP3 file using NAudio
I assumed the BlockAlignReductionStream would do that. Maybe I need to pass it a parameter to tell it to allocate a larger buffer?
Nov
26
comment Separate standard output from standard error when running a program in eclipse
NTail is designed for text filtering and is not suitable for the binary data my program normally writes to stdout.
Nov
26
asked Reading samples directly from a converted MP3 file using NAudio
Nov
19
comment Separate standard output from standard error when running a program in eclipse
This works, but I was hoping to find a way to do it within the IDE, without modifying the I/O code of the application
Nov
18
revised Java: splitting a comma-separated string but ignoring commas in quotes
edited tags
Nov
18
asked Separate standard output from standard error when running a program in eclipse
Nov
16
comment Go examples and idioms
What language is that second code fragment written in? It's neither go nor C.
Nov
16
answered Factorial Algorithms in different languages
Nov
16
comment Easiest way to call Java from C#?
Dupe. stackoverflow.com/questions/171717/…
Nov
16
awarded  Popular Question
Nov
15
comment How to write my own printf() in C ?
Telling a newbie C coder to read GNU code? Don't be cruel :-)
Nov
15
comment Java newbie question: static{}?
Dupe. stackoverflow.com/questions/335311/…
Nov
11
comment What’s your favorite “abandoned rule”?
-1 for not mentioning profiling
Nov
11
comment What’s your favorite “abandoned rule”?
I don't see the "abuse" here, that's a perfectly normal loop. Would you call iterating over a linked list in C "abuse" just because it does something other than increment a counter?
Nov
11
comment What’s your favorite “abandoned rule”?
I do both at once: I start by writing interfaces. I guess that still counts as "coding without a design" as I'm typing into a code editor not a word processor.
Nov
10
comment Is there a way to split strings with String.split() and include the delimiters?
-1 First output does not match input
Nov
10
answered java - effective files copying
Nov
9
comment How do I pop up an alert in Javascript?
Unless this is a dupe (which someone would have found by now) it's a legitimate question.
Nov
9
answered remove method in java BST
Nov
9
comment Java performance in numerical algorithms
Matrices are not always represented that way. See java.awt.image.Kernel for an example of a matrix represented by a 1D array
Nov
8
comment What is your “favourite” Java API annoyance?
@Shog9, Though this may still be a dupe, the question you linked is about the language, not the API.
Nov
8
comment Should I switch to Java from C#?
I voted to close as subjective & argumentative, but I should probably have voted dupe instead: stackoverflow.com/questions/124115/…
Nov
7
comment What is the difference between identity and equality in OOP?
Is there a special case for Strings in Java? I thought that was just in .NET
Nov
7
answered What is the difference between identity and equality in OOP?
Nov
7
comment table like java data structure
What's wrong with Collections.sort?
Nov
7
answered table like java data structure
Nov
7
comment table like java data structure
Unfortunately MultiValueMap is not sorted.
Nov
7
answered Compile a Java class against an interface even if none was specified
Nov
7
awarded  Cleanup
Nov
7
comment Sort Map<String, Object> by keys with IgnoreCase?
I've rolled it back.
Nov
7
comment please tell me why “else” is a syntax error here.
I think the break should be outside the if statement, not part of the else clause. And putting braces around the 'else' part but not the 'then' part is confusing.
Nov
7
comment please tell me why “else” is a syntax error here.
Sun's style guidelines aren't the only ones in the world. And you seem to have picked ones that don't matter much (where to insert spaces) rather than ones related to the problem (braces & indentation.)
Nov
7
revised How to create a JButton with a menu ?
edited tags; edited title
Nov
7
comment Java Algo to Find smallest and second smallest Number in List
I would have upvoted this if you hadn't posted that "I am in a hurry" comment in response to Josh's answer.
Nov
6
accepted How do I escape the wildcard/asterisk character in bash?
Nov
6
comment Google MultiMap and synchronization
See also stackoverflow.com/questions/1675037/…
Nov
6
comment How to retrieve a list of directories QUICKLY in Java?
You could even keep a cmd.exe process alive and pipe a command to it for each directory you want to search.
Nov
6
comment Why no SortedMultiset in Google Collections?
Also its entrySet() method would return a SortedSet instead of a plain Set.
Nov
6
revised How to remove non digits?
added 187 characters in body
Nov
6
revised How to remove non digits?
Another implementation that re-uses the `Matcher`; added 33 characters in body; deleted 117 characters in body
Nov
6
accepted How to remove non digits?
Nov
6
revised How to remove non digits?
3 more implementations, plus benchmarks
Nov
6
answered How to remove non digits?