JesperE

12,991
reputation
479 views

Registered User

name JesperE
member for 1 year
seen 36 mins ago
website
location Storvreta, Sweden
age 36
Programming language omnivore: Java, Ruby, Python, C, C++, Perl, Erlang, Shell-script, CMake. Has worked a lot with different build systems, GUI construction tools, release engineering, portable programming. I try to live by the Ten Commandments of Ego-less Programming. I currently work at IAR Systems.
32m
answered Coming from C to C++
21h
answered can’t open .svn\tmp\tempfile.tmp: access is denied while doing commit
1d
answered Haskell vs. Prolog comparison
1d
comment Constructors accepting string reference. Bad idea?
+1 for the paragraph about performance.
1d
answered Constructors accepting string reference. Bad idea?
Dec
18
answered Good, cross-platform software update libraries/tools?
Dec
17
comment Visual Studio debug menu invisible
Aha. Thanks. I didn't think of the menu bar as being a toolbar, so I never looked under the "Toolbars" tab. Thanks!
Dec
17
comment Two BlockingQueue - deadlock
Hm. This is an old question, but I think that my smiley indicates that my solution will deadlock as well.
Dec
16
comment Visual Studio debug menu invisible
Under the "Rearrange Commands" dialog, I can select different menus to customize and reset, but there is no Debug menu to select. Its as if the debug menu has been erased completely.
Dec
16
asked Visual Studio debug menu invisible
Dec
16
comment Good, cross-platform software update libraries/tools?
I'd stay far, far, away from anything associated with InstallShield. Even if it's just from the same company.
Dec
15
comment Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executables
I think MSYS does do some command line mangling, yes. I know too little about MSYS to be able to help you there.
Dec
15
comment Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executables
Sorry. What I meant was to run sh -x ./configure. This will pass -x to the shell executing the script which will make it display all the lines before executing them.
Dec
14
answered Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executables
Dec
14
revised Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executables
formatted the output
Dec
14
answered How to define compiler flags at compile time using CMake?
Dec
14
answered Preventing cheating in online chess games?
Dec
12
comment Performance of sockets vs pipes
That sounds good.
Dec
12
comment Performance of sockets vs pipes
There are several reasons. JVM stability is probably the most important. The external code needs to be able to load 3rd-party DLLs of varying quality, and I do not want these to be able to take down the JVM when they crash. Not having to build and link against JVM libraries is also a big win.
Dec
11
comment Performance of sockets vs pipes
BTW: what about latency vs. bandwidth. The communication pattern is usually lots of small messages sent back and forth, so low latency is probably more important than high bandwidth.
Dec
11
comment Performance of sockets vs pipes
Thanks. You don't happen to have (or know) or any benchmarks?
Dec
11
comment Performance of sockets vs pipes
I'm confused. The numbers on the page seem to indicate that named pipes are slower compared to socket, but maybe I'm reading the numbers wrong.
Dec
11
revised Performance of sockets vs pipes
clarified question
Dec
11
revised State Licensing for Programmers
added 4 characters in body
Dec
10
asked Performance of sockets vs pipes
Dec
7
answered How to write correct code at the first time?
Dec
6
awarded  Mortarboard
Dec
5
answered What’s the difference between the message passing and shared memory concurrency models?
Dec
5
comment Obtaining stack trace after an access violation on Windows
Yes, I know that I don't have any guarantees that I can get a full stacktrace, but this about getting as much info out when the system has crashed, so a partial or broken stacktrace is better than nothing.
Dec
4
asked Obtaining stack trace after an access violation on Windows
Nov
27
answered Is there equivalent of <? extends T> <? super T> in c++?
Nov
26
comment Should JUnit tests be javadocced?
Properly named identifiers is no substitute for comments.
Nov
26
answered Should JUnit tests be javadocced?
Nov
24
answered How do I get the latest updated revision via SVN?
Nov
18
awarded  Nice Answer
Nov
16
comment Java Application Installers
Heavy-weight? Which planet are you from? NSIS is probably one of the most light-weight installer tools out there.
Nov
10
answered How to refactor this code?
Nov
10
answered fork/chroot equivalent for Windows server application
Nov
9
comment How do you explain closure to a 5 year old?
If you have the mental capacity of a 5-year old, chances are high that you will not understand closures.
Nov
8
answered java: different return types when overloading
Nov
8
answered Subversion working copy newer than server because of rollback from backup
Nov
5
answered Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
Nov
5
comment Literate programming
Correction: most programmers aren't very bright programmers. :-)
Nov
4
asked SWT standalone scrollbar widget
Nov
4
comment Advanced SWT table widgets
Unfortunately, setItemCount(Integer.MAX_VALUE) causes a OutOfMemory error, presumable because the Table control tries to create an array of that size.
Oct
31
answered regular expression
Oct
29
comment Advanced SWT table widgets
Nobody is talking about seeing 2^32 rows. It is all a matter of addressing. The model I have is a 32 bit memory space. If I can't set the number of rows to 2^32, I will have to implement my own paging scheme, which I was hoping to avoid.
Oct
29
comment Advanced SWT table widgets
Try setItemCount(Integer.MAX_VALUE). The SWT Table widget has a backing array for all items. The only "virtual" about it is that the actual value isn't fetched until it is needed. This works well if the retrieval is expensive, but doesn't scale beyond a couple of million rows.
Oct
29
accepted eclipse stuck when building workspace
Oct
28
asked Advanced SWT table widgets