982 reputation
311
bio website
location London, United Kingdom
age 33
visits member for 3 years, 6 months
seen 32 mins ago
stats profile views 71

Apr
17
answered Visual Studio 2010 C++ /w Google Protocol Buffers. Cannot find 60 externals. Cannot compile
Apr
9
answered Standalone C or C++ websocket server library
Apr
8
comment C# Projects in CMake-Made VS2010 Solution Must Be Unloaded/Reloaded to Avoid Being Skipped
Is it skipped when you do a rebuild all? Or just a normal build?
Apr
4
revised Generate C# project using CMake
added 199 characters in body
Apr
4
comment Generate C# project using CMake
You don't need to copy the C# source folder/files - they are referenced in-place. The csproj.template file is the same as any other csproj file, except for the wildcard noted above. Just copy one. I've added the actual CONFIGURE_FILE command to my answer, which was the only thing missing.
Mar
14
comment Generate C# project using CMake
You should probably unaccept your answer then, given it doesn't work!
Mar
14
answered Generate C# project using CMake
Feb
26
comment Packet oriented lossless compression library
Did you ever find a good solution for this?
Feb
26
comment Packet oriented lossless compression library
Do they? I can't find that in Snappy - looks like it just compresses with a stateless function. BALZ is command line, not a library, and looks like it just streams stdin in chunks, not supporting packet-type stuff at all?
Feb
25
accepted How do I expose namespaced C++ string constants via SWIG? (C#)
Feb
25
answered How do I expose namespaced C++ string constants via SWIG? (C#)
Feb
24
revised Relational database design
added 8 characters in body
Feb
24
answered Relational database design
Feb
18
revised How do I expose namespaced C++ string constants via SWIG? (C#)
deleted 11 characters in body; edited tags
Feb
18
asked How do I expose namespaced C++ string constants via SWIG? (C#)
Jan
19
awarded  Revival
Jan
16
comment What is more efficient: Dictionary TryGetValue or ContainsKey+Item?
DateTime.Now will only be accurate to a few ms. Use the Stopwatch class in System.Diagnostics instead (which uses QueryPerformanceCounter under the covers to provide much higher accuracy). It's easier to use, too.
Jan
3
comment C#.NET: Is it safe to check floating point values for equality to 0?
For example: (1.0/5.0 + 1.0/5.0 - 1.0/10.0 - 1.0/10.0 - 1.0/10.0 - 1.0/10.0) < double.Epsilon == false (and considerably so in magnitude terms: 2.78E-17 vs 4.94E-324)
Jan
3
comment C#.NET: Is it safe to check floating point values for equality to 0?
No, it's not. It's very likely that the value you have arrived at via some calculation is many times epsilon away from zero, but should still be considered as zero. You don't magically achieve a whole bunch of extra precision in your intermediate result from somewhere, just because it happens to be close to zero.
Dec
28
answered c++ file synchronization issues