| bio | website | winwrench.com/blog |
|---|---|---|
| location | Redmond, WA | |
| age | 22 | |
| visits | member for | 4 years, 2 months |
| seen | 10 hours ago | |
| stats | profile views | 5,723 |
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 c++ related questions, though I occasionally forray into c# 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.
|
1d |
awarded | Nice Question |
|
May 23 |
comment |
Use case of C++11 function declaration at block scope? What advantage does that have over declaring it outside of the function? It does not reduce the potential for name collisions, it would just move name collisions to link time rather than compile time. |
|
May 23 |
comment |
Use case of C++11 function declaration at block scope? @EJP: The definition does have code inside it. The OP says that the function declared at block scope cannot be defined, but that is false. The forward declaration isn't scoped to the block, it is a forward declaration for the global namespace. |
|
May 23 |
comment |
Use case of C++11 function declaration at block scope? (It should be noted that this is completely unchanged from C++98/03, which works the same way. It isn't a new thing in C++11) |
|
May 23 |
revised |
Use case of C++11 function declaration at block scope? added 100 characters in body |
|
May 23 |
answered | Use case of C++11 function declaration at block scope? |
|
May 22 |
awarded | Notable Question |
|
May 22 |
comment |
How can I open the same document twice in Visual Studio? possible duplicate of Open two instances of a file in single Visual Studio session |
|
May 22 |
comment |
Clarify and remember const usage in C @abc: I can't really take credit for it -- I learned this from C++ Templates: The Complete Guide |
|
May 22 |
answered | Clarify and remember const usage in C |
|
May 21 |
revised |
Why would a compiler generate this assembly? Removed wrong syntax coloring on the assembly block. |
|
May 21 |
revised |
C++ Find and remove references to little-used library edited tags |
|
May 21 |
comment |
Is there a way to form secure connections without trusted third parties? Note though that those certificates still need to be communicated securely. blogs.msdn.com/b/ericlippert/archive/2011/09/27/… |
|
May 21 |
revised |
Can I create a partial template specialization of of a class template matching enumeration types? edited title |
|
May 20 |
awarded | Notable Question |
|
May 20 |
accepted | Can I create a partial template specialization of of a class template matching enumeration types? |
|
May 20 |
comment |
Can I create a partial template specialization of of a class template matching enumeration types? The main reason I used a class is that this conversion machinery is used in multiple places; and the SFINAE would need to be done in each place. |
|
May 20 |
comment |
Can I create a partial template specialization of of a class template matching enumeration types? Type traits are fine :) |
|
May 20 |
comment |
Can I create a partial template specialization of of a class template matching enumeration types? @Andy: I don't know. I'm asking how one would do that. |
|
May 20 |
comment |
Can I create a partial template specialization of of a class template matching enumeration types? It already does delegate to a class template. I just want to write an explicit specialization matching enumerations. That bool isEnum trick looks like what I needed. |