6,396 reputation
21331
bio website
location
age
visits member for 2 years
seen 13 mins ago
stats profile views 238

May
4
comment is it possible to write web applications with java fx?
FX doesn't come bundled with older version (6 and older) so account for that
May
4
comment Should code and data be treated seperately?
I always say that eval is evil
May
2
answered Assertions vs Exceptions - is my understanding of the differences between the two correct?
Apr
30
revised Where did the convention of naming command line arguments as 'argv' come from?
fixin the formatz
Apr
30
comment Splitting string in java containing relational operators
use [<>=]+ (not the +) to match multiple chars
Apr
30
comment parallel computing list of objects
you can also be memory bound (this happens with a lot of cache misses), for some speedup you can profile the filter so the more common early return are done first
Apr
29
comment Looking for a reference on tic tac toe moves
NOOO SO is for actual code problems, programmers.SE is for the more abstract problems
Apr
29
comment Building one way chat?
@FlorianMargaine no it's the voice and mute, you can mute a chat and only those with +voice (or @opped) can speak in chat
Apr
29
comment Looking for a reference on tic tac toe moves
xkcd.com/832
Apr
27
comment How the hidden features being find?
once the code is out people will reverse engineer it and these things will get discovered
Apr
26
comment How to maintain standard quality of images uploaded by many users?
offer incentives for better photos (better listing spots)
Apr
25
comment Transform math formula into code (line-line intersection)
I had to solve this once and I just googled "line line intersection" and used the formula on the wiki, then again my lines where defined by 2 points
Apr
25
comment Testing multi-threaded race conditions
step through (assembly) instruction by instruction on both ends
Apr
25
comment What is wrong with my program c language?
initialize s before the loop (set it to 0)
Apr
23
comment Approach to simplifying an algorithm
questions on how to improve a working piece of code should go to codereview.SE
Apr
23
comment Why are software download times estimated using dial up?
worst case scenario, and provides a good estimation of a good standard (56kb/s is accepted as dial-up but broadband can differ quite a bit depending on provider and contention)
Apr
23
comment Forward declaration vs include
@NayanaAdassuriya no because A only uses a pointer to B and changes to B won't affect A.hpp (or the files that include it)
Apr
23
answered Forward declaration vs include
Apr
22
comment What is the best way to understand code in a project with null documentation?
@Kazark but then it would be a duplicate of the question I linked...
Apr
22
comment What is the best way to understand code in a project with null documentation?
related: programmers.stackexchange.com/questions/155488/…