User Leahn Novash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T12:26:32Z http://stackoverflow.com/feeds/user/5954 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/900438/advantages-and-disadvantages-of-sqlite-net-and-sql-server-compact 2 Advantages and Disadvantages of SQLite.NET and SQL Server Compact Leahn Novash 2009-05-22T23:40:39Z 2009-09-23T14:50:15Z <p>I have used SQLite.NET many times. It always worked fine but I have a friend that is really pestering me that I should use instead SQL Server Compact so I stayed fully in Microsoft environment.</p> <p>Now, I never worked with Compact, and he tells me it works fine for him, but seeing that .MDF extension gives me the creeps. No kidding. Last thing I want is my application relying on an Access database.</p> <p>Since I have never really worked with it, I am asking if someone here knows it to vouche for it, and if someone can tell me the main differences between them, mostly speed, file size, reliability, and features. I know it is a lot to ask but I'd appreciate if someone could help me.</p> http://stackoverflow.com/questions/1415260/coding-for-cellphones 2 Coding for cellphones Leahn Novash 2009-09-12T14:28:15Z 2009-09-15T18:47:19Z <p>I have a old LG MG280 cellphone that I'd like to code some simple things for. It has Java support, but I know that it is not simply making a Java ME application. It has to follow some specific specs otherwise the app will not run. Does anyone know what those specs are?</p> http://stackoverflow.com/questions/1415388/c-class-dependencies/1415395#1415395 -4 Answer by Leahn Novash for C++ class dependencies Leahn Novash 2009-09-12T15:38:32Z 2009-09-12T15:38:32Z <p>This is usually a design problem. I suggest you to pick the smaller class (in your case I'd suggest the block class) and code some events on it that the board class would sign. Then instead of calling the board class method, shoot the event and let the board class call it itself.</p> http://stackoverflow.com/questions/1311924/is-there-something-like-the-filesystemwatcher-for-sql-server-tables/1311939#1311939 1 Answer by Leahn Novash for Is there something like the FileSystemWatcher for Sql Server Tables? Leahn Novash 2009-08-21T13:26:35Z 2009-08-21T13:26:35Z <p>Yes, there is.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms171157%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms171157%28SQL.90%29.aspx</a></p> http://stackoverflow.com/questions/1295751/how-can-i-achieve-a-modulus-operation-with-system-timespan-values-without-loopin/1295811#1295811 1 Answer by Leahn Novash for How can I achieve a modulus operation with System.TimeSpan values, without looping? Leahn Novash 2009-08-18T18:55:55Z 2009-08-18T18:55:55Z <p>The best I can think of is to use the TotalSeconds Property and modulo it. However, they are Double, allow for fractional values and therefore, may not reach the exact values you are seeking for. You could always get the whole portions and modulo them but since you are worried about speed, I fear this may be too slow for an operation that must run hundreds of times a second.</p> http://stackoverflow.com/questions/1295554/extending-string-with-extension-methods-c-3-0/1295604#1295604 3 Answer by Leahn Novash for Extending string with Extension Methods (C# 3.0)? Leahn Novash 2009-08-18T18:14:03Z 2009-08-18T18:14:03Z <p>Dude, do you have any problems with Int32.Parse() ?</p> http://stackoverflow.com/questions/1262104/i-need-the-sum-of-two-fields-that-are-in-different-datatables/1262135#1262135 0 Answer by Leahn Novash for I need the sum of two fields that are in different DataTables Leahn Novash 2009-08-11T18:26:22Z 2009-08-11T18:26:22Z <p>What is the return type of your Compute function? Object? Or a defined type?</p> <p>If defined, you CAN overload the '-' operator, you know? Otherwise, what is stopping you from creating a method that take those two structures and return the integer result you need? Why must it be with '-' ?</p> http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1261634#1261634 2 Answer by Leahn Novash for Is there a generally accepted idiom for indicating C++ code can throw exceptions? Leahn Novash 2009-08-11T16:53:39Z 2009-08-11T16:53:39Z <p>I use both 1 and 2.</p> <p>About 1: You cannot avoid or prevent user error. You can beat the developer that did not write the doxygen properly to a pulp, if you know him. But you cannot avoid or prevent user error, so drop the paranoia. If the user err'ed, he did it, not you.</p> <p>About 2: C# has built-in a way to catch unhandled exceptions. So it is not a 'bad thing', though I agree it smells. Sometimes, it is just best to crash than to run inconsistently, but I made a practice to log any unhandled exceptions and THEN crash. That allows people to send me the log so I can check the stack trace and track down the problem. This way, after each correction, less and less crashes happen.</p> http://stackoverflow.com/questions/1261494/switch-input-language-on-remote-application/1261521#1261521 1 Answer by Leahn Novash for Switch input language on remote application Leahn Novash 2009-08-11T16:34:01Z 2009-08-11T16:34:01Z <p>I think it's been asked before.</p> <p><a href="http://stackoverflow.com/questions/819483/is-there-a-winxp-winxp-embedded-api-to-change-locale-specifically-ime">http://stackoverflow.com/questions/819483/is-there-a-winxp-winxp-embedded-api-to-change-locale-specifically-ime</a></p> <p>Though it is Windows Embedded, the API is probably the same or similar.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms724947" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms724947</a>(VS.85).aspx</p> http://stackoverflow.com/questions/1261425/c-threading-mechanism/1261483#1261483 0 Answer by Leahn Novash for C# Threading Mechanism Leahn Novash 2009-08-11T16:25:46Z 2009-08-11T16:25:46Z <p>I am not sure I understood your question, but AutoResetEvent.WaitAll seems to solve your problem, if I got it right. It allows you to set more than one handler and it will only be released when all are set.</p> <p><a href="http://msdn.microsoft.com/en-us/library/z6w25xa6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/z6w25xa6.aspx</a></p> http://stackoverflow.com/questions/1261419/sql-error-the-multi-part-identifier-tablename-columnname-could-not-be-bound/1261444#1261444 0 Answer by Leahn Novash for SQL Error: The multi-part identifier "tableName.ColumnName" could not be bound. Leahn Novash 2009-08-11T16:18:26Z 2009-08-11T16:18:26Z <p>Try</p> <pre><code>SELECT p.Name, j.Job, s.Salary FROM SalaryTable s LEFT JOIN PeopleTable p on s.PeopleID = p.PeopleID LEFT JOIN JobTable j ON s.JobID = j.JobID </code></pre> http://stackoverflow.com/questions/1260654/c-programmer-challenge-for-interviews-programming-to-an-interface-patterns/1260759#1260759 3 Answer by Leahn Novash for C# - Programmer Challenge for Interviews - Programming to an Interface & Patterns Leahn Novash 2009-08-11T14:32:42Z 2009-08-11T14:32:42Z <p>I don't see why there is a growing need for the use of Design Patterns. They help, but they are not a panacea. "Given the opportunity, if they will" can be construed as both a good or a bad thing on some circunstances. Besides, if they are juniors, they probably do NOT have enough experience to look at a problem and recognize that a pattern may be applicable there.</p> <p>If you want a challenge for your junior and mid, then pick real challenges. There are plenty at the Valladolid website, and they have an online judge. That was what was done to me when I was at the College.</p> <p><a href="http://acm.uva.es/problemset/" rel="nofollow">http://acm.uva.es/problemset/</a></p> http://stackoverflow.com/questions/1260626/unit-testing-a-communications-protocol/1260666#1260666 1 Answer by Leahn Novash for Unit testing a communications protocol Leahn Novash 2009-08-11T14:18:31Z 2009-08-11T14:18:31Z <p>You can make a mock class that would work as a simulator. Just make it so your write function processes the information you sent and saves the result on some kind of buffer, which could simply be a normal string. Then make a read function that reads the string, erases it and then returns it to you.</p> http://stackoverflow.com/questions/1260227/int-arr0-int-value-arrarr0-value-1/1260293#1260293 -2 Answer by Leahn Novash for int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Leahn Novash 2009-08-11T13:17:46Z 2009-08-11T13:17:46Z <p>The cause might be that some compilers optimize i++ to be ++i. Most of the time, the end result is the same, but it seems to me to be one of those rare occasions when the compiler is wrong.</p> <p>I have no access to Visual Studio right now to confirm this, but try disabling code optimization and see if the results will stay the same.</p> http://stackoverflow.com/questions/1256717/how-to-do-internet-card-game-using-net/1256831#1256831 3 Answer by Leahn Novash for How to do internet card game using .net Leahn Novash 2009-08-10T19:45:32Z 2009-08-10T19:45:32Z <p>Just because it is internet based, it doesn't mean it has to be Web based. You could just well make a desktop app with WCF since you are on .NET platform.</p> <p>If you WANT it to Web based, and you don't want it to run on a server (but instead simply use the server as a place to find another players), you can use a double blind strategy and use each player to verify the actions of the other player. What to do once you find some inconsistence is your call, though. I would simply rollback the changes and force the player to replay the turn. Mind you, this kind of verification is not the best possible approach.</p> <p>The ideal approach is that you NEVER trust any input from any user. ALWAYS check. Double check if needed. Think of users as rabid dogs that you must feed but that will try to bite your hands, feet and more important parts whenever they have a chance. So protect yourself.</p> http://stackoverflow.com/questions/1063719/my-vs2008-addin-for-textformatting-is-awfully-slow/1080636#1080636 0 Answer by Leahn Novash for my vs2008 addin for textformatting is awfully slow Leahn Novash 2009-07-03T19:52:48Z 2009-07-03T19:52:48Z <p>I haven't worked with addins but since you only asked for a 'hint', here is mine.</p> <p>Try disabling screen update before you make the assignment.</p> <p>Also the help file says,</p> <p>"When the Text property is set, the value of Text is inserted in front of the selected text, and then collapsed, similar to what happens when text is pasted into a document. Note that this property behaves just as when typing when the editor is in insert (that is, non-overtype) mode. Any text after the 128th character is truncated."</p> <p>That seems to imply that the variable is not ovewritten as expected, but appended instead and then the previous text is removed. Try to empty the variable first and see if it changes anything.</p> <p>Also, consider using the PasteMethod to substitute the text instead of assigning.</p> http://stackoverflow.com/questions/1080034/creating-a-function-dynamically-at-run-time 1 Creating a function dynamically at run-time Leahn Novash 2009-07-03T16:23:29Z 2009-07-03T19:30:28Z <p>It probably isn't even possible to do this, but I will ask anyway. Is it possible to create a function that receives a string and then uses it as a right side argument for the goes to operator (=>) used in lambda?</p> <p>Actually, what I want to do is to be able to redefine an specific method of a specific class during runtime. I want to be write down a function with the program running and attaching it to a delegate. Is it possible?</p> http://stackoverflow.com/questions/1080532/prevent-default-behavior-in-text-input-while-pressing-arrow-up/1080549#1080549 0 Answer by Leahn Novash for Prevent default behavior in text input while pressing arrow up Leahn Novash 2009-07-03T19:24:20Z 2009-07-03T19:24:20Z <p>Probably not. You should instead seek for a solution to move the cursor back to the end of the field where it was. The effect would be the same for the user since it is too quick to be perceived by a human.</p> <p>I googled some and found this piece of code. I can't test it now and it is said to not to work on IE 6.</p> <p>textBox.setSelectionRange(textBox.value.length, textBox.value.length);</p> http://stackoverflow.com/questions/1080458/pattern-for-objects-initialization-at-startup/1080522#1080522 1 Answer by Leahn Novash for Pattern for objects initialization at startup Leahn Novash 2009-07-03T19:13:53Z 2009-07-03T19:13:53Z <p>Use the Controller Design Pattern.</p> <p>That is, create a SINGLE class that will be instanced on program initialization, called Controller. On the constructor of that class, create all other objects. Whatever object that needs any other objects should receive said object as a parameter on its constructor. No one, no absolutely any other object should create anything on their constructor. Pass everything as parameters on their constructors. Also, on the Controller class destructor/dispose call all objects destructor/dispose method in reverse order. This won't reduce your code, but it will make if far better to understand and debug later on.</p> http://stackoverflow.com/questions/1080462/using-a-code-for-an-exception-useful/1080494#1080494 5 Answer by Leahn Novash for Using a code for an exception. Useful? Leahn Novash 2009-07-03T19:05:08Z 2009-07-03T19:05:08Z <p>The error code was a feature used when there was no object oriented language. The only thing that could aid you to understand what went wrong was the error code. In an object oriented language, the object IS your error code. Unless, in specific cases, more than one thing can throw the exact same error AND they are treated in different ways, drop it. Also, you would provide much better explanation to whomever is debugging your code if you left a message instead of a meaningless error code, so if you feel like the exception needs more information, fill the Error Message field instead.</p> http://stackoverflow.com/questions/745144/seeking-class-that-allows-a-custom-sort-method/900459#900459 0 Answer by Leahn Novash for Seeking class that allows a custom sort method Leahn Novash 2009-05-22T23:50:10Z 2009-05-22T23:50:10Z <p>There is no easy way to do that. Maybe not even a hard way. Since it was meant to be used to make output, I decided to instead make multiple loops of partial output to reach the results I wanted.</p> http://stackoverflow.com/questions/745144/seeking-class-that-allows-a-custom-sort-method 1 Seeking class that allows a custom sort method Leahn Novash 2009-04-13T19:52:25Z 2009-05-22T23:50:10Z <p>I wrote a small app that allows me to compare two database schemas to check for differences in structure. It goes all the way down to column details, which is nice. When I was comparing very small databases, I had no trouble but when I start to compare databases with hundreds of tables, it is annoying to scroll up and down to find where the errors are. Originally, I was using KeyedCollection to hold the table's list, but since it doesn't allow any kind of sort, I have since changed to SortedList. SortedList does sort the indexes, which gives me the tables in alphabetical order, but this is less than what I need. What I need is a class that allows me to sort based on object properties, not only on the index values. I want to push the tables with errors to the beggining of the list for easy-of-use's sake. Anyone has an idea of which class I could use to accomplish this?</p> <p>EDIT1: The List class doesn't have an index, which is kind of vital for my class. I tried using Dictionary, which does have an index, but doesn't have a sort method. Implementing IComparer doesn't work because the constructor only accepts IComparer of the index type. And since the IComparer is another class that doesn't have access to the inner value list of my list class, I can't compare based on the object properties.</p> <p>EDIT2: I need a class that sorts the index by the object properties, not by the index values, but I am starting to believe such class does not exist.</p> http://stackoverflow.com/questions/745277/how-do-i-make-intellisense-work-for-referenced-projects-within-a-solution-in-visu/745338#745338 0 Answer by Leahn Novash for How do I make intellisense work for referenced projects within a solution in Visual Studio 2008? Leahn Novash 2009-04-13T20:44:55Z 2009-04-13T20:44:55Z <p>Your objects are probably private. Or don't have a public default contructor.</p> http://stackoverflow.com/questions/730860/how-do-i-loop-through-all-layers-of-treeview-nodes/745313#745313 1 Answer by Leahn Novash for How do I loop through all layers of Treeview nodes? Leahn Novash 2009-04-13T20:38:11Z 2009-04-13T20:38:11Z <p>Dude, this one was serious trouble. The Broadth Search was easy, but you were right. Depth Search was a pain. I hope it helps you. Shame that such nice trick will probably fall into oblivion due to the sheer ammount of questions on this site. The depth algorithm is kind of crude and assume a head node without siblings.</p> <pre><code>//depth search on TreeView TreeNode node = trv.Nodes[0]; Stack&lt;TreeNode&gt; list = new Stack&lt;TreeNode&gt;(); list.Push(node); while (list.Count &gt; 0) { while (node.Nodes.Count &gt; 0) { list.Push(node.Nodes[0]); node = node.Nodes[0]; } //Will always have a leaf here as the current node. The leaf is not pushed. //If it has a sibling, I will try to go deeper on it. if (node.NextNode != null) { node = node.NextNode; continue; } //If it does NOT have a sibling, I will pop as many parents I need until someone //has a sibling, and go on from there. while (list.Count &gt; 0 &amp;&amp; node.NextNode == null) { node = list.Pop(); } if (node.NextNode != null) node = node.NextNode; } //broadth search on TreeView Queue&lt;TreeNode&gt; list = new Queue&lt;TreeNode&gt;(); foreach(TreeNode node in trv.Nodes) { list.Enqueue(node); } foreach(TreeNode node in list) { foreach(TreeNode childNode in node.Nodes) { list.Enqueue(childNode); } } </code></pre> http://stackoverflow.com/questions/745101/simple-remote-process-object-interaction-in-c/745118#745118 3 Answer by Leahn Novash for Simple remote process object interaction in C# Leahn Novash 2009-04-13T19:44:17Z 2009-04-13T19:44:17Z <p>You should check WCF. It is far too big to explain here but this article should give you some pointers.</p> <p><a href="http://msdn.microsoft.com/pt-br/library/bb907581.aspx" rel="nofollow">http://msdn.microsoft.com/pt-br/library/bb907581.aspx</a></p> <p>WCF allows you to set up interfaces in which two objects can communicate using a protocol of your choice.</p> http://stackoverflow.com/questions/429376/c-console-application-failing-to-run 0 C# Console Application failing to run Leahn Novash 2009-01-09T19:32:08Z 2009-01-09T19:59:16Z <p>I am using Visual Studio 2008 Express and I tried creating a simple console application to test it. When I try to compile it, it compiles fine, but when I try to run it, it complains about the absence of a manifest file. As far as I know, VStudio should create the manifest file automatically, but since it is a simple console application without any dependencies, I asked VS to create the application without a manifest. It didn't change a thing. It kept asking for a manifest file saying that the application was supposed to have one. I remembered old bugs from the vshost process from previous VS Express versions so I tried disabling it. When I did, the error message changed to say that the application failed to load properly and would be closed, both with the option to create a manifest or not. I am pretty sure it is some misconfiguration on VS Express on my part, but I couldn't really find where. Anyone had any similar problems?</p> http://stackoverflow.com/questions/183652/what-do-you-do-during-software-project-down-time 2 What do you do during software project "down time"? Leahn Novash 2008-10-08T16:29:05Z 2008-10-13T02:33:11Z <p>Yesterday we finally hammered together the application the way the client (hopefully) wanted it, and today, early in the morning, the manager came and said that the software in being tested and it is ok to not to be doing anything while we wait for the bugs to be found. Now I have this weird feeling of emptiness and lack of purpose assaulting me. Does everyone experience similar things?</p> http://stackoverflow.com/questions/192686/hotkeys-override 0 Hotkeys override Leahn Novash 2008-10-10T19:11:01Z 2008-10-10T20:46:12Z <p>Difficult question. The answer is probably no, if all I found in the Intertubes is right, but it is worth a try. I need to override the CTRL+SHIFT+ESC and the CTRL+ESC combinations. It would be good to be able to override the WIN key combinations, but I have a low level hook that does such, I only wish I didn't need it. If I can manage to block the start menu and the task manager entirely by policy, the overrides will no longer be needed but I couldn't find the correct policy to do so.</p> http://stackoverflow.com/questions/187198/tree-algorithm 1 Tree Algorithm Leahn Novash 2008-10-09T13:16:53Z 2008-10-09T14:31:40Z <p>I was thinking earlier today about an idea for a small game and stumbled upon how to implement it. The idea is that the player can make a series of moves that cause a little effect, but if done in a specific sequence would cause a greater effect. So far so good, this I know how to do. Obviously, I had to make it be more complicated (because we love to make it more complicated), so I thought that there could be more than one possible path for the sequence that would both cause greater effects, albeit different ones. Also, part of some sequences could be the beggining of other sequences, or even whole sequences could be contained by other bigger sequences. Now I don't know for sure the best way to implement this. I had some ideas, though.</p> <p>1) I could implement a circular n-linked list. But since the list of moves never end, I fear it might cause a stack overflow ™. The idea is that every node would have n children and upon receiving a command, it might lead you to one of his children or, if no children was available to such command, lead you back to the beggining. Upon arrival on any children, a couple of functions would be executed causing the small and big effect. This might, though, lead to a lot of duplicated nodes on the tree to cope up with all the possible sequences ending on that specific move with different effects, which might be a pain to maintain but I am not sure. I never tried something this complex on code, only theoretically. Does this algorithm exist and have a name? Is it a good idea?</p> <p>2) I could implement a state machine. Then instead of wandering around a linked list, I'd have some giant nested switch that would call functions and update the machine state accordingly. Seems simpler to implement, but... well... doesn't seem fun... nor ellegant. Giant switchs always seem ugly to me, but would this work better? </p> <p>3) Suggestions? I am good, but I am far inexperienced. The good thing of the coding field is that no matter how weird your problem is, someone solved it in the past, but you must know where to look. Someone might have a better idea than those I had, and I really wanted to hear suggestions.</p> http://stackoverflow.com/questions/183685/c-set-collection/183691#183691 5 Answer by Leahn Novash for C# Set collection? Leahn Novash 2008-10-08T16:35:05Z 2008-10-08T16:35:05Z <p>Try HashSet</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb495294.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb495294.aspx</a></p> http://stackoverflow.com/questions/1415260/coding-for-cellphones Comment by Leahn Novash on Coding for cellphones Leahn Novash 2009-09-12T14:49:10Z 2009-09-12T14:49:10Z I meant J2ME. I blame the lack of coffee. And my dislike of Java in general. http://stackoverflow.com/questions/1311924/is-there-something-like-the-filesystemwatcher-for-sql-server-tables/1311939#1311939 Comment by Leahn Novash on Is there something like the FileSystemWatcher for Sql Server Tables? Leahn Novash 2009-08-21T14:18:27Z 2009-08-21T14:18:27Z I didn't know it was dropped. It is not like I have touched it in a couple of years. However, the OP explicitly states that he is using SQL Server 2005, so it would not be a problem. That said, you are right about marc_s idea being a better one. It seems so much better to not to share the responsability with an external service. http://stackoverflow.com/questions/1295114/simple-string-runtime-error-in-c/1295125#1295125 Comment by Leahn Novash on simple string runtime error in C? Leahn Novash 2009-08-18T17:25:21Z 2009-08-18T17:25:21Z I need to add that C doesn't have namespaces. Totally irrelevant to the error in question, but a ANSI C compiler wouldn't even compile that code. http://stackoverflow.com/questions/1267875/how-do-i-set-a-background-sound-on-a-web-page Comment by Leahn Novash on How do I set a background sound on a Web page? Leahn Novash 2009-08-12T18:31:50Z 2009-08-12T18:31:50Z This question should belong to some web technology tag, lest it be forgotten totaly and never answered. While I agree that it is a bad idea, do you still want to know the answer? In which technology are you coding your webpage on? ASP.Net? http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1261634#1261634 Comment by Leahn Novash on Is there a generally accepted idiom for indicating C++ code can throw exceptions? Leahn Novash 2009-08-12T17:24:36Z 2009-08-12T17:24:36Z @Jalf: I am accepting suggestions. If they no longer dream of doing it that way, how do they do it? I mean, I find it to be a pretty good idea to catch all unhandled exceptions and log them before crashing the program. Trying to recover IS a bad idea, but logging for later debugging isn't. At least I think so. But you seem to imply that it is, so how do you deal with unhandled exceptions? http://stackoverflow.com/questions/1262104/i-need-the-sum-of-two-fields-that-are-in-different-datatables/1262135#1262135 Comment by Leahn Novash on I need the sum of two fields that are in different DataTables Leahn Novash 2009-08-12T17:20:08Z 2009-08-12T17:20:08Z Then I suggest you to create a function that will take two objects, check if both are integers, and return the difference, or throw an exception otherwise. http://stackoverflow.com/questions/1261982/ordering-the-elements-of-a-collection-based-on-order-of-elements-in-another-colle/1262070#1262070 Comment by Leahn Novash on Ordering the elements of a collection based on order of elements in another collection Leahn Novash 2009-08-11T18:16:22Z 2009-08-11T18:16:22Z You can slightly improve it by starting the search at the nth position instead of at 0th. http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1261634#1261634 Comment by Leahn Novash on Is there a generally accepted idiom for indicating C++ code can throw exceptions? Leahn Novash 2009-08-11T17:47:16Z 2009-08-11T17:47:16Z @Neil: No, I really meant C#, although the question is about C++. I never really worked with C++, but I exemplified C# because it is a newer language which reflects the newest concepts so it may mean something that it is acceptable to do it in a newer language. http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1261608#1261608 Comment by Leahn Novash on Is there a generally accepted idiom for indicating C++ code can throw exceptions? Leahn Novash 2009-08-11T16:59:22Z 2009-08-11T16:59:22Z Though I do follow RAII, you can never create a code that is exception proof. There are always risks of bugs in third party libraries, OS API, or even changes in project details that are not accounted for. http://stackoverflow.com/questions/1260654/c-programmer-challenge-for-interviews-programming-to-an-interface-patterns/1260759#1260759 Comment by Leahn Novash on C# - Programmer Challenge for Interviews - Programming to an Interface & Patterns Leahn Novash 2009-08-11T16:13:14Z 2009-08-11T16:13:14Z @Tyndall: I currently work at testing on my new job. Once my experience period is over, I may be moved to code in Java. I recently left a jobwhere I coded in C# 3.5. I wrote an application to control Automatic Ticketing on Highways. I don't know how to explain better in English (I'm Brazilian), so yes, I write Business Applications. The ACM problems are used for the ACM Olympics, and I was a member of the team of my College during the 3 years that the rules allow you to, but back them, I coded in C. http://stackoverflow.com/questions/1260669/is-there-a-difference-between-the-following-ways-to-register-to-event/1260686#1260686 Comment by Leahn Novash on Is there a difference between the following ways to register to event Leahn Novash 2009-08-11T14:26:04Z 2009-08-11T14:26:04Z The latter is an old sintax that was required on 1.1, if my memory serves. Or maybe it was 2.0. But now the compiler does the trick by itself. http://stackoverflow.com/questions/1260227/int-arr0-int-value-arrarr0-value-1/1260279#1260279 Comment by Leahn Novash on int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Leahn Novash 2009-08-11T13:59:33Z 2009-08-11T13:59:33Z @Jon Skeet: I blame Microsoft. :) However, as I said in another post, I stand corrected. I misunderstood what I read. The correct resolution orders is: i = 1, find the address of data[1], add 1 to i, find the address of data[2], add 5 to value of data[2], assign result to data[1] http://stackoverflow.com/questions/1260227/int-arr0-int-value-arrarr0-value-1/1260288#1260288 Comment by Leahn Novash on int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Leahn Novash 2009-08-11T13:46:54Z 2009-08-11T13:46:54Z I've read the specifications again more carefully. I stand corrected. http://stackoverflow.com/questions/1260227/int-arr0-int-value-arrarr0-value-1/1260279#1260279 Comment by Leahn Novash on int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Leahn Novash 2009-08-11T13:43:37Z 2009-08-11T13:43:37Z @jpbochi It is considered right associative when it is stacked. http://stackoverflow.com/questions/1260227/int-arr0-int-value-arrarr0-value-1/1260279#1260279 Comment by Leahn Novash on int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Leahn Novash 2009-08-11T13:38:59Z 2009-08-11T13:38:59Z Section 7.16.1 deals with boolean types. Didn't you mean 7.13.1, that deals with assignment? Also, section 7.5.9 that deals with post ++ specifies that the value is only changed after the set call occurs.