User Alan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:36:13Z http://stackoverflow.com/feeds/user/37843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1197191/help-with-javascript-to-jscript-conversion 0 Help with Javascript to JScript Conversion Alan 2009-07-28T22:56:02Z 2009-11-09T18:01:07Z <p><strong>Background</strong>: </p> <p>I have data that I'm encrypting with javascript on the client side that needs to be decrypted on the server side.</p> <p>As far as I can tell, the javascript AES library I'm using does not interop with the C# Rijndael library.</p> <p>Thus, I'm left to essentially implement the javascript AES in C# for use.</p> <p>I'm going to try to compile the javascript using jsc.exe into a dll and see if reflector can save me some time.</p> <p>I'm aware that jscript is not the same as javascript, but I'm hoping I can get away with something that works awefully close, and just do the touchups manually.</p> <p><strong>Problem:</strong></p> <p>When I compile the javascript using JSC I get the following error:</p> <blockquote> <p>error JS1234: Only type and package definitions are allowed inside a library</p> </blockquote> <p>The offending line is this first line in the following lines of code:</p> <pre><code>var GibberishAES = (function(){ var Nr = 14, /* Default to 256 Bit Encryption */ Nk = 8, Decrypt = false, enc_utf8 = function(s) { try { return unescape(encodeURIComponent(s)); } catch(e) { throw 'Error on UTF-8 encode'; } }, dec_utf8 = function(s) { try { return decodeURIComponent(escape(s)); } catch(e) { throw ('Bad Key'); } }, </code></pre> <p>And the full source can be <a href="http://github.com/markpercival/gibberish-aes/raw/9fe8738053ecae200de81bb0963d2e3d13fa7f87/src/gibberish-aes.js" rel="nofollow">found here</a>:</p> <p>I'm not sure what the problem is. I'm also open to suggestions as to how to encrypt/decrypt data between Javascript and C#.</p> http://stackoverflow.com/questions/613063/c-interop-with-c-vs-interop-with-java-which-is-better-easier-faster 0 C# Interop with C vs Interop with Java: Which is better/easier/faster? Alan 2009-03-05T00:02:34Z 2009-11-09T05:09:30Z <p>I have an application in C# that currently authenticates to LDAP. We want to extend functionality to support IBM's Tivoli Access Manager, which is comprised of a Policy Server, and an LDAP server (and other modules as well). Unfortunately authenticating with the LDAP server for our customer is not acceptable, thus we must bind with the policy server instead.</p> <p>The TAM's Policy Server has 2 APIs for authentication, one in Java, and one in C</p> <p>My question: What is the better language for C# to interop, C or Java?</p> <p>Keeping in mind: maintainability, and cost of development.</p> <p>Thanks everyone in Advance.</p> http://stackoverflow.com/questions/1480661/sms-rest-service 0 SMS REST Service? Alan 2009-09-26T07:20:25Z 2009-10-29T17:52:02Z <p>Hi Everyone,</p> <p>I've got an application that does some work then hits an URI callback once the work is done.</p> <p>For testing, I'd like to send an SMS to my cellphone.</p> <p>Something like <a href="http://www.jonskeetistheman.com/SMSSend.aspx?phone=4255555555&amp;msg=supdawg" rel="nofollow">http://www.jonskeetistheman.com/SMSSend.aspx?phone=4255555555&amp;msg=supdawg</a></p> <p>Are there any REST based SMS services (free) that ya'll can recommend?</p> http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 0 Answer by Alan for How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:36:35Z 2009-10-14T18:36:35Z <p>Nothing you've listed is a reason to avoid playing audio on their website.</p> <p>To you and I (and many others I suppose), auto audio is really annoying.</p> <p>My suggestion is that you explain your feeling to your client. </p> <p>If your client still insists on having audio, then do what they want. The client is your customer, and the customer is always right. </p> <p>As an aside, many photographers I know have audio, and while many poo-poo this, they all swear that their clients love it. So I guess to each their own.</p> http://stackoverflow.com/questions/1558342/setting-envirnoment-variable-in-linux/1558351#1558351 0 Answer by Alan for setting envirnoment variable in linux Alan 2009-10-13T05:34:25Z 2009-10-13T05:34:25Z <p>In bash its:</p> <pre><code>export name=value </code></pre> http://stackoverflow.com/questions/1540943/how-can-i-find-objects-that-are-in-both-arrays-and-promptly-add-it-to-another-arr/1540953#1540953 3 Answer by Alan for How can I find objects that are in BOTH arrays and promptly add it to another array? Alan 2009-10-08T22:51:14Z 2009-10-08T22:51:14Z <p>One quick way is the following algorithm:</p> <pre><code>For each item in list1, add it to a dictionary. For each item in list2, check if it exists in dictionary, if item exists, add it to list3 else continue. return list3. </code></pre> http://stackoverflow.com/questions/1540427/c-why-cant-my-dictionary-class-see-the-toarray-method/1540463#1540463 0 Answer by Alan for c# - Why can't my Dictionary class see the ToArray() method? Alan 2009-10-08T21:01:59Z 2009-10-08T21:01:59Z <p>You're probably targeting .NET 2.0, which doesn't support Extension methods. Try changing your application to target .Net 3.5</p> http://stackoverflow.com/questions/1540365/why-isnt-getopt-working-if-sys-argv-is-passed-fully/1540392#1540392 3 Answer by Alan for Why isn't getopt working if sys.argv is passed fully? Alan 2009-10-08T20:51:45Z 2009-10-08T20:51:45Z <p>It's by design. Recall that sys.argv[0] is the running program name, and getopt doesn't want it.</p> <p>From the docs:</p> <blockquote> <p>Parses command line options and parameter list. args is the argument list to be parsed, without the leading reference to the running program. Typically, this means sys.argv[1:]. options is the string of option letters that the script wants to recognize, with options that require an argument followed by a colon (':'; i.e., the same format that Unix getopt() uses).</p> </blockquote> <p><a href="http://docs.python.org/library/getopt.html" rel="nofollow">http://docs.python.org/library/getopt.html</a></p> http://stackoverflow.com/questions/1535023/c-append-number-to-file-being-saved/1535033#1535033 0 Answer by Alan for C# - Append Number To File Being Saved Alan 2009-10-08T00:52:27Z 2009-10-08T00:52:27Z <p>Since you are writing the files, one approach is to search the current save directory and find the newest file called ScreenshotXX, and use a regex to get the number from the name.</p> <p>You could use the <code>DirectoryInfo</code> class along with the <code>Regex</code> class for this.</p> http://stackoverflow.com/questions/1534705/c-how-would-i-check-if-a-date-that-is-currently-a-string-is-today/1534721#1534721 4 Answer by Alan for C# How would I check if a date that is currently a string is today? Alan 2009-10-07T23:08:41Z 2009-10-07T23:08:41Z <pre><code>if(DateTime.Parse(yourString).Date == DateTime.Now.Date ) { //do something } </code></pre> <p>Should see if the day is today. However this is missing error checking (it assumes yourString is a valid datetime string).</p> <p>To do the more complicated check you could do:</p> <pre><code>DateTime date = DateTime.Parse(yourString); int dateOffset = 4; if(date.Date &gt;= DateTime.Now.AddDays(-dateOffset).Date) { //this date is within the range! } </code></pre> http://stackoverflow.com/questions/1494399/how-do-i-search-find-and-replace-in-an-stl-string/1494429#1494429 3 Answer by Alan for How do I Search/Find and Replace in an STL string Alan 2009-09-29T19:18:50Z 2009-09-29T19:18:50Z <p>The easiest way (offering something near what you wrote) is to use <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/regex/doc/html/index.html" rel="nofollow">Boost.Regex</a>, specifically <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/regex/doc/html/boost%5Fregex/ref/regex%5Freplace.html" rel="nofollow">regex_replace</a>.</p> <p>std::string has built in find() and replace() methods, but they are more cumbersome to work with as they require dealing with indices and string lengths.</p> http://stackoverflow.com/questions/1488884/how-easy-is-it-to-reverse-engineer-net-obfuscated-code/1488905#1488905 1 Answer by Alan for How easy is it to reverse engineer .net obfuscated code? Alan 2009-09-28T19:26:41Z 2009-09-28T19:26:41Z <p>It's easy enough for anyone determined to get your ip.</p> <p>As far as "security" goes, security through obscurity is only slightly more secure than no security (which is actually more secure than bad security).</p> <p>My rule has always been: Keep the Honest People Honest. Make sure you have your IP legally protected with patent applications, and have a lawyer draft up a competent Terms of Use/EULA. Use a decent obfuscator to prevent casual poking around, but realize it's not a one-shot-fix-all solution.</p> <p>Unfortunately, if someone is determined to reverse engineer your code, they can do it, and they will do it.</p> http://stackoverflow.com/questions/1462105/should-i-get-a-math-degree-or-a-cs-degree/1462125#1462125 1 Answer by Alan for Should I get a math degree or a CS degree? Alan 2009-09-22T19:31:49Z 2009-09-22T19:31:49Z <p>Usually progamming jobs will say "Computer Science or Related Degree" in the requirements section.</p> <p>Many CS majors are aware that there is a good overlap between CS and Math, but you'll need to have your resume show the relevant CS coursework that you've done.</p> <p>The best thing that helps land an interview is having real work experience, so while you're in school try to get a summer internship.</p> http://stackoverflow.com/questions/1455374/which-programming-language-is-more-suitable-for-socket-programming/1455418#1455418 5 Answer by Alan for Which programming language is more suitable for socket programming? Alan 2009-09-21T16:24:33Z 2009-09-21T16:24:33Z <p>For learning socket programming, it's hard to not recommend C. You really get into the nitty gritty with it.</p> <p>For doing actual work, I'd pick a more modern language with a much better socket abstraction layer (C#, Java, Python, etc).</p> http://stackoverflow.com/questions/1450497/c-argc-and-argv-arguments/1450517#1450517 0 Answer by Alan for C++ `argc` and `argv` arguments Alan 2009-09-20T07:27:30Z 2009-09-20T07:27:30Z <p>in C++, argc is the argument count, with the first argument always being the name of the program. argv is an array of character arrays that contain the command line arguments (argv[0] being the name of the program).</p> <p>one way to use them is like so:</p> <pre><code>int main(int argc, char** argv) { for(int i = 0; i &lt; argc; ++i) { std::cout &lt;&lt; "argv[" &lt;&lt; i &lt;&lt; "] = " &lt;&lt; argv[i] &lt;&lt; std::endl; } return 0; } </code></pre> <p>Which prints out the command line arguments and exits.</p> http://stackoverflow.com/questions/1449291/linq-to-list-and-ienumerable-issues/1449312#1449312 1 Answer by Alan for Linq to List and IEnumerable issues Alan 2009-09-19T19:32:23Z 2009-09-19T19:32:23Z <p>I fail at VB, but in C# you would call ToList() on the centersList and goalieList.</p> <p>So something like:</p> <pre><code>playersList.AddRange(centersList.ToList()) playersList.AddRange(goalieList.ToList()) </code></pre> http://stackoverflow.com/questions/1447056/how-to-go-about-getting-a-job-at-an-agile-shop/1447075#1447075 4 Answer by Alan for How to go about getting a job at an Agile shop? Alan 2009-09-18T22:23:15Z 2009-09-18T22:23:15Z <p>Apply for jobs. In your coverletter indicate your desire to work with an Agile Software Development team.</p> <p>Or, wait till you get an interview, and ask them during the interview.</p> http://stackoverflow.com/questions/1446999/c-stdsystem-system-not-a-member-of-std/1447011#1447011 1 Answer by Alan for C++ std::system 'system' not a Member of std Alan 2009-09-18T21:59:16Z 2009-09-18T21:59:16Z <p>Make sure you have <code>#include &lt;cstdlib&gt;</code> in your code.</p> http://stackoverflow.com/questions/1446018/classes-or-wrapper-for-working-with-dde-in-net/1446058#1446058 1 Answer by Alan for classes or wrapper for working with dde in .net? Alan 2009-09-18T18:06:38Z 2009-09-18T18:06:38Z <p>Try this one: <a href="http://www.codeplex.com/ndde" rel="nofollow">http://www.codeplex.com/ndde</a> I've had to write a few DDE clients, and it was always such a pain. </p> http://stackoverflow.com/questions/1445422/when-does-a-compiled-query-that-returns-an-iqueryable-execute/1445445#1445445 3 Answer by Alan for When does a compiled query that returns an IQueryable execute? Alan 2009-09-18T15:56:18Z 2009-09-18T15:56:18Z <p>It executes at line 104 (when you call ToList()).</p> <p>A compiled query is a query that is translated only once to TSQL at compile time, instead of everytime prior to execution.</p> http://stackoverflow.com/questions/1441432/how-much-information-in-error-messages-to-regular-users/1441470#1441470 1 Answer by Alan for How much information in error messages to regular users? Alan 2009-09-17T21:38:49Z 2009-09-17T21:38:49Z <p>In general I try to give users as much information needed to help them solve their problems themselves. For example, in the case of a 404, you might want to let them know to double check that the URL they are looking for is correct.</p> <p>They obviously wont need stack traces, and the like, but it will make sense for you to log that level of detail somewhere for diagnostics and debugging.</p> http://stackoverflow.com/questions/1440504/equivalent-of-c-reference-type-in-c/1440558#1440558 0 Answer by Alan for Equivalent of C++ reference type in C# Alan 2009-09-17T18:28:43Z 2009-09-17T18:28:43Z <p>To call a method exposed via an DLLImport, you'll want to use the IntPtr type for pointers.</p> <p>Remember in C++ char* is actually a pointer to memory, usually represented by a 4 byte int.</p> http://stackoverflow.com/questions/1439806/onclientclick-not-working/1439823#1439823 0 Answer by Alan for OnClientClick not working Alan 2009-09-17T16:12:40Z 2009-09-17T16:12:40Z <p>The back button is set not to cause validation, and doesn't have an OnClientClick action defined.</p> http://stackoverflow.com/questions/1439547/relationship-between-cfmutabledictionary-and-nsmutabledictionary/1439610#1439610 7 Answer by Alan for Relationship between CFMutableDictionary and NSMutableDictionary Alan 2009-09-17T15:32:21Z 2009-09-17T15:32:21Z <p>It means that everyplace you see NSMutableDictionary you can use CFMutableDictionary, and vice versa, without having an explicit conversion.</p> <p>Since a concrete subclass of NSMutableDictionary <em>IS A</em> NSMutableDictionary, they also can be used anyplace CFMutableDictionary is used.</p> <p>Basically a roundabout way of saying that the types can be implicitly converted between each other.</p> <p>This <a href="http://developer.apple.com/legacy/mac/library/documentation/Cocoa/Conceptual/CarbonCocoaDoc/Articles/InterchangeableDataTypes.html" rel="nofollow">link</a> has some more information.</p> http://stackoverflow.com/questions/1434760/one-line-if-statements/1434770#1434770 7 Answer by Alan for One line if statements Alan 2009-09-16T18:43:37Z 2009-09-16T18:43:37Z <p>I've always been a fan of braces. If someone were to modify a oneline if statement like so:</p> <pre><code>if(condition) statement=new assignment; </code></pre> <p>to</p> <pre><code>if(condition) statement = new assignment; another statement; </code></pre> <p>You won't get the expected behavior.</p> <p>Using the braces pretty much insures that if someone modifies an if statement, they'll make sure to put the right statements in the right place.</p> http://stackoverflow.com/questions/1429929/can-i-modify-a-value-in-setting-setting-file/1429939#1429939 0 Answer by Alan for Can I modify a value in setting.setting file? Alan 2009-09-15T22:23:42Z 2009-09-15T22:23:42Z <p>You can modify the value, then call: <code>Properties.Settings.Default.Save();</code></p> http://stackoverflow.com/questions/1429720/boost-static-vs-shared-libraries/1429736#1429736 5 Answer by Alan for Boost - "static" vs "shared" libraries Alan 2009-09-15T21:33:12Z 2009-09-15T21:33:12Z <p>Better is subjective. Shared cuts down on size, at the risk of dependancies. Static solves dependancy issues but increases the size.</p> <p>For your purposes, I'd say building it in which ever way gets you to code faster is the better solution.</p> http://stackoverflow.com/questions/1407932/get-logged-in-user/1407949#1407949 2 Answer by Alan for Get Logged In User Alan 2009-09-10T21:57:52Z 2009-09-10T21:57:52Z <p><code>Thread.CurrentPrincipal.Identity</code> will do the exact same thing as <code>HttpContext.CurrentContext...</code></p> <p>It will return the identity associated with the current executing thread, which in most cases, is the logged on user*.</p> <p>Note: *If you are using delegation/impersonation or running as a service account, it will return the account of which ever identity the thread is under, but in your case, it doesn't sound like you are doing any context identity switching.</p> http://stackoverflow.com/questions/1407772/optimizing-an-asmx-web-service-with-multiple-long-running-operations/1407827#1407827 2 Answer by Alan for Optimizing an ASMX web service with Multiple Long-Running Operations Alan 2009-09-10T21:27:53Z 2009-09-10T21:27:53Z <p>You can use a pair of <code>AutoResetEvents</code>, one for each thread. At the end of thread execution, you call <code>AutoResetEvents.Set()</code> to trigger the event.</p> <p>After spawning the threads, you use <code>WaitAll()</code> with the two AutoResetEvents. This will cause the thread to block until both events are set.</p> <p>The caveat to this approach is that you must ensure the Set() is guarantee to be called, otherwise you will block forever. Additionally ensure that with threads you exercise proper exception handling, or you will inadvertently cause more performance issues when unhanded exceptions cause your web application to restart.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.aspx" rel="nofollow">MSDN Has sample code regarding AutoResetEvent usage.</a></p> http://stackoverflow.com/questions/1407380/when-do-we-do-gethashcode-for-a-dictionary/1407410#1407410 0 Answer by Alan for When do we do GetHashCode() for a Dictionary? Alan 2009-09-10T20:00:30Z 2009-09-10T20:00:30Z <p>You have two questions here.</p> <ol> <li>When do you need to implement GetHashCode() </li> <li>Would you ever use an object for a dictionary key.</li> </ol> <p>Lets start with 1. If you are writing a class that might possibly be used by someone else, you will want to define GetHashCode() and Equals(), when reference Equals() is not enough. If you're not planning on using it in a dictionary, and it's for your own usage, then I see no reason to skip GetHashCode() etc.</p> <p>For 2), you should use an object anytime you have a need to have a constant time lookup from an object to some other type. Since GetHashCode() returns a numeric value, and collections store references, there is no penalty for using an Object over an Int or a string (remember a string is an object).</p> http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T19:04:44Z 2009-10-14T19:04:44Z @BenAlabaster: I agree with you. I HATE Music on websites. Especially Auto play music, but then again, we're not the target audience. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:59:26Z 2009-10-14T18:59:26Z Do you want to be known as a Nordstroms? Or a BestBuy? http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:58:04Z 2009-10-14T18:58:04Z @BenAlabaster: True, which is why I said to explain your feelings, and if they still insist, capitulate. Have you ever had the experience of walking into a store and having someone try to convince you that you are wrong? That's what this is about. Perhaps the client doesn't know about music, or perhaps the client has done their research and knows that music will work in this scenario. All I am saying is, dont' be hardheaded. If your client insists on music, don't waste time trying to convince them they're wrong. Just do what you're being paid to do. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:52:57Z 2009-10-14T18:52:57Z @BenAlabaster: If those people are my customers, then yeah, I'd care big time. If I'm selling shirts with ironic sayings, Red Staplers, etc, then I would not. My point is that, you need to know your audience, in order to know whether music would be appropriate. High end fashion purchasers might react well to a nice piano sonata. Many high end clothing stores employ a piano player to play while customers shop. So perhaps an elegant site with elegant music might recreate that same experience. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568175#1568175 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:49:19Z 2009-10-14T18:49:19Z That is, your 2nd suggestion. 10 random strangers is not a large enough population sample. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568175#1568175 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:48:17Z 2009-10-14T18:48:17Z +1 Super Crunchers! I was just going to edit my answer to say this. This is the best answer. Create a test that randomly has visitors hear music and doesn't hear music, then track the amount of time spent on each. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:44:57Z 2009-10-14T18:44:57Z @Lance Fisher: You've never had customers then. If you live and die by your reputation, the customer is <i>always</i> right. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:44:05Z 2009-10-14T18:44:05Z Explain that to your client. To most net denizens, it's inappropriate to use audio on your website, unless you are in a band, and the user specifically asks to play a song. I hadn't thought about your need for a portfolio reference, but you know that you're not a webloser, and you were working hard to give the customer the experience they desire. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea Comment by Alan on How can I convince a client that audio on a website is a bad idea? Alan 2009-10-14T18:39:36Z 2009-10-14T18:39:36Z Who is your clients target audience? Is it the &quot;techie&quot; people that care about netiquette, or is it the type of people who fwd chain letters, loved the dancing baby, and insist on using email stationary. These two groups will respond differently to audio. http://stackoverflow.com/questions/1540943/how-can-i-find-objects-that-are-in-both-arrays-and-promptly-add-it-to-another-arr/1540953#1540953 Comment by Alan on How can I find objects that are in BOTH arrays and promptly add it to another array? Alan 2009-10-09T00:29:53Z 2009-10-09T00:29:53Z Thanks @Bob, however this was a more generalized algorithm, not pertaining to any language. http://stackoverflow.com/questions/1540916/finding-evidence-of-a-denial-of-service-attack-linux Comment by Alan on Finding Evidence of a Denial of Service Attack (Linux) Alan 2009-10-08T22:44:58Z 2009-10-08T22:44:58Z Hi Brad, this question doesn't belong on Stackoverflow, as it's not programming related. It's better asked at Serverfault.com which is geared towards troubleshooting server issues. Give it a few minutes and this question will be closed and automigrated. http://stackoverflow.com/questions/1540315/how-is-the-internet-changing-the-way-we-program Comment by Alan on How is the internet changing the way we program? Alan 2009-10-08T20:48:06Z 2009-10-08T20:48:06Z Philosophical != Programming http://stackoverflow.com/questions/1539396/apples-property-list-plist-implementation-in-c Comment by Alan on apple's property list (plist) implementation in c++ Alan 2009-10-08T17:49:04Z 2009-10-08T17:49:04Z <a href="http://stackoverflow.com/questions/1061005/calling-objective-c-method-from-c-method" rel="nofollow" title="calling objective c method from c method">stackoverflow.com/questions/1061005/&hellip;</a> has some info on how to call Obj-C from C++ http://stackoverflow.com/questions/1539396/apples-property-list-plist-implementation-in-c Comment by Alan on apple's property list (plist) implementation in c++ Alan 2009-10-08T17:46:04Z 2009-10-08T17:46:04Z Are you on the OS X environment? Can you make use of a C++/Obj-C Bridge to call the native API's to access the plist file? Otherwise I'd use Xerces and parse it as XML. http://stackoverflow.com/questions/1535023/c-append-number-to-file-being-saved/1535033#1535033 Comment by Alan on C# - Append Number To File Being Saved Alan 2009-10-08T16:57:40Z 2009-10-08T16:57:40Z @jnylen: What if the user creates a file that has the name of one of the screenshot files? &gt;&gt; You can't have two files with identical names. What if the user edits an old screenshot file? &gt;&gt; Editing a file won't matter, as it doesn't modify the create date. The solution needs to check for the existence of each file until it finds a &quot;gap&quot;. &gt;&gt; True enough. However if it can't write the file (because it exists), it should increase the number until it can write. I don't think looking for a gap is a good idea, because if you have SS1, SS3,SS4, the newest screenshot will be SS2?