User JesperE - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:31:29Zhttp://stackoverflow.com/feeds/user/13051http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930724/why-are-my-svn-ant-tasks-failing/1944831#19448310Answer by JesperE for Why are my svn ant tasks failing?JesperE2009-12-22T08:04:59Z2009-12-22T08:04:59Z<p>Maybe your command line client is too old, and the server has a versioning constraint on clients allowed to connect? What does <code>svn --version</code> say?</p>
http://stackoverflow.com/questions/1939198/importing-list-of-source-files-into-an-eclipse-project/1944716#19447160Answer by JesperE for Importing list of source files into an Eclipse projectJesperE2009-12-22T07:29:26Z2009-12-22T07:29:26Z<p>Traditionally, Eclipse assumes that the .project file is at the top-level directory of your project's sources and all the source code below it is included in the project. However, I think that you should be able to use linked folders so that you have a Eclipse project directory which is basically empty but for a .project file and a linked folder which points to your source tree. I do not think however that you can explicitly list the files to include in the project.</p>
<p>EDIT: if you do find a solution to this, please let me know.</p>
http://stackoverflow.com/questions/1940675/how-to-search-all-open-files-in-eclipse/1942592#1942592-1Answer by JesperE for How to search all open files in Eclipse?JesperE2009-12-21T20:59:07Z2009-12-21T20:59:07Z<p>There is no find-in-open-files command in Eclipse, no.</p>
<p>I think that the main reason find-in-open-files is not implemented in Eclipse is probably because the set of open files is for many users rather insignificant. (In fact, I don't know (or care) which files I have open. (I even have Eclipse set to automatically close editors/files when they become too many). If I want to navigate to a file, I open it. Limiting a search to the files I currently have open would be completely pointless for me.)</p>
http://stackoverflow.com/questions/1941443/cmake-linking-against-shared-library-on-windows-error-about-not-finding-lib-fil/1942515#19425150Answer by JesperE for CMake linking against shared library on windows: error about not finding .lib file.JesperE2009-12-21T20:43:56Z2009-12-21T20:43:56Z<p>No, you shouldn't have to do anything special. Can you show us a minimal CMakeLists.txt which demonstrates the problem? Are you setting any of the variables available for changing where CMake places the output files?</p>
http://stackoverflow.com/questions/1940281/cant-run-my-programme-from-command-line/1940295#19402951Answer by JesperE for Cant run my programme from command lineJesperE2009-12-21T14:06:14Z2009-12-21T14:06:14Z<p>You need to pass an argument to your program. <code>new Logic(argv[0])</code> indicates that the program expects at least one command line argument, like so:</p>
<pre><code>java -jar ... somearg
</code></pre>
http://stackoverflow.com/questions/1938750/coming-from-c-to-c/1938862#19388621Answer by JesperE for Coming from C to C++JesperE2009-12-21T08:24:27Z2009-12-21T08:24:27Z<p>The SOLID principles are good guides, but don't forget that you have to have <strong>concrete</strong> use cases if you are going to be able to do good OOD. If you are designing a class (for other programmers) to inherit from, you need at least <strong>three</strong> concrete (and as different/realistic as possible) cases where you actually inherit from the class, or you will not be able to see how the classes should work.</p>
http://stackoverflow.com/questions/1026153/cant-open-svn-tmp-tempfile-tmp-access-is-denied-while-doing-commit/1935510#19355100Answer by JesperE for can't open .svn\tmp\tempfile.tmp: access is denied while doing commitJesperE2009-12-20T10:56:47Z2009-12-20T10:56:47Z<p>In general, if you have an tool such as an antivirus or backup which regularly opens files with exclusive access, this kind of problem may occur. </p>
http://stackoverflow.com/questions/1932770/haskell-vs-prolog-comparison/1932818#19328182Answer by JesperE for Haskell vs. Prolog comparisonJesperE2009-12-19T12:36:28Z2009-12-19T12:36:28Z<p>Prolog is a <strong>logic programming</strong> language, whereas Haskell is a <strong>functional</strong> language. Functional languages are based on the concept of a <strong>function</strong> which takes a number of arguments and computes a value.</p>
<p>Prolog, on the other hand, does not have functions. Instead, <strong>predicates</strong> are used to prove a "theorem". Prolog predicates do not compute a value, they can answer "yes" or "no" and optionally bind input variables to values:</p>
<p>The usefulness of functional and logic programming often overlap. Functional programming has gained quite a bit of traction lately, while Prolog is still much a niche language, much due to the fact that it is much more different from the common concepts of functions and methods of mainstream OOP than functional programming is, and often considered (very) difficult to learn.</p>
<p>Certain problems become almost trivial to implement in Prolog, especially in combination with <a href="http://en.wikipedia.org/wiki/Constraint%5Fsatisfaction" rel="nofollow">constraint solvers</a>.</p>
<p>You can read more about logic programming on <a href="http://en.wikipedia.org/wiki/Logic%5Fprogramming" rel="nofollow">Wikipedia</a>.</p>
http://stackoverflow.com/questions/1932654/constructors-accepting-string-reference-bad-idea/1932660#19326600Answer by JesperE for Constructors accepting string reference. Bad idea?JesperE2009-12-19T11:23:57Z2009-12-19T11:23:57Z<p>If you are writing a compiler, copying the filename once or twice will not be the bottleneck. This is more of a C++ style issue, which I leave to the more C++ savvy people around here.</p>
http://stackoverflow.com/questions/1902081/good-cross-platform-software-update-libraries-tools/1926962#19269621Answer by JesperE for Good, cross-platform software update libraries/tools?JesperE2009-12-18T08:08:27Z2009-12-18T08:08:27Z<p>I don't think Subversion is really what you are looking for. You would be using only a very small subset of Subversion's functionality, and you would still miss things like versioning constraints between different components (component A requires version X of component B, etc).</p>
<p>Using Eclipse p2 for this would be interesting; p2 is not limited to distributing Eclipse plugins/features, although I do believe you'll find yourself somewhere along the bleeding edge on that one.</p>
<p>Perhaps RPM or DEB would fit your needs (along with suitable UI layers on top). Some porting work might be required though.</p>
http://stackoverflow.com/questions/1913034/visual-studio-debug-menu-invisible1Visual Studio debug menu invisibleJesperE2009-12-16T07:58:48Z2009-12-16T11:46:16Z
<p>I feel a little stupid asking this, but the "Debug"-menu in my Visual Studio installation has disappeared. It supposed to be between the "Build" and "Tools" menu, but it is simply not there. Restarting VS doesn't help. Also tried looking for a way to customize the menus, but no success.</p>
<p>Any ideas where it went, and how I can get it back?</p>
http://stackoverflow.com/questions/1863398/firefox-3-6-build-error-on-windows-vs2005-c-compiler-cannot-create-executables/1901475#19014750Answer by JesperE for Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executablesJesperE2009-12-14T15:15:05Z2009-12-14T15:15:05Z<p>I don't know too much about MSYS, but it seems as if MSYS and/or configure passes some weird options to the compiler. The compiler seems to interpret "c:/mozilla-build/msys/DTEST=2" as the source file type, which leads me to suspect that /T appears on the command line (see <a href="http://msdn.microsoft.com/en-us/library/032xwy55.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/032xwy55.aspx</a>).</p>
<pre><code>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.
cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
cl : Command line warning D9024 : unrecognized source file type 'c:/mozilla-build/msys/DTEST=2', object file assumed
conftest.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation. All rights reserved.
/out:DTEST=2.exe
/out:conftest.exe
c:/mozilla-build/msys/DTEST=2
conftest.obj
LINK : fatal error LNK1181: cannot open input file 'c:/mozilla-build/msys/DTEST=2.obj'
configure: failed program was:
</code></pre>
<p>Can you run the configure-script with the <code>-x</code> option and extract the <strong>exact</strong> compiler command line?</p>
http://stackoverflow.com/questions/1891084/how-to-define-compiler-flags-at-compile-time-using-cmake/1901417#19014171Answer by JesperE for How to define compiler flags at compile time using CMake?JesperE2009-12-14T15:05:55Z2009-12-14T15:05:55Z<p>You may find some useful tricks here: <a href="http://stackoverflow.com/questions/1438535/how-to-run-a-command-at-compile-with-in-makefile-generated-by-cmake/1468695#1468695">http://stackoverflow.com/questions/1438535/how-to-run-a-command-at-compile-with-in-makefile-generated-by-cmake/1468695#1468695</a></p>
http://stackoverflow.com/questions/1901352/preventing-cheating-in-online-chess-games/1901378#19013787Answer by JesperE for Preventing cheating in online chess games?JesperE2009-12-14T14:59:10Z2009-12-14T14:59:10Z<p>I can't see that there is anyway to prevent someone to using a chess engine to assist them, unless you can observe the player.</p>
<p>You might have some luck protecting against fully automated bots, though.</p>
http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipes1Performance of sockets vs pipesJesperE2009-12-10T18:05:57Z2009-12-11T17:39:32Z
<p>I have a Java-program which communicates with a C++ program using a socket on localhost. Can I expect to gain any performance (either latency, bandwidth, or both) by moving to use a native OS pipe? I'm primarily interested in Windows at the moment, but any insight related to Unix/Linux/OSX is welcome as well. </p>
<p>EDIT: Clarification: both programs run on the same host, currently communicating via a socket, i.e. by making a TCP/IP connection to localhost:. My question was what are the potential performance benefits of switching to using (local) named pipes (Windows), or their Unix equivalent (AF_UNIX domain socket?).</p>
http://stackoverflow.com/questions/384738/state-licensing-for-programmers/384740#38474011Answer by JesperE for State Licensing for ProgrammersJesperE2008-12-21T18:11:00Z2009-12-11T17:34:02Z<p>This might seem like a good idea, but I cannot imagine how it could be efficiently and practically implemented. Also, programmers generally don't have the <strong>immediate</strong> risk of causing bodily harm, as is the case of electricians and doctors.</p>
http://stackoverflow.com/questions/1862727/how-to-write-correct-code-at-the-first-time/1862849#18628490Answer by JesperE for How to write correct code at the first time?JesperE2009-12-07T20:58:39Z2009-12-07T20:58:39Z<p>Practise, use the right tools for the job, write lots of code, learn your tools, write more code, read books about programming, write even more code. You get the idea. Programming is hard work, and there aren't really any shortcuts.</p>
<p>That said, anybody giving a coding task at an interview expecting a result which will compiles cleanly and works out-of-the box is clearly mad, and you do not want to work there. Good managers use coding tasks to see how you approach a problem.</p>
http://stackoverflow.com/questions/1853284/whats-the-difference-between-the-message-passing-and-shared-memory-concurrency-m/1853296#18532964Answer by JesperE for What's the difference between the message passing and shared memory concurrency models?JesperE2009-12-05T20:09:33Z2009-12-05T20:09:33Z<p>Message passing models (Erlang, for example) do not have any shared state; all synchronization and communication is done by exchanging messages. Shared memory models communicate by reading/writing to shared memory blocks, which are protected by semaphores or similar.</p>
http://stackoverflow.com/questions/1845500/obtaining-stack-trace-after-an-access-violation-on-windows0Obtaining stack trace after an access violation on WindowsJesperE2009-12-04T07:58:22Z2009-12-04T18:17:01Z
<p>I'm trying to use the StackWalk64 function in DbgHelp.dll to get a stack trace when I receive a SIGSEGV, but the stack trace obtained is unrelated to the actual site of the access violation:</p>
<pre><code>[0] sigsegv_handler() e:\hudson\jobs\ide-nightly-trunk\workspace\ide-nightly-trunk\core\ide\cspyserver\src\stackwalker\cssstackwalker.cpp:31
[1] XcptFilter() C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4148_none_5090ab56bcba71c2\MSVCR90.dll
[2] __tmainCRTStartup() f:\dd\vctools\crt_bld\self_x86\crt\src\crtexe.c:603
[3] seh_longjmp_unwind4() C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4148_none_5090ab56bcba71c2\MSVCR90.dll
[4] BaseThreadInitThunk() C:\Windows\syswow64\kernel32.dll
[5] RtlCreateUserProcess() C:\Windows\SysWOW64\ntdll.dll
[6] RtlCreateProcessParameters() C:\Windows\SysWOW64\ntdll.dll
</code></pre>
<p>I suspect that weird windows exception handling and setjmp/longjmp is involved, but I'm not really sure what I should be looking for.</p>
http://stackoverflow.com/questions/1806964/is-there-equivalent-of-extends-t-super-t-in-c/1806983#18069832Answer by JesperE for Is there equivalent of <? extends T> <? super T> in c++?JesperE2009-11-27T05:50:45Z2009-11-27T05:50:45Z<p>To answer your second question: yes. As far as generics is concerned, interfaces are treated the same as real classes.</p>
<p>I'll leave the first question to the more C++-savvy people.</p>
http://stackoverflow.com/questions/1804540/should-junit-tests-be-javadocced/1804559#18045591Answer by JesperE for Should JUnit tests be javadocced?JesperE2009-11-26T16:12:41Z2009-11-26T16:12:41Z<p>I don't see why you should treat test cases any differently than your production code with respect to comments. </p>
http://stackoverflow.com/questions/1790256/how-do-i-get-the-latest-updated-revision-via-svn/1790273#17902731Answer by JesperE for How do I get the latest updated revision via SVN?JesperE2009-11-24T14:03:56Z2009-11-24T14:03:56Z<p>You can use the <code>svnversion</code> program.</p>
http://stackoverflow.com/questions/150638/ruby-off-the-rails48Ruby off the railsJesperE2008-09-29T21:00:38Z2009-11-13T16:21:46Z
<p>Sometimes it feels that my company is the only company in the world using Ruby but not Ruby on Rails, to the point that Rails has almost become synonymous with Ruby.</p>
<p>I'm sure this isn't really true, but it'd be fun to hear some stories about non-Rails Ruby usage out there.</p>
http://stackoverflow.com/questions/1706684/how-to-refactor-this-code/1706721#17067210Answer by JesperE for How to refactor this code? JesperE2009-11-10T09:44:37Z2009-11-10T09:44:37Z<p>You should use method overloading to avoid instanceof calls. Each <code>if (sField instanceof ...)</code> should be moved to a separate method taking the desired type as parameter.</p>
http://stackoverflow.com/questions/1686578/fork-chroot-equivalent-for-windows-server-application/1706620#17066200Answer by JesperE for fork/chroot equivalent for Windows server applicationJesperE2009-11-10T09:24:55Z2009-11-10T09:24:55Z<p>Using fork/chroot is simply not how things are done on Windows. If you are concerned about security in subprocesses, maybe some form of virtualization or sandboxing is what you want to use. Passing complex information to the subprocess can be done by some form of RPC-solution.</p>
<p>It sounds to me as if you have designed your application in the Unix way, and now you want to run in on Windows without having to change anything. In that case, you may want to consider using <strong><a href="http://cygwin.com" rel="nofollow">Cygwin</a></strong>, but I'm not sure if/how Cygwin emulates <code>chroot</code>.</p>
http://stackoverflow.com/questions/1696314/java-different-return-types-when-overloading/1696355#16963557Answer by JesperE for java: different return types when overloadingJesperE2009-11-08T12:59:35Z2009-11-08T12:59:35Z<p>No. You can, however, narrow the return type when subclassing. This is known as "covariant return types". If a method in a base class returns T, you are allow to override that method in a subclass and have it return a subclass of T.</p>
http://stackoverflow.com/questions/1693340/subversion-working-copy-newer-than-server-because-of-rollback-from-backup/1695765#16957650Answer by JesperE for Subversion working copy newer than server because of rollback from backupJesperE2009-11-08T08:27:09Z2009-11-08T08:27:09Z<p>I can't see any solution other than making a new checkout, and manually merging your uncommitted changes into your new working copy. Basically, your working copy comes from a alternate reality -- one where the server upgrade actually worked -- and I don't think Subversion has any provisions fixing this.</p>
http://stackoverflow.com/questions/1675514/swt-standalone-scrollbar-widget1SWT standalone scrollbar widgetJesperE2009-11-04T17:47:13Z2009-11-06T11:42:28Z
<p>Is there a way to create a "standalone" scrollbar in SWT? I would like to have a scrollbar which I have full control over myself and use it to control the contents of another widget in a way which isn't possible with the "built-in" scrollbars in the Table widget, for example.</p>
http://stackoverflow.com/questions/1681263/using-gpb-how-do-i-make-my-wrapper-classes-stop-accepting-binary-messages-that-a/1683979#16839791Answer by JesperE for Using GPB, how do I make my wrapper classes stop accepting binary messages that aren't meant for them?JesperE2009-11-05T22:08:29Z2009-11-05T22:08:29Z<p>If the data you pass to MyMessage.parseFrom() does not represent a message of that type, you will get a InvalidProtocolBufferException. Isn't that enough for you?</p>
<p>PB messages are not self-describing, so need to know (by some means) which message you are trying to parse. Of course, you can try to parse them and catch InvalidProtocolBufferException, but that isn't very nice. Instead, I think most people are using the approach you are describing: use a base message class with a type field (usually an enum) and a number of optional fields, one for each possible sub-type. This allows you to parse the message, and then switch on the message type to extract the actual "payload" of the message.</p>
http://stackoverflow.com/questions/1653712/regular-expression/1653738#16537381Answer by JesperE for regular expression JesperE2009-10-31T08:01:09Z2009-10-31T08:01:09Z<p>I presume that you by "lexical compiler" mean a lexer, i.e. a program which takes a stream of characters and converts it into tokens, for further consumption by a parser.</p>
<p>Regular expressions are used to desribe how to construct the tokens from the character stream. The lexer is typically specified by a set of regular expressions which are applied one by one to the character stream, and whenever a match is found, an associated rule is executed to determine which token this particular match should produce (if any).</p>
http://stackoverflow.com/questions/1939631/cannot-run-program-make-launching-failed-iam-using-here-mingw32-but-not-cygwComment by JesperE on Cannot run program “make”: Launching failed) .iam using here MinGW32 but not cygwin in eclipse-SDK-3.2.2-win32JesperE2009-12-22T07:12:02Z2009-12-22T07:12:02ZPlease format your code.
http://stackoverflow.com/questions/1940675/how-to-search-all-open-files-in-eclipse/1941077#1941077Comment by JesperE on How to search all open files in Eclipse?JesperE2009-12-22T07:07:49Z2009-12-22T07:07:49ZBut simplicity of implementation shouldn't be a criteria for inclusion. I think the use case for find-in-open-files is too weak to warrant inclusion, although the UI impact would be rather small.http://stackoverflow.com/questions/1940675/how-to-search-all-open-files-in-eclipseComment by JesperE on How to search all open files in Eclipse?JesperE2009-12-21T20:53:38Z2009-12-21T20:53:38ZEclipse is not a general-purpose text-editor.http://stackoverflow.com/questions/1932654/constructors-accepting-string-reference-bad-idea/1932666#1932666Comment by JesperE on Constructors accepting string reference. Bad idea?JesperE2009-12-19T11:35:40Z2009-12-19T11:35:40Z+1 for the paragraph about performance.http://stackoverflow.com/questions/1913034/visual-studio-debug-menu-invisible/1913151#1913151Comment by JesperE on Visual Studio debug menu invisibleJesperE2009-12-17T08:20:44Z2009-12-17T08:20:44ZAha. Thanks. I didn't think of the menu bar as being a toolbar, so I never looked under the "Toolbars" tab. Thanks!http://stackoverflow.com/questions/1496439/two-blockingqueue-deadlock/1496474#1496474Comment by JesperE on Two BlockingQueue - deadlockJesperE2009-12-17T08:19:11Z2009-12-17T08:19:11ZHm. This is an old question, but I think that my smiley indicates that my solution will deadlock as well.
http://stackoverflow.com/questions/1913034/visual-studio-debug-menu-invisible/1913151#1913151Comment by JesperE on Visual Studio debug menu invisibleJesperE2009-12-16T10:55:10Z2009-12-16T10:55:10ZUnder 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.
http://stackoverflow.com/questions/1902081/good-cross-platform-software-update-libraries-tools/1902433#1902433Comment by JesperE on Good, cross-platform software update libraries/tools?JesperE2009-12-16T07:48:37Z2009-12-16T07:48:37ZI'd stay far, far, away from anything associated with InstallShield. Even if it's just from the same company.http://stackoverflow.com/questions/1863398/firefox-3-6-build-error-on-windows-vs2005-c-compiler-cannot-create-executables/1901475#1901475Comment by JesperE on Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executablesJesperE2009-12-15T22:35:38Z2009-12-15T22:35:38ZI think MSYS does do some command line mangling, yes. I know too little about MSYS to be able to help you there.
http://stackoverflow.com/questions/1863398/firefox-3-6-build-error-on-windows-vs2005-c-compiler-cannot-create-executables/1901475#1901475Comment by JesperE on Firefox 3.6 build error on Windows VS2005 - C compiler cannot create executablesJesperE2009-12-15T16:40:15Z2009-12-15T16:40:15ZSorry. What I meant was to run <code>sh -x ./configure</code>. This will pass -x to the shell executing the script which will make it display all the lines before executing them.http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipes/1883208#1883208Comment by JesperE on Performance of sockets vs pipesJesperE2009-12-12T08:45:52Z2009-12-12T08:45:52ZThat sounds good.
http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipesComment by JesperE on Performance of sockets vs pipesJesperE2009-12-12T08:44:38Z2009-12-12T08:44:38ZThere 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.http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipes/1883208#1883208Comment by JesperE on Performance of sockets vs pipesJesperE2009-12-11T17:44:49Z2009-12-11T17:44:49ZBTW: 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.http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipes/1883208#1883208Comment by JesperE on Performance of sockets vs pipesJesperE2009-12-11T17:43:46Z2009-12-11T17:43:46ZThanks. You don't happen to have (or know) or any benchmarks?http://stackoverflow.com/questions/1882886/performance-of-sockets-vs-pipes/1882939#1882939Comment by JesperE on Performance of sockets vs pipesJesperE2009-12-11T17:42:48Z2009-12-11T17:42:48ZI'm confused. The numbers on the page seem to indicate that named pipes are <b>slower</b> compared to socket, but maybe I'm reading the numbers wrong.