Wouter Lievens

564
reputation
121 views

Registered User

name Wouter Lievens
member for 1 year
seen 10 hours ago
website
location Belgium
age 26
Dec
4
comment Domain Driven Design: where does the workflow logic lie?
One might say that OO domain modeling is about nounification of verbs.
Dec
2
comment Abuse of C# lambda expressions or Syntax brilliance?
"Guessing based on the values used" is ALWAYS what you do when looking at code. If you encounter a call to stream.close() you assume it closes a stream, yet it might as well do something completely different.
Dec
2
comment Windows Executable to run Java application deleted by anti virus scanner
It ended up working with NSIS... I tried all the others but they all got picked off. Thanks!
Nov
27
awarded  Popular Question
Nov
19
comment My jQuery code is working, but is it very crappy from a programmer’s point of view?
+1 for using $this - the prefix. I always felt dirty when caching jQuery directives, because it meant losing the jQuery readibility. Your practice addresses that!
Nov
19
answered Mathematical Evaluation of Source Code
Nov
10
accepted Outlook Express is not recognizing *some* HTML emails
Nov
10
accepted How do I get gdb to ignore my shell window’s size?
Nov
9
comment Windows Executable to run Java application deleted by anti virus scanner
Also, I see more than a flicker if I use start/b, actually no difference at all, sorry.
Nov
9
comment Windows Executable to run Java application deleted by anti virus scanner
The application saves data on the stick, so it cannot be write protected.
Nov
9
asked Windows Executable to run Java application deleted by anti virus scanner
Nov
1
awarded  Popular Question
Oct
1
awarded  Notable Question
Sep
24
comment Simple “Long Polling” example code?
This is a busy wait that blocks your current thread. That doesn't scale at all.
Sep
21
comment Link checking a password protected website
Check what mechanism the private site uses. If it's cookies, stuff the right cookie in your requests when you pull the data.
Sep
21
answered Is the Specification Pattern obsolete when you can use Dynamic LINQ?
Sep
16
awarded  Yearling
Sep
8
comment HTML Canvas: draw image without anti-aliasing
Thanks. I figured this might be the only way, but I'm still fighting with some inexplicable implementation issues.
Sep
8
revised HTML Canvas: draw image without anti-aliasing
added 181 characters in body
Sep
8
asked HTML Canvas: draw image without anti-aliasing
Aug
20
comment Name of the Operating System in java (not “os.name”)
You describe the problem well. And yes, I can use the tips from this thread to find out if they are lying about the OS and fail in that case.
Aug
20
awarded  Nice Question
Aug
19
asked “Click to execute” in Mac OS X
Aug
19
comment Why do so many insist on dragging the JVM into new applications?
The memory overhead of the JVM is significiant.
Aug
18
comment Name of the Operating System in java (not “os.name”)
The security concern is "copy protection". It should be nontrivial to run the application on a medium (usb stick) other than the one it is delivered on.
Aug
18
comment Name of the Operating System in java (not “os.name”)
Or at least that's the current design, but I could change that. I'll think about it.
Aug
18
comment Name of the Operating System in java (not “os.name”)
There is one jar file that has to serve every platform.
Aug
18
comment Name of the Operating System in java (not “os.name”)
The application needs to perform a number of operations that are not supported in Java's standard libraries. That means the code contains a number of exec() calls. These commands are OS-dependent.
Aug
18
revised Name of the Operating System in java (not “os.name”)
explaining "secure"
Aug
18
comment Name of the Operating System in java (not “os.name”)
Secure means nontrivial to circumvent. It's for a desktop application. The user could always deobfuscate, decompile, edit and recompile the code, but that is significantly harder than passing -D to the jvm. We want to make tinkering nontrivial, not impossible (since that can't be done).
Aug
18
asked Name of the Operating System in java (not “os.name”)
Aug
10
comment Portable way of finding total disk size in Java (pre java 6)
I mentioned Apache commons-io in the question. I'm looking for total disk space.
Aug
6
comment File modification date in Java
The timezone thing makes sense. I'll look into that.
Aug
6
comment File modification date in Java
The file is on a USB stick, so I don't know what file system applies there. But the time zone thing makes sense.
Aug
6
comment File modification date in Java
The date is significantly different, so something certainly did change.
Aug
4
asked File modification date in Java
Jul
30
awarded  Popular Question
Jul
16
answered How can I share code between C# and Flex?
Jul
15
comment Get Drive Size in Java 5
Actually, FileSystemUtils goes via the command line, using the dir command. And it only supports free size, not total size.
Jul
15
asked Portable way of finding total disk size in Java (pre java 6)
Jul
7
comment An algorithm for estimating the runtime for a program
If you manage to rephrase your question and make it readable, I'll give it a shot.
Jul
2
comment Java: refactoring static constants
Re your last bullet: one would still have strings all over the place. I don't see why properties.get("SYMBOL") is better than Constants.SYMBOL
Jul
2
comment Return class name in which a static method resides
He might want it to be refactoring-safe. And for inheritance of course, though that's tricky.
Jul
1
comment Hidden features of C
In C++ you can even overload it.
Jul
1
comment Hidden Features of Java
Use final wherever possible for additional checks.