| bio | website | winwrench.com/blog |
|---|---|---|
| location | Redmond, WA | |
| age | 22 | |
| visits | member for | 4 years, 1 month |
| seen | 2 hours ago | |
| stats | profile views | 5,694 |
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.
|
2h |
comment |
Can I create a partial template specializationf of a class template matching enumeration types? @Andy: I don't know. I'm asking how one would do that. |
|
2h |
comment |
Can I create a partial template specializationf 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. |
|
2h |
comment |
Can I create a partial template specializationf 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 15 |
comment |
Sqlite open in-memory database or file database Related: stackoverflow.com/questions/10441450/… |
|
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 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. |
|
May 7 |
comment |
Difference between “::” “.” and “->” in c++ :: works fine on objects too; e.g. std::vector<t>::iterator... |
|
May 7 |
comment |
When to use SELECT … FOR UPDATE? Are the options REPEATABLE_READ and READ_COMMITTED even portable options? The only results I get for those are for MSSQL server |
|
May 5 |
comment |
Can XML element have '$' sign in the value? Of course, a CDATA section is shooting a mouse with an elephant gun for a $ character. (Considering a plain literal $ is fine inside a normal text section) |
|
May 5 |
comment |
Can XML element have '$' sign in the value? @Vinay: I'm talking about outside of a CDATA section. A CDATA section may contain anything so long as a character meets the basic character set requirements, and does not contain the literal string ]]>. |
|
May 5 |
comment |
Can XML element have '$' sign in the value? @PSL: Just because it works does not mean it meets the spec. XML processors are different, and if you break your end of the contract the way in which they break may change from processor to processor or from processor version to processor version. A valid implementation of undefined behavior is "appear to work". That doesn't mean the document is valid. |
|
May 5 |
comment |
Can XML element have '$' sign in the value? This has no basis in the specification. That's also not a valid CDATA section; CDATA must start with <![CDATA[, not just cdata[. |