158 reputation
5
bio website adaptivity.nl
location Bournemouth, United Kingdom
age 33
visits member for 1 year, 11 months
seen May 15 at 13:10
stats profile views 8
I am a researcher in the area of business information systems. As part of this research I build experimental prototypes.

Apr
7
answered How important is it to reduce the number of lines in code?
Jun
8
answered Javascript: Safely upload a client data file
May
31
answered returning null vs returning zero, which would be better?
Oct
31
answered Which tips helped you learn touch-typing?
Jun
10
comment types of encoding in xml
UTF-8 works with "strange" characters (like UTF-16), most other encodings don't work with arbitrary "strange" characters. The only difference between UTF-8 and UTF-16 is the multiple of bits used. There are some characters that can be expressed in two bytes by UTF-16 and 3 by UTF-8.
Jun
10
awarded  Critic
Jun
10
comment Code reuse: Reusing complex method vs. cherry-picking parts
If they are that dissimilar, probably you would indeed have to rewrite the entire parser part. Depending on the output format, you could reuse an in memory representation of your output (if it isn't worth it you wouldn't)
May
27
awarded  Teacher
May
27
awarded  Supporter
May
27
answered Code reuse: Reusing complex method vs. cherry-picking parts
May
27
awarded  Autobiographer
May
27
awarded  Editor
May
27
revised How do you feel about being asked to code during an interview?
Fix spelling of signer to singer
Oct
17
comment Is premature optimization really the root of all evil?
This is certainly correct. I guess that premature optimization is when code is made more complex / hard to understand for unclear benefits, in a way that has only local impact (design has global impact).
Oct
17
comment Is premature optimization really the root of all evil?
The code introduces further complexity, and will likely not be universally used. Backing it (and similar things) out keeps the code clean.