Will

5,201
reputation
269 views

Registered User

name Will
member for 1 year
seen 16 hours ago
website
location
age
19h
answered Finding out no bits set in a variable in faster manner
1d
revised How do I reset password retry count for a user in the gpu using C#
The GPU tag is for graphics
Dec
11
comment Is there any scenario where the Rope data structure is more efficient than a string builder
When I was doing that competition, I didn't know about rope - so I invented my own solution: as string builders are great for appending, and as the problem was prefixing, I simply stored my string .. backwards. Elegant somehow :)
Dec
11
revised Is there any scenario where the Rope data structure is more efficient than a string builder
added 429 characters in body
Dec
10
comment Equivalent of Java triple shift operators (>>> and <<<) in C#?
Java doesn't? or C# doesn't?
Dec
10
revised Is there any scenario where the Rope data structure is more efficient than a string builder
weaselly words
Dec
10
accepted multithreading and multiprocessing
Dec
10
comment Performance profiling on Linux
thanks, pstack looks like a very capable sampling profiler
Dec
10
answered multithreading and multiprocessing
Dec
10
revised Is there any scenario where the Rope data structure is more efficient than a string builder
added 528 characters in body
Dec
10
answered Is there any scenario where the Rope data structure is more efficient than a string builder
Dec
9
asked Performance profiling on Linux
Dec
9
accepted Best way to judge the performance of a tester
Dec
9
comment How to use re to search for items in one list inside another list in Python
Useful to know how many items in each of the two lists, and how often the code will be called.
Dec
8
comment boost::asio multi-threading problem
Win32 or UNIX or trying to be portable?
Dec
8
comment boost::asio multi-threading problem
I'm making a server right now in fact, where its a single threaded async design; I do at times need to do heavy lifting and when I do I fork/execv to do that and read in the results through a pipe (which I can do with my main event loop just as though it was an external connection)
Dec
8
comment C++ error C2065: ‘cout’ : undeclared identifier
<< end; should be << endl; ?
Dec
8
revised boost::asio multi-threading problem
added 883 characters in body
Dec
8
answered boost::asio multi-threading problem
Dec
8
comment Generating sorted random ints without the sort?
eh on reading the OP again, I think he was already at this point
Dec
8
answered Generating sorted random ints without the sort?
Dec
8
comment Byte precision pointer arithmetic in C when sizeof(char) != 1
I'm curious - which obscure platform is has a char not being a byte? Sounds like the whole premise of the question is premature portability ;)
Dec
7
revised Shall I place try…catch block in destructor, if I know my function won’t throw exception.
Less bold, more cravats
Dec
7
comment Shall I place try…catch block in destructor, if I know my function won’t throw exception.
Leave is implemented in terms of proper exceptions these days (for the zero-cost bit, rather than longjmp), but as you say its a bit headaching to mix your own throws, since only an int slot is kept for it, and there's a cleanup stack to worry about
Dec
7
comment Shall I place try…catch block in destructor, if I know my function won’t throw exception.
I apologise, I've worked for ages on Symbian and there it definitely kills you if you raise an exception whilst unwinding.
Dec
7
revised Shall I place try…catch block in destructor, if I know my function won’t throw exception.
added 388 characters in body
Dec
7
revised Shall I place try…catch block in destructor, if I know my function won’t throw exception.
added 186 characters in body
Dec
7
answered Shall I place try…catch block in destructor, if I know my function won’t throw exception.
Dec
6
awarded  Mortarboard
Dec
6
comment overloading new and delete problem
On Linux, Valgrind would be just the thing! In the windows world, Purify is a commercial equivilent.
Dec
6
comment overloading new and delete problem
You don't know that its a object allocated with 'new'. What you can do is set the hooks for the malloc/realloc/free; that'll catch all your allocs, but not those inside libraries you call.
Dec
6
comment overloading new and delete problem
The leak info is printed to stderr so you'll see it in visual studio. It also finds leaks that are not just caused by object news and deletes, such as you not managing win32 c-API resources and such.
Dec
6
answered overloading new and delete problem
Dec
4
answered How to intelligently degrade or smooth GIS data (simplifying polygons)?
Dec
4
accepted Is this method of checking a “gift code” secure?
Dec
4
answered How to do conditional character replacement within a string
Dec
4
answered Is this method of checking a “gift code” secure?
Dec
4
answered c++ read from file redirection and also keyboard
Dec
4
comment c++ destructor mess, impossible to debug…
really, follow the link on the phrase "And G++ says" to see what G++ says!
Dec
4
comment Regex implementation
+1 for not recommending regex! Regex is not the right tool for this job, the standard library is.
Dec
4
revised c++ destructor mess, impossible to debug…
and a solution is...
Dec
4
answered c++ destructor mess, impossible to debug…
Dec
4
answered Given an RGB value what would be the best way to find the closest match in the database?
Dec
4
comment the best shortest path algoritm
thx Andreas, fixed
Dec
4
revised the best shortest path algoritm
thx for the comments
Dec
4
accepted the best shortest path algoritm
Dec
4
answered the best shortest path algoritm
Dec
4
comment the best shortest path algoritm
but the other one was closed, mostly because of the user's bad english, and one of the solutions named these exact two algorithms as alternatives. If we close this as dup, how will the author find out more about the previous question? Will we really all be nice enough to go over there and vote to reopen?
Dec
4
revised the best shortest path algoritm
tidied up
Dec
4
comment android UI thread
+1 for (3) < padding for the 15 limit >