Mark Ransom

15,879
Reputation
878 views

Registered User

Name Mark Ransom
Member for 1 year
Seen 23 mins ago
Website
Location Minneapolis area, MN, USA
Age
I've been a software developer for a lot longer than I'm willing to admit. My current interests are C++ and Python on Windows, but I've been known to dabble in Linux and I try to be language agnostic when I can.
20m
answered Not able to Print the folder path in EditBox- MFC
1d
comment How to convert salary to hourly rate?
So instead of being unhelpful and saying this is not programming related, where's the best place to go to ask a question like this?
1d
accepted Combo box inside of list control? (Unmanaged C++)
1d
comment Recoloring an image based on current theme ?
You can measure what Microsoft used - for example, the first 3 Dark variations use RGB (154,191,248), (248,154,153), and (216,248,159); the first 3 Light variations use (55,99,153), (156,57,54), and (121,149,62).
2d
answered Combo box inside of list control? (Unmanaged C++)
2d
answered Draw emf antialiased
2d
comment Looking for some refactoring advice
It was a good thought - providing an automatic conversion minimizes the client code change. Automatic conversions are fraught with danger, though.
2d
answered Looking for some refactoring advice
2d
comment Looking for some refactoring advice
I think I understand the problem - as Moore's Law delivers faster computers, the number of buffers needs to increase. A trap for sure.
2d
answered Looking for some refactoring advice
2d
revised Converting RGB images to CMYK in .net
added 154 characters in body
2d
revised Converting RGB images to CMYK in .net
added 138 characters in body
2d
answered Recoloring an image based on current theme ?
2d
comment Recoloring an image based on current theme ?
That's not quite sufficient - in HSL, black remains black and white remains white no matter what the hue. Dark Variations replace the white with a light color, and Light Variations replace the black with a dark color.
2d
answered Converting RGB images to CMYK in .net
2d
comment virtual derived class of a non-virtual base class
Although class A won't be virtual, a class C derived from B could be cast back to B* and be virtual there. So there is a use case, just kind of rare and unadvised.
2d
comment extracting colors from an image
If you like an answer, you might consider clicking on the uparrow to indicate that it was useful. If you think the answer was the solution to your problem, you should click on the checkmark to select it as the accepted answer.
Nov
24
comment In C is “i+=1;” atomic?
Check this for some perspective: stackoverflow.com/questions/652788/…
Nov
24
comment Make Dictionary From 2 List
Hard to see why you'd need to create a dict that uses a range for a key, unless you're passing it to something that can't use a list.
Nov
24
comment How to dynamically create a union instance in c++?
You might find this question interesting: stackoverflow.com/questions/654609/…
Nov
24
revised symbol recognition
edited tags; edited title
Nov
24
comment In C is “i+=1;” atomic?
While an increment could be atomic, I'm not aware of any compilers that implement it as such.
Nov
24
answered Looping through files in a folder
Nov
24
answered extracting colors from an image
Nov
23
comment In-place C++ set intersection
set::erase doesn't increment the iterator, but many implementations give you the incremented iterator as a return value. I don't think it was part of the original C++ spec though, see for example cplusplus.com/reference/stl/set/erase
Nov
23
comment When should I use uuid.uuid1() vs. uuid.uuid4() in python?
Sorry, I commented without researching fully - there are bits reserved to keep a version 4 uuid from colliding with a version 1 uuid. I will remove my original comment. See tools.ietf.org/html/rfc4122
Nov
23
comment Efficient algorithm to remove any map that is contained in another map from a collection of maps.
I would have coded it up before accepting the answer, but thanks! I should have pointed out that this will have very bad worst case performance. I thought of one more optimization: instead of a list of map number pairs, generate a map using the pairs as the key. Each time you generate a pair, increment the value at that key. No need to sort the result when you're done.
Nov
23
answered Efficient algorithm to remove any map that is contained in another map from a collection of maps.
Nov
23
answered Efficient algorithm to remove any map that is contained in another map from a collection of maps.
Nov
23
comment Draw emf antialiased
Small sizes will look ugly no matter what, because your points will be cast to integer pixel boundaries. You have to choose which style of ugly is most acceptable.
Nov
23
comment iterator for 2d vector
More specifically: what is the declaration of your 2d vector? What order do you want to iterate? How do you want to use the iterator?
Nov
20
comment In-place C++ set intersection
The continues are redundant, and I'd rearrange to be if(*it1<*it2) else if(*it2<*it1) else ... so that the only comparison operator you're using is less than - that's how set works.
Nov
20
answered In-place C++ set intersection
Nov
19
comment What if the user can’t log in with their OpenID?
Since the OpenID provider is also often the email provider, relying on email might fail a disproportionate amount of the time.
Nov
18
answered Why does SQL Server 2005 miss a within range DATETIME value
Nov
18
comment Why does SQL Server 2005 miss a within range DATETIME value
Yup, see stackoverflow.com/questions/1177449/…
Nov
16
answered Memory leak for CComBSTR
Nov
16
comment When implementing several COM interfaces at once how do I upcast to IUnknown?
@Mike: The path you take is relevant, because the compiler will generate multiple vtables even if they point to the same functions. The address returned will be different, try it and see. Microsoft had a very complete description of how objects were laid out in memory, but I can't find it on the web at the moment.
Nov
16
answered When implementing several COM interfaces at once how do I upcast to IUnknown?
Nov
15
comment Why is exception handling bad?
RAII is useful even without exceptions.
Nov
14
comment Fastest Algorithm to scale down 32Bit RGB IMAGE.
Doing it his way is 7 memory operations, doing it all at once is 10. It's O(n) vs. O(n^2), so the difference goes up as the shrink factor goes up.
Nov
14
answered What’s the best way to get the length of the decimal representation of an int in C++?
Nov
13
comment c++ templated class does not link
Dupe? stackoverflow.com/questions/1724036/…
Nov
13
answered Fastest Algorithm to scale down 32Bit RGB IMAGE.
Nov
13
accepted Windows CWnd::OnLButtonDown not called as expected on double click
Nov
13
comment Open source PDF library for C/C++ application?
@Rui: only create, unfortunately.
Nov
12
comment uint8_t vs unsigned char
I've fixed my answer, thanks.
Nov
12
revised uint8_t vs unsigned char
added 2 characters in body
Nov
12
comment uint8_t vs unsigned char
It wasn't clear in the original question if we were talking about a standard type or not. I'm sure there have been many variations of this naming convention over the years.
Nov
12
answered uint8_t vs unsigned char