13,558 reputation
11133
bio website
location
age
visits member for 2 years
seen 1 hour ago
stats profile views 403

2d
comment Java 8 Iterable.forEach() vs foreach loop
for the last paragraph you can use a function reference: collection.forEach(MyClass::loopBody);
2d
comment Java 8 Iterable.forEach() vs foreach loop
for example iterating a tree: void forEach(Consumer<T> v){leftTree.forEach(v);v.accept(rootElem);rightTree.forEach(v);}, this is more elegant than the external iteration, and you can decide on how to best synchronize
May
13
comment dlang inheritance design for types passed between threads
using shared and lock gratuitously and you can be fine...
May
12
comment How to undo a popFront a range
@Johm then copy it into an array first
May
11
answered Storing more than 85000 strings in ArrayList
May
9
awarded  Pundit
Apr
30
comment Porting Python to D: urllib
you could manually set up the minimalist http request and force the response encoding into something you can handle
Apr
30
comment Splitting string in java containing relational operators
use [<>=]+ (not the +) to match multiple chars
Apr
30
comment Best practice to check duplicate value in database using java
@ling.s if multiple clients will be trying to insert that might fail
Apr
29
awarded  Yearling
Apr
28
comment Updated GUI libraries for D in 2013?
if all else fails you could use a C library after porting the header files
Apr
27
answered Trying to write Quicksort in D, get OutOfMemoryError
Apr
22
comment Is it possible to map string to int faster than using hashmap?
look up prefix trie
Apr
16
answered How to debug a runnable jar, when crash doesn't happen in debugger?
Apr
14
comment Is synchronized inherited in Java?
easier way to test would be to test on Thread.holdsLock(this); in the overridden method
Apr
12
comment Is it bad practice for operator== to mutate its operands?
note that you can make it thread safe by using 0 as a sentinal hash and doing if(atomic_load(&hash)!=0)atomic_store(&hash,calc_hash());
Apr
11
answered Linking glfw and D
Apr
11
comment Linking glfw and D
you need some d or di files in the import directory (specified with the -I switch IIRC)
Apr
9
comment Is there a mature GUI library for D2 which does not rely on any DLLs (for windows only)
it's dead though last snapshot was released in 2011
Apr
8
comment Why is the std::bitset<8> variable unable to handle 11111111?
using 0xff will fix it (or 0b11111111 is your compiler supports it)