User Alan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T01:36:13Zhttp://stackoverflow.com/feeds/user/37843http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1197191/help-with-javascript-to-jscript-conversion0Help with Javascript to JScript ConversionAlan2009-07-28T22:56:02Z2009-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-faster0C# Interop with C vs Interop with Java: Which is better/easier/faster?Alan2009-03-05T00:02:34Z2009-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-service0SMS REST Service?Alan2009-09-26T07:20:25Z2009-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&msg=supdawg" rel="nofollow">http://www.jonskeetistheman.com/SMSSend.aspx?phone=4255555555&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#15681790Answer by Alan for How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:36:35Z2009-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#15583510Answer by Alan for setting envirnoment variable in linuxAlan2009-10-13T05:34:25Z2009-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#15409533Answer by Alan for How can I find objects that are in BOTH arrays and promptly add it to another array?Alan2009-10-08T22:51:14Z2009-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#15404630Answer by Alan for c# - Why can't my Dictionary class see the ToArray() method? Alan2009-10-08T21:01:59Z2009-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#15403923Answer by Alan for Why isn't getopt working if sys.argv is passed fully?Alan2009-10-08T20:51:45Z2009-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#15350330Answer by Alan for C# - Append Number To File Being SavedAlan2009-10-08T00:52:27Z2009-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#15347214Answer by Alan for C# How would I check if a date that is currently a string is today?Alan2009-10-07T23:08:41Z2009-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 >= 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#14944293Answer by Alan for How do I Search/Find and Replace in an STL stringAlan2009-09-29T19:18:50Z2009-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#14889051Answer by Alan for How easy is it to reverse engineer .net obfuscated code?Alan2009-09-28T19:26:41Z2009-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#14621251Answer by Alan for Should I get a math degree or a CS degree?Alan2009-09-22T19:31:49Z2009-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#14554185Answer by Alan for Which programming language is more suitable for socket programming?Alan2009-09-21T16:24:33Z2009-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#14505170Answer by Alan for C++ `argc` and `argv` argumentsAlan2009-09-20T07:27:30Z2009-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 < argc; ++i)
{
std::cout << "argv[" << i << "] = " << argv[i] << 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#14493121Answer by Alan for Linq to List and IEnumerable issuesAlan2009-09-19T19:32:23Z2009-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#14470754Answer by Alan for How to go about getting a job at an Agile shop?Alan2009-09-18T22:23:15Z2009-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#14470111Answer by Alan for C++ std::system 'system' not a Member of stdAlan2009-09-18T21:59:16Z2009-09-18T21:59:16Z<p>Make sure you have <code>#include <cstdlib></code> in your code.</p>
http://stackoverflow.com/questions/1446018/classes-or-wrapper-for-working-with-dde-in-net/1446058#14460581Answer by Alan for classes or wrapper for working with dde in .net?Alan2009-09-18T18:06:38Z2009-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#14454453Answer by Alan for When does a compiled query that returns an IQueryable execute?Alan2009-09-18T15:56:18Z2009-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#14414701Answer by Alan for How much information in error messages to regular users?Alan2009-09-17T21:38:49Z2009-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#14405580Answer by Alan for Equivalent of C++ reference type in C#Alan2009-09-17T18:28:43Z2009-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#14398230Answer by Alan for OnClientClick not workingAlan2009-09-17T16:12:40Z2009-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#14396107Answer by Alan for Relationship between CFMutableDictionary and NSMutableDictionaryAlan2009-09-17T15:32:21Z2009-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#14347707Answer by Alan for One line if statementsAlan2009-09-16T18:43:37Z2009-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#14299390Answer by Alan for Can I modify a value in setting.setting file?Alan2009-09-15T22:23:42Z2009-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#14297365Answer by Alan for Boost - "static" vs "shared" librariesAlan2009-09-15T21:33:12Z2009-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#14079492Answer by Alan for Get Logged In UserAlan2009-09-10T21:57:52Z2009-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#14078272Answer by Alan for Optimizing an ASMX web service with Multiple Long-Running OperationsAlan2009-09-10T21:27:53Z2009-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#14074100Answer by Alan for When do we do GetHashCode() for a Dictionary?Alan2009-09-10T20:00:30Z2009-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-ideaComment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T19:04:44Z2009-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#1568179Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:59:26Z2009-10-14T18:59:26ZDo 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#1568179Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:58:04Z2009-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-ideaComment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:52:57Z2009-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#1568175Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:49:19Z2009-10-14T18:49:19ZThat 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#1568175Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:48:17Z2009-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#1568179Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:44:57Z2009-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#1568179Comment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:44:05Z2009-10-14T18:44:05ZExplain 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-ideaComment by Alan on How can I convince a client that audio on a website is a bad idea?Alan2009-10-14T18:39:36Z2009-10-14T18:39:36ZWho is your clients target audience? Is it the "techie" 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#1540953Comment by Alan on How can I find objects that are in BOTH arrays and promptly add it to another array?Alan2009-10-09T00:29:53Z2009-10-09T00:29:53ZThanks @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-linuxComment by Alan on Finding Evidence of a Denial of Service Attack (Linux)Alan2009-10-08T22:44:58Z2009-10-08T22:44:58ZHi 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-programComment by Alan on How is the internet changing the way we program?Alan2009-10-08T20:48:06Z2009-10-08T20:48:06ZPhilosophical != Programminghttp://stackoverflow.com/questions/1539396/apples-property-list-plist-implementation-in-cComment by Alan on apple's property list (plist) implementation in c++Alan2009-10-08T17:49:04Z2009-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/…</a> has some info on how to call Obj-C from C++http://stackoverflow.com/questions/1539396/apples-property-list-plist-implementation-in-cComment by Alan on apple's property list (plist) implementation in c++Alan2009-10-08T17:46:04Z2009-10-08T17:46:04ZAre 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#1535033Comment by Alan on C# - Append Number To File Being SavedAlan2009-10-08T16:57:40Z2009-10-08T16:57:40Z@jnylen: What if the user creates a file that has the name of one of the screenshot files?
>> You can't have two files with identical names.
What if the user edits an old screenshot file?
>> 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 "gap".
>> 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?