User Asmor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:29:34Z http://stackoverflow.com/feeds/user/18210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/812739/problem-deserializing-validated-xml-cant-convert-to-from-array 0 Problem deserializing validated XML, can't convert to/from array Asmor 2009-05-01T18:56:58Z 2009-11-05T07:00:03Z <p>I'm a bit out of my element. I've used xsd.exe to create an xsd schema from an xml file, and then to create a C# class from that xsd. That all seems to work fine.</p> <p>At the moment I'm just trying to get the XML deserialized. The file I'm deserializing if the very same file I used to build the class originally. Here's my code:</p> <pre><code>String xsdPath=@"C:\Users\tol56881\Documents\dnd4e.xsd"; String xmlPath=@"C:\Users\tol56881\Documents\dnd4e.xml"; String xsdNamespace=""; //Validation stuff XmlParserContext context = new XmlParserContext(null, null, "", XmlSpace.None); XmlValidatingReader vr = new XmlValidatingReader(xmlPath, XmlNodeType.Element, context); vr.ValidationType = ValidationType.Schema; vr.Schemas.Add(xsdNamespace, xsdPath); while (vr.Read()) ; //Actually reading the file TextReader tr = new StreamReader(xmlPath); D20Character character = (D20Character)(new XmlSerializer(typeof(D20Character))).Deserialize(tr); </code></pre> <p>It compile fine, but when I try to run it I get the an error that's repeated for four different objects. I've given an example below, changing the names of the objects.</p> <pre><code>Unable to generate a temporary class (result=1). error CS0030: Cannot convert type 'Namespace.ObjectName[]' to 'Namespace.ObjectName' error CS0029: Cannot implicitly convert type 'Namespace.ObjectName' to 'Namespace.ObjectName[]' </code></pre> <p>So it seems like the program is trying to go from array to object and back to array, but I'm not really sure. The auto-generated class code is a huge mess that's difficult to wade through. I'm hoping that maybe there's something simple I'm missing here.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1246486/dllnotfoundexception-but-dll-is-there 2 DllNotFoundException, but DLL is there Asmor 2009-08-07T19:10:57Z 2009-09-08T20:50:58Z <p>So I'm using an SDK for a hardware random number generator which provides a dll called PsyREG.dll for interacting with it, as well as some c# source for using the methods from the dll.</p> <p>It has worked in the past, but somehow it has stopped working. My hands are a bit tied as I don't actually have access to the device in question at the moment, so I can't try a lot of things...</p> <p>However, here's the weird thing. The dll is there, the same place it's always been. Ahd in fact File.Exists("PsyREG.dll") returns true, and I've double checked and that's the exact same way the provided c# source imports it, e.g. [DllImport("PsyREG.dll")].</p> <p>Any ideas?</p> http://stackoverflow.com/questions/109215/what-bad-habits-did-you-learn-from-your-first-language 11 What bad habits did you learn from your first language? Asmor 2008-09-20T20:14:20Z 2009-08-06T15:37:15Z <p>I suspect that many of us didn't initially learn programming from a class, but picked it up on our own. What are some bad habits you picked up from your first language?</p> http://stackoverflow.com/questions/1149702/suppressing-unknown-publisher-prompt-which-didnt-used-to-appear 1 Suppressing Unknown Publisher prompt which didn't used to appear Asmor 2009-07-19T11:31:27Z 2009-07-19T11:31:27Z <p>I'm working on a Visual Studio .Net program for someone, and recently the program's been complaining that it's from an unknown publisher. I understand the correct thing to do here is sign it, but for reasons I won't go into that's not an option.</p> <p>The thing is, the program's never done this in any earlier versions. As far as I know, I haven't changed anything that would have had an effect on security or whatever might be causing this issue. It doesn't do it on my system, either. The only major change I made since the last version in which it didn't say it was from an unknown publisher was adding SDL .Net for some graphics (previously had been generating bitmaps and using the picturebox element).</p> http://stackoverflow.com/questions/1059888/get-httpwebresponse-headers-without-redirecting 1 Get HttpWebResponse headers WITHOUT redirecting Asmor 2009-06-29T18:58:27Z 2009-06-29T19:05:14Z <p>I want to check if a particular page gets redirected or not. However, whenever I try this the headers I get back seem to be from the redirected page, not the initially requested page (and, in particular, the status is OK rather than the 302 I want to see).</p> <p>Is there something I can set so that it won't automatically follow the redirects?</p> <pre><code>WebRequest request = WebRequest.Create(@"http://www.example.com/page.html"); request.Method = "HEAD"; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); if (response.StatusCode == HttpStatusCode.Redirect) { ... } else { MessageBox.Show("HTTP Code: " + response.StatusCode + "\r\n\r\n" + response.StatusDescription); return false; } </code></pre> http://stackoverflow.com/questions/976747/efficiently-drilling-down-into-xml-tree-with-xlinq 0 Efficiently "drilling down" into XML tree with xlinq? Asmor 2009-06-10T16:29:46Z 2009-06-10T16:35:51Z <p>I'm writing a program to parse some third-party XML files. The structure is something like...</p> <pre><code>&lt;CharacterSheet&gt; ... &lt;StatBlock&gt; ... &lt;Stat&gt; ... &lt;alias /&gt; ... &lt;/Stat&gt; ... &lt;/StatBlock&gt; ... &lt;/CharacterSheet&gt; </code></pre> <p>I'm using this in to get some practice with linq, and I'm fining I have to write some really ugly chained queries to get what I want, a list of stats and all their alias.</p> <pre><code>var CharSheet = from i in character.Elements() where i.Name == "CharacterSheet" select i; var StatBlocks = from sheet in CharSheet from statBlock in sheet.Elements() where statBlock.Name == "StatBlock" select statBlock; var stats = from statBlock in StatBlocks from stat in statBlock.Elements() select stat; var statAliases = from stat in stats from alias in stat.Elements() where alias.Name == "alias" select new { stat, alias }; </code></pre> <p>And I realize I could make that into one really long query using "into" (which is originally how I had it), but that just made it even more dense and difficult to work with.</p> <p>It seems like there's got to be a simpler way to do what I'm trying to do.</p> http://stackoverflow.com/questions/812739/problem-deserializing-validated-xml-cant-convert-to-from-array/812850#812850 0 Answer by Asmor for Problem deserializing validated XML, can't convert to/from array Asmor 2009-05-01T19:21:43Z 2009-05-01T19:21:43Z <p>I managed to fix this. Each of the four objects in question were generated as doubly-indexed arrays, such as:</p> <pre><code> private loot[][] lootTallyField; </code></pre> <p>and</p> <pre><code> public loot[][] LootTally { get { return this.lootTallyField; } set { this.lootTallyField = value; } } </code></pre> <p>All I did was remove one set of brackets, and it all seems to be working fine. No problems with deserialization and a quick inspection of the deserialized object makes it look like the data was loaded correctly.</p> <pre><code> private loot[] lootTallyField; </code></pre> <p>and</p> <pre><code> public loot[] LootTally { get { return this.lootTallyField; } set { this.lootTallyField = value; } } </code></pre> <p>Still not sure why xsd.exe made these doubly-indexed if they're not supposed to be. I feel like I'm still missing something, hence why this question is still open.</p> <p>Particularly, if I ever need to re-generate this code, then I'd need to reapply the fix, which kind of defeats the purpose of using a partial class in the first place...</p> http://stackoverflow.com/questions/99688/private-vs-public-members-in-practice-how-important-is-encapsulation 11 Private vs. Public members in practice (how important is encapsulation?) Asmor 2008-09-19T04:44:32Z 2009-04-23T09:13:53Z <p>One of the biggest advantages of object-oriented programming is encapsulation, and one of the "truths" we've (or, at least, I've) been taught is that members should always be made private and made available via accessor and mutator methods, thus ensuring the ability to verify and validate the changes.</p> <p>I'm curious, though, how important this really is in practice. In particular, if you've got a more complicated member (such as a collection), it can be very tempting to just make it public rather than make a bunch of methods to get the collection's keys, add/remove items from the collection, etc.</p> <p>Do you follow the rule in general? Does your answer change depending on whether it's code written for yourself vs. to be used by others? Are there more subtle reasons I'm missing for this obfuscation?</p> http://stackoverflow.com/questions/683384/multiple-captures-with-one-set-of-parens-in-a-larger-regex 1 Multiple captures with one set of parens in a larger regex Asmor 2009-03-25T20:49:58Z 2009-03-27T04:13:23Z <p>I've got a regular expression (javascript) which is something like...</p> <p>/(x)(y)+(z)/gi</p> <p>The problem is that I'll always get exactly 3 captures from those parens, even if the (y)+ matched multiple times. If it does match multiple times, it just returns the last match. I've no way of knowing ahead of time how many times y will match on any given run, but I want to capture all of them.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/96553/practical-limit-to-length-of-sql-query-specifically-mysql 2 Practical limit to length of SQL query (specifically MySQL) Asmor 2008-09-18T20:28:19Z 2008-12-30T21:53:02Z <p>Is it particularly bad to have a very, very large SQL query with lots of (potentially redundant) WHERE clauses?</p> <p>For example, here's a query I've generated from my web application with everything turned off, which should be the largest possible query for this program to generate:</p> <pre><code>SELECT * FROM 4e_magic_items INNER JOIN 4e_magic_item_levels ON 4e_magic_items.id = 4e_magic_item_levels.itemid INNER JOIN 4e_monster_sources ON 4e_magic_items.source = 4e_monster_sources.id WHERE (itemlevel BETWEEN 1 AND 30) AND source!=16 AND source!=2 AND source!=5 AND source!=13 AND source!=15 AND source!=3 AND source!=4 AND source!=12 AND source!=7 AND source!=14 AND source!=11 AND source!=10 AND source!=8 AND source!=1 AND source!=6 AND source!=9 AND type!='Arms' AND type!='Feet' AND type!='Hands' AND type!='Head' AND type!='Neck' AND type!='Orb' AND type!='Potion' AND type!='Ring' AND type!='Rod' AND type!='Staff' AND type!='Symbol' AND type!='Waist' AND type!='Wand' AND type!='Wondrous Item' AND type!='Alchemical Item' AND type!='Elixir' AND type!='Reagent' AND type!='Whetstone' AND type!='Other Consumable' AND type!='Companion' AND type!='Mount' AND (type!='Armor' OR (false )) AND (type!='Weapon' OR (false )) ORDER BY type ASC, itemlevel ASC, name ASC </code></pre> <p>It seems to work well enough, but it's also not particularly high traffic (a few hundred hits a day or so), and I wonder if it would be worth the effort to try and optimize the queries to remove redundancies and such.</p> http://stackoverflow.com/questions/209963/finding-entries-in-one-mysql-table-based-on-conditions-on-another-table 0 Finding entries in one MySQL table based on conditions on another table Asmor 2008-10-16T19:40:14Z 2008-10-16T19:56:43Z <p>I've got a table of hardware and a table of incidents. Each hardware has a unique tag, and the incidents are tied to the tag.</p> <p>How can I select all the hardware which has at least one incident listed as unresolved?</p> <p>I can't just do a join, because then if one piece of hardware had multiple unresolved issues, it would show up multiple times.</p> http://stackoverflow.com/questions/130614/change-cardinality-of-item-in-c-dictionary 2 Change cardinality of item in C# dictionary Asmor 2008-09-24T23:33:56Z 2008-09-25T03:53:27Z <p>I've got a dictionary, something like</p> <pre><code>Dictionary&lt;Foo,String&gt; fooDict </code></pre> <p>I step through everything in the dictionary, e.g.</p> <pre><code>foreach (Foo foo in fooDict.Keys) MessageBox.show(fooDict[foo]); </code></pre> <p>It does that in the order the foos were added to the dictionary, so the first item added is the first foo returned.</p> <p>How can I change the cardinality so that, for example, the third foo added will be the second foo returned? In other words, I want to change its "index."</p> http://stackoverflow.com/questions/130614/change-cardinality-of-item-in-c-dictionary/130816#130816 0 Answer by Asmor for Change cardinality of item in C# dictionary Asmor 2008-09-25T00:34:34Z 2008-09-25T00:34:34Z <p>I don't know if anyone will find this useful, but here's what I ended up figuring out. It seems to work (by which I mean it doesn't throw any exceptions), but I'm still a ways away from being able to test that it works as I hope it does. I have done a similar thing before, though.</p> <pre><code> public void sortSections() { //OMG THIS IS UGLY!!! KeyValuePair&lt;ListViewItem, TextSection&gt;[] sortable = textSecs.ToArray(); IOrderedEnumerable&lt;KeyValuePair&lt;ListViewItem, TextSection&gt;&gt; sorted = sortable.OrderBy(kvp =&gt; kvp.Value.cardinality); foreach (KeyValuePair&lt;ListViewItem, TextSection&gt; kvp in sorted) { TextSection sec = kvp.Value; ListViewItem key = kvp.Key; textSecs.Remove(key); textSecs.Add(key, sec); } } </code></pre> http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110201#110201 16 Answer by Asmor for How do you protect your software from illegal distribution? Asmor 2008-09-21T03:52:33Z 2008-09-21T03:52:33Z <p>Don't.</p> <p>Pirates will pirate. No matter what solution you come up with, it can and will be cracked.</p> <p>On the other hand, your actual, paying customers are the ones who are being inconvenienced by the crap.</p> http://stackoverflow.com/questions/109215/what-bad-habits-did-you-learn-from-your-first-language/109244#109244 0 Answer by Asmor for What bad habits did you learn from your first language? Asmor 2008-09-20T20:19:22Z 2008-09-20T20:19:22Z <p>My first language was JavaScript (unless you want to count HTML...). It was great to learn because it's such a forgiving language, but it also set me up for some really bad habits that still trip me up occasionally.</p> <p>In particular, the fact that JS doesn't require a semi-colon to terminate each line. I still frequently have to go back and add semi-colons to my PHP code after making a small change...</p> <p>Another biggie, compounded by the fact that PHP shares this "feature," is weak typing. Oh, how I wish C# would just know to call the damn .toString() automatically when I'm spitting out some label or message...</p> http://stackoverflow.com/questions/101468/how-can-you-improve-your-work-environment/101607#101607 0 Answer by Asmor for How can you improve your work environment? Asmor 2008-09-19T12:53:42Z 2008-09-19T12:53:42Z <p>On the topic of headphones, don't shell out the big bucks for active noise canceling ones. Get some canal phones instead, they're like earbuds but are actually inserted into your ear canal a bit rather than just resting outside of it. This has two great benefits:</p> <ol> <li>They fill and block your ear canal, drastically reducing environmental noise.</li> <li>Thanks to the noise reduction, you can listen to your music quieter and it sounds louder and more clear, which is good for your ears.</li> </ol> <p>I got a pair of Skull Candy-branded ones at Staples a while back for $13 and they're probably the best headphones I've ever owned, though to be fair I've never spent for than about $50 on a pair.</p> <p>It also takes a bit of adjustment getting used to having something stuck in your ear, but totally worth it.</p> http://stackoverflow.com/questions/99653/associating-a-listview-with-a-collection-of-objects 0 Associating a ListView with a collection of objects Asmor 2008-09-19T04:31:57Z 2008-09-19T04:32:03Z <p>How can you use a ListView to show the user a collection of objects, and to manage those objects?</p> http://stackoverflow.com/questions/99653/associating-a-listview-with-a-collection-of-objects/99655#99655 1 Answer by Asmor for Associating a ListView with a collection of objects Asmor 2008-09-19T04:32:03Z 2008-09-19T04:32:03Z <p>For the purpose of argument, here's our design goal: We've got a "monster" object, and that "monster" will have several "powers." The user interacts with the powers via a ListView item.</p> <p>First, we create a Power object. Give the object the following method:</p> <pre><code>public ListViewItem makeKey() { return new ListViewItem(name); } </code></pre> <p>where name is the name of the power, and a string. This ListViewItem will serve as a key, allowing us to identify and retrieve this power later.</p> <p>Next, we need to add somewhere in the Monster object to keep track of all these powers.</p> <pre><code>public Dictionary&lt;ListViewItem,Power&gt; powers; </code></pre> <p>So now we need a way to add powers to the monster.</p> <pre><code>public void addPower(Power newPower) { ListViewItem key = newPower.makeKey(); monster.powers.add(key, newPower); } </code></pre> <p>Ok, almost done! Now we've got a dictionary of ListViewItems which are tied to the monster's powers. Just grab the keys from that dictionary and stick them in a ListView:</p> <pre><code>foreach (ListViewItem key in powers.Keys) powerList.Items.Add(key); </code></pre> <p>Where powerList is the ListView we're adding the ListViewItems to.</p> <p>Alright, so we've got the ListViewItems in the ListView! Now, how do we interact with those? Make a button and then a function something like this:</p> <pre><code>private void powerRemoveButton_Click(object sender, EventArgs e) { if (powerList.SelectedIndices.Count &gt; 0) { int n = powerList.SelectedIndices[0]; ListViewItem key = powerList.Items[n]; monster.powers.Remove(key); powerList.Items.Remove(key); } else { MessageBox.Show("No power selected."); } } </code></pre> <p>And that's that. I hope you've found this helpful. I'm not sure if this was an intentional aspect of their design, but ListViews and Dictionaries blend together so amazingly well when you use a ListViewItem as a key that it's a joy!</p> http://stackoverflow.com/questions/98134/how-can-i-make-windows-software-run-as-a-different-user-within-a-script/98350#98350 0 Answer by Asmor for How can I make Windows software run as a different user within a script? Asmor 2008-09-19T00:31:59Z 2008-09-19T00:31:59Z <p>This might help, it's a class I've used in another project to let people make their own accounts; everyone had to have access to the program, but the same account couldn't be allowed to have access to the LDAP stuff, so the program uses this class to run it as a different user.</p> <p><a href="http://www.codeproject.com/KB/dotnet/UserImpersonationInNET.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/UserImpersonationInNET.aspx</a></p> http://stackoverflow.com/questions/97204/comparing-c-and-java/97254#97254 1 Answer by Asmor for Comparing C# and Java Asmor 2008-09-18T21:36:58Z 2008-09-18T21:36:58Z <p>Don't take this as anything more than an opinion, but personally I can't stand Java's GUI. It's just close enough to Windows but not quite, so it gets into an uncanny valley area where it's just really upsetting to me.</p> <p>C# (and other .Net languages, I suppose) allow me to make programs that perfectly blend into Windows, and that makes me happy.</p> <p>Of course, it's moot if we're not talking about developing a desktop application...</p> http://stackoverflow.com/questions/96501/perks-for-new-programmers/97095#97095 3 Answer by Asmor for Perks for new programmers Asmor 2008-09-18T21:19:57Z 2008-09-18T21:19:57Z <p>Speaking as an actual college student (senior), here's some things I'd like:</p> <p>A degree of direction (tell me what you need done)</p> <p>A degree of autonomy (trust me to get it done)</p> <p>I'm probably unusual among my peers in that I prefer professionalism. As a general rule of thumb, I think casual dress would be very helpful, though it wouldn't be a huge issue for me personally.</p> <p>But really, the big thing is trust, and letting me do what you're paying me to do. If I think I'm going to be stuck attending constant meetings and always worrying about office politics, that's a big strike against you. Competence is also very important... I don't know if I could work for a manager who knew nothing about programming. I understand that it's entirely likely a great manager might not even be as good a programmer as I am, but they should at least know enough to know what's feasible and what's not.</p> <p>Oh, and probably the biggest thing for me: Long term prospects. I hate job hunting, and I'd tolerate an otherwise-mildly intolerable job if I knew that I wasn't likely to be laid off, out-sourced, etc.</p> http://stackoverflow.com/questions/1246486/dllnotfoundexception-but-dll-is-there/1246501#1246501 Comment by Asmor on DllNotFoundException, but DLL is there Asmor 2009-08-07T19:53:46Z 2009-08-07T19:53:46Z Thanks, that was it. There were some other things that were needed, but for a few reasons I didn't think to check that (including the fact that it said it couldn't load PsyREG.dll, not a different file) http://stackoverflow.com/questions/976747/efficiently-drilling-down-into-xml-tree-with-xlinq/976763#976763 Comment by Asmor on Efficiently "drilling down" into XML tree with xlinq? Asmor 2009-06-10T16:55:48Z 2009-06-10T16:55:48Z Thanks! That was actually my natural inclination (trying .Elements(&quot;name&quot;), but in visual studio it was saying that the only argument I could pass was an XName, so I didn't even try to use a string and I couldn't figure out how to make an XName. But yeah, that works perfectly (or, at least, the compiler doesn't mind me putting strings there... I haven't tested it yet, but I suspect it should be fine). Thanks! http://stackoverflow.com/questions/27731/whats-wrong-with-c/27776#27776 Comment by Asmor on What's wrong with C#? Asmor 2009-06-10T16:22:20Z 2009-06-10T16:22:20Z Your second and third points under verbose syntax seem contradictory... &quot;var&quot; is the compiler's way of saving you a lot of keystrokes and potential errors, and personally I think making new variables without any type declaration would be a really bad idea because it could lead to ambiguities and unintentional, difficult-to-find bugs. http://stackoverflow.com/questions/812739/problem-deserializing-validated-xml-cant-convert-to-from-array Comment by Asmor on Problem deserializing validated XML, can't convert to/from array Asmor 2009-05-01T19:18:44Z 2009-05-01T19:18:44Z Indeed. They were kind enough in the last update to make the XML files friendlier to third parties, so figured I'd take them up on it. I did manage to fix it. About to add details on the fix, though I'm leaving the problem open since I don't understand why the problem came up in the first place. http://stackoverflow.com/questions/748780/best-way-to-obfuscate-an-e-mail-address-on-a-website/748805#748805 Comment by Asmor on Best way to obfuscate an e-mail address on a website? Asmor 2009-04-22T18:19:04Z 2009-04-22T18:19:04Z I just post my email unobfuscated as well. I use gmail, and the spam filter seems to work remarkably well. http://stackoverflow.com/questions/683384/multiple-captures-with-one-set-of-parens-in-a-larger-regex/683417#683417 Comment by Asmor on Multiple captures with one set of parens in a larger regex Asmor 2009-03-26T10:00:55Z 2009-03-26T10:00:55Z Thanks. Kind of a 'duh' moment when you put it that way. This regex is just breaking up a huge parsing problem into more manageable chunks to be further regexed anyways, so this fits nicely. I'm rather surprised there's no native way to do this, though. Guess it would throw off cardinality. http://stackoverflow.com/questions/132798/what-should-every-programmer-know/132839#132839 Comment by Asmor on What should every programmer know? Asmor 2008-09-25T20:29:39Z 2008-09-25T20:29:39Z I actually disagree. That's what you hire people for. You'll never be able to think like a user, but you can certainly have people tell you what users think and act on that advice. Just don't ask the users how they think! That's the worst option of all. http://stackoverflow.com/questions/135123/how-can-i-get-gmail-like-file-uploads-for-my-web-app/135128#135128 Comment by Asmor on How can I get Gmail-like file uploads for my web app? Asmor 2008-09-25T18:49:45Z 2008-09-25T18:49:45Z It wasn't the OP, it was I who down-voted. Heavily biased against flash. http://stackoverflow.com/questions/130614/change-cardinality-of-item-in-c-dictionary/130911#130911 Comment by Asmor on Change cardinality of item in C# dictionary Asmor 2008-09-25T01:24:35Z 2008-09-25T01:24:35Z Wow, I never even know such a thing existed. Thanks! http://stackoverflow.com/questions/130614/change-cardinality-of-item-in-c-dictionary/130816#130816 Comment by Asmor on Change cardinality of item in C# dictionary Asmor 2008-09-25T01:20:36Z 2008-09-25T01:20:36Z Desire to associate a listviewitem with a custom object. I'd done it a few times already in the project I'm working on, but this is the first time where cardinality really mattered. http://stackoverflow.com/questions/130614/change-cardinality-of-item-in-c-dictionary/130653#130653 Comment by Asmor on Change cardinality of item in C# dictionary Asmor 2008-09-24T23:46:03Z 2008-09-24T23:46:03Z My dictionary is actually Dictionary&lt;ListViewItem,CustomObject&gt; I want to make it so that when the user re-orders the items in the listview, it also reorders the items in the dictionary, so that they come out in the same order. http://stackoverflow.com/questions/101468/how-can-you-improve-your-work-environment/101607#101607 Comment by Asmor on How can you improve your work environment? Asmor 2008-09-20T03:29:13Z 2008-09-20T03:29:13Z I agree that they're not suited to everyone, but I'd also wager that you wouldn't go out and buy an expensive, custom-fit pair until you already knew that they work for you. You can get them pretty cheap at many stores. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84815#84815 Comment by Asmor on What's your favorite "programmer" cartoon? Asmor 2008-09-19T13:28:35Z 2008-09-19T13:28:35Z Worth noting that the spike appears between 1.2 and 1.4, closer to 1.4. Specifically, the spike is at .1337 :D http://stackoverflow.com/questions/101574/how-to-open-an-external-file-from-html Comment by Asmor on How to open an external file from HTML Asmor 2008-09-19T12:50:33Z 2008-09-19T12:50:33Z What exactly is the problem? Those both seem like they should work (well, I don't know much VBScript, but it assuming that code's correct...). http://stackoverflow.com/questions/99688/private-vs-public-members-in-practice-how-important-is-encapsulation/99729#99729 Comment by Asmor on Private vs. Public members in practice (how important is encapsulation?) Asmor 2008-09-19T05:02:47Z 2008-09-19T05:02:47Z I just wanted to say that I found your last point (whether methods or data drive the structure) particularly insightful. Thanks!