Assaf

7,318
reputation
810 views

Registered User

name Assaf
member for 1 year
seen 6 hours ago
website
location
age 30
Veni vedi VC
1d
comment Programming challenge: can you code a hello world program as a Palindrome?
golfscript.com
Dec
17
accepted C#, C++/cli: How do you unit test a component that can only be loaded once per process
Dec
17
comment pushing a string onto a stack in C
voting to close - exact question asked 30 minutes ago by same user: stackoverflow.com/questions/1919975/…
Dec
15
revised Macro definition for message mapping
deleted 8 characters in body
Dec
14
comment Process exit issue thread not exited successfully.
orig link works now..
Dec
14
accepted Process exit issue thread not exited successfully.
Dec
12
answered How rethrow an exception without losing the original call stack?
Dec
12
comment How rethrow an exception without losing the original call stack?
Some of the solutions are most definitely language/platform specific. C++ and C# exceptions do differ, and C++ exceptions are implemented differently on different platforms.
Dec
12
revised Threads and simple Dead lock cure
added 32 characters in body
Dec
11
revised Why does my program terminate when an exception is thrown by a destructor ?
edited tags; edited title
Dec
11
revised Why does my program terminate when an exception is thrown by a destructor ?
added 287 characters in body; added 50 characters in body
Dec
11
revised Why does my program terminate when an exception is thrown by a destructor ?
added 110 characters in body; added 2 characters in body; added 527 characters in body; added 57 characters in body
Dec
11
answered Why does my program terminate when an exception is thrown by a destructor ?
Dec
9
comment Should UTF-16 be considered harmful?
FWIW the AfxMessageBox(MfcUtils::Convert(s), _T("Error"), MB_OK) example should probably really have been a call to a wrapper of that function that accepts std::string(s). Also, the Assert(false) in the functions toward the end should be replaced with static assertions.
Dec
9
revised Should UTF-16 be considered harmful?
I did not suggest that...
Dec
9
revised Casting a void pointer (data) to a function pointer
edited title
Dec
7
awarded  Popular Question
Dec
6
awarded  Mortarboard
Dec
4
answered Is there a C++/win32 library function to convert a file path to a file:// URL?
Dec
4
awarded  Notable Question
Nov
23
revised Browsers and Windows Messaging
added 5 characters in body; edited tags; edited title
Nov
23
comment FastCGI for C++
Could be some good leads here: stackoverflow.com/questions/746309/…
Nov
23
revised When should static_cast, dynamic_cast and reinterpret_cast be used?
"cast" is not code, just terminology. it was distracting.
Nov
12
comment What are some C++ related idioms, misconceptions, and gotchas that you’ve learnt from experience?
SBRM sounds like an acronym for some sex act... no thanks
Nov
10
awarded  Popular Question
Nov
5
comment How do I create a batch script that will delete a folder on a scheduled basis?
:) Clever. I would never do this, but it's a nice trick, so +1
Nov
3
answered How to calculate the memory size of a program?
Oct
29
comment Generate unique file name with timestamp in batch script
Hot damn, that's a fancy trick. :) cool
Oct
29
asked Generate unique file name with timestamp in batch script
Oct
28
awarded  Popular Question
Oct
28
answered How to determine the localtime of a timestamp for different timezones?
Oct
28
comment Limiting the size of the managed heap in a C# application
That doesn't sound like something I'd want to do. I was hoping for a configurable switch, like in Java. In fact, I'm scratching my head trying to figure out why there wouldn't be such a switch. I mean, somewhere, something is deciding when to run GC based on some limit/heuristic, and it seems reasonable to want to be able to configure that limit. Again.. Java allows this..
Oct
28
comment Limiting the size of the managed heap in a C# application
This is the observed behavior: the system runs in a loop and the working set size grows indefinitely. When GC is run explicitly, in code, every once in a while, the working set size remains constant. I realize that there's something fishy going on here, but the fact that running GC keeps the WS constant tells me that the application is not holding on to objects.
Oct
28
comment Limiting the size of the managed heap in a C# application
In this particular case there are other (native) applications living on the machine that cannot afford the GCed app taking so much memory.
Oct
28
asked Limiting the size of the managed heap in a C# application
Oct
27
comment Is there a way to disable all warnings with a pragma?
The number of warnings you disable is irrelevant. The number of 'pushes' has to match the number of 'pops' that's all.
Oct
25
awarded  Nice Answer
Oct
23
accepted TitleCase In Visual C++
Oct
23
answered TitleCase In Visual C++
Oct
23
answered Do sequence points prevent code reordering across critical section boundaries?
Oct
16
revised OOP in C, inheritance, and bugs
edited tags; edited title
Oct
16
answered How to access file with UNC path from asp.net
Oct
10
awarded  Popular Question
Oct
7
awarded  Nice Answer
Oct
1
revised How to count occurrences of a column value efficiently in SQL?
emphasis on the question (I already know that a subquery will work)
Oct
1
asked How to count occurrences of a column value efficiently in SQL?
Oct
1
comment Build C# Projects and their dependencies
Not an option, since the solution contains many other projects as well, some of which I don't wish to build at this moment.
Oct
1
comment Build C# Projects and their dependencies
The build order is fine. As I said: A references B and it shows as such in the dependency window and in the build order. How can I reference a debug build in a release build? The reference is between projects...
Oct
1
asked Build C# Projects and their dependencies
Sep
27
comment How can I change the CurrentCulture of the entire process (not just current thread) in .Net?
I ended up inheriting from BW and setting the CurrentCulture before every thread function...