41,899 reputation
788241
bio website winwrench.com/blog
location Redmond, WA
age 22
visits member for 4 years, 2 months
seen 1 hour ago
stats profile views 5,721

I'm a Microsoft Software Development Engineer on the Trustworthy Computing Team. I've worked at several security related places previously, including Malware Bytes and PreEmptive Solutions.

On StackOverflow I mostly answer related questions, though I occasionally forray into and a couple of others.

I am the author of pevFind, a component of the ComboFix malware removal tool, and volunteer at BleepingComputer.com as a malware response instructor. My Twitter account is @MalwareMinigun.


May
20
revised Can I create a partial template specialization of of a class template matching enumeration types?
added 379 characters in body
May
20
comment Can I create a partial template specialization of of a class template matching enumeration types?
@Mankarse: This is a library for some external interprocess communication mechanism which is not strongly typed. There are various explicit specializations of a class template, each of which contain the code necessary to convert from the interprocess communication version of the data (e.g. VARIANT) into C++ style types. Then there's a member function template calling the class template (in order to make partial specializations possible).
May
20
asked Can I create a partial template specialization of of a class template matching enumeration types?
May
17
awarded  Notable Question
May
16
answered How to sanitise input before using system command in C
May
15
comment Sqlite open in-memory database or file database
Related: stackoverflow.com/questions/10441450/…
May
15
awarded  Popular Question
May
14
comment win32: Named Pipe visible/accessible only from current process
@RemyLebeau: Anonymous pipes can be accessed by other processes too -- anonymous pipes are just named pipes with a random name.
May
13
awarded  Nice Question
May
12
answered How to prevent casual changes in the folder for other processes?
May
10
awarded  Notable Question
May
9
comment which one is faster/easier in sorting? Array or linked list?
Erm, no, not semantics. A linked list and a binary search tree are very different structures used to solve very different problems. An array and linked list are as similar as a binary search tree and a linked list are.
May
9
comment which one is faster/easier in sorting? Array or linked list?
I wouldn't say a linked list is "simpler" than an array.
May
9
comment which one is faster/easier in sorting? Array or linked list?
Mergesort is quite efficient with linked lists.
May
9
comment which one is faster/easier in sorting? Array or linked list?
That is not a linked list, that is a binary search tree.
May
8
comment What is the difference between NTFS Junction Points and Symbolic Links?
@Will: Considering Windows exposes no user visible way to set either Junctions or Symbolic links I would strongly disagree. But not going to war over it.
May
8
comment What is the difference between NTFS Junction Points and Symbolic Links?
@Will: How is this off topic?
May
7
comment Difference between “::” “.” and “->” in c++
@Nik: Of course; but if the OP is struggling with this I didn't want to throw in how crazy operator-> works :)
May
7
comment Difference between “::” “.” and “->” in c++
:: has more uses than namespace resolution.
May
7
comment Difference between “::” “.” and “->” in c++
There's no such thing as a static class.