41,585 reputation
786240
bio website winwrench.com/blog
location Redmond, WA
age 22
visits member for 4 years, 1 month
seen 10 hours ago
stats profile views 5,690

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.


Dec
8
comment What common application types are created with Visual C++?
Yes, games are still typically written in C++ or C. Quake, Source, and Unreal engines are all C/C++
Dec
8
comment Double buffer common controls
Don't know where you get that Math Mr. Ransom. 1920x1200x32 is 737280000 bits, or 87.89MB
Dec
8
comment Double buffer common controls
I'd rather not have to completely re implement the win32 tab control if I can avoid it.
Dec
8
comment Double buffer common controls
I don't even know what that is.
Dec
8
comment Double buffer common controls
Tab controls (my window is essentially one big tab control) need to be redrawn then resized. That's why I need the double buffer in the first place.
Dec
8
revised Use a regular iterator to iterate backwards, or struggle with reverse_iterator?
added 4 characters in body; deleted 2 characters in body
Dec
8
comment Use a regular iterator to iterate backwards, or struggle with reverse_iterator?
Good point, fixed :)
Dec
7
comment Why do I get a strcpy runtime error in my code?
What if strtok returns a null pointer ;)
Dec
7
comment Component Object Model via C++(maybe VS)
1. Saying "COM Weaknesses" without specifying what those are seems like fanboy-ism to me. 2. COM is still required for browser helper objects, object linking and embedding, shell extensions, etc. It's not going away any time soon.
Dec
7
comment Your thoughts on “Large Scale C++ Software Design”
Havn't read it, so I'll only comment.. but lots of us look at our projects and probably consider them "small-scale" rather than "large scale". People don't start thinking large scale until you hit something like a Firefox, Windows NT, or Linux Kernel.
Dec
7
comment Vectors, “virtual”, Segmentation Fault on function call
Or even better, use a shared_ptr<Sphere>
Dec
7
comment Why is `i = ++i + 1` unspecified behavior?
Yes, that is correct, as the standard allows the compiler to execute those instructions in parallel.
Dec
7
answered Why is `i = ++i + 1` unspecified behavior?
Dec
7
comment Why is `i = ++i + 1` unspecified behavior?
That's because , defines a new "sequence point"
Dec
7
comment Double buffer common controls
Yes, but that doesn't help me because I'm not the one doing the drawing. The common control is supposed to be doing that. I don't get sent WM_PAINT messages for the child controls.
Dec
7
revised Use a regular iterator to iterate backwards, or struggle with reverse_iterator?
Added a link to standard algorithms.
Dec
7
comment Use a regular iterator to iterate backwards, or struggle with reverse_iterator?
It also says to avoid explicit loops, and reverse_iterator is sometimes necessary to accomplish that. Item 26 is talking about explicit loops only.
Dec
7
answered Use a regular iterator to iterate backwards, or struggle with reverse_iterator?
Dec
7
accepted Win32 Text Drawing Puzzle
Dec
7
answered Win32 Text Drawing Puzzle