User asterite - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:03:05Z http://stackoverflow.com/feeds/user/20459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/254535/stunning-graphic-effects-with-javascript/254611#254611 21 Answer by asterite for Stunning graphic effects with javascript asterite 2008-10-31T19:17:19Z 2008-10-31T19:17:19Z <p>Remember lemmings? :-)</p> <p><a href="http://www.elizium.nu/scripts/lemmings/" rel="nofollow">http://www.elizium.nu/scripts/lemmings/</a></p> http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240233#240233 0 Answer by asterite for Why would I want to use Interfaces? asterite 2008-10-27T15:10:27Z 2008-10-27T15:10:27Z <p>In an article in my blog I briefly describe three purposes interfaces have.</p> <blockquote> <p>Interfaces may have different purposes:</p> <ul> <li>Provide different implementations for the same goal. The typical example is a list, which may have different implementations for different performance use cases (LinkedList, ArrayList, etc.).</li> <li>Allow criteria modification. For example, a sort function may accept a Comparable interface in order to provide any kind of sort criteria, based on the same algorithm.</li> <li>Hide implementation details. This also makes it easier for a user to read the comments, since in the body of the interface there are only methods, fields and comments, no long chunks of code to skip.</li> </ul> </blockquote> <p>Here's the article's full text: <a href="http://weblogs.manas.com.ar/ary/2007/11/" rel="nofollow">http://weblogs.manas.com.ar/ary/2007/11/</a></p> http://stackoverflow.com/questions/240156/is-there-a-notification-mechanism-for-when-a-dependency-property-has-changed/240213#240213 1 Answer by asterite for Is there a notification mechanism for when a dependency property has changed? asterite 2008-10-27T15:05:47Z 2008-10-27T15:05:47Z <p>In WPF you have <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.dependencypropertydescriptor.addvaluechanged.aspx" rel="nofollow">DependencyPropertyDescriptor.AddValueChanged</a>, but unfortunately in Silverlight there's no such thing. So the answer is no.</p> <p>Maybe if you explain what are you trying to do you can workaround the situation, or use bindings.</p> http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images/233779#233779 1 Answer by asterite for Where can one find free software icons / images? asterite 2008-10-24T14:31:54Z 2008-10-24T14:31:54Z <p>Nuvola is pretty good: <a href="http://www.icon-king.com/projects/nuvola/" rel="nofollow">http://www.icon-king.com/projects/nuvola/</a></p> <p>Some samples: <a href="http://en.wikipedia.org/wiki/Nuvola" rel="nofollow">http://en.wikipedia.org/wiki/Nuvola</a></p> http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/174556#174556 8 Answer by asterite for What programming religious argument bothers you the most? asterite 2008-10-06T14:37:44Z 2008-10-06T14:37:44Z <p>Saying that a language is better/worse because it uses semicolons/indentation. (i.e. Python vs. C-like languages).</p> http://stackoverflow.com/questions/174502/string-to-int-in-java-likely-bad-data-need-to-avoid-exceptions/174526#174526 8 Answer by asterite for String to Int in java - Likely bad data, need to avoid exceptions. asterite 2008-10-06T14:32:22Z 2008-10-06T14:32:22Z <p>What's the problem with your approach? I don't think doing it that way will hurt your application's performance at all. That's the correct way to do it. <strong>Don't optimize prematurely</strong>.</p> http://stackoverflow.com/questions/169662/is-there-a-way-to-implement-algebraic-types-in-java/169675#169675 2 Answer by asterite for Is there a way to implement algebraic types in Java? asterite 2008-10-04T03:21:19Z 2008-10-04T03:21:19Z <p>You probably want an enum (Java >= 1.5). An enum type can have a set of fixed values. And it has all the goodies of a class: they can have fields and properties, and can make them implement an interface. An enum cannot be extended.</p> <p>Example:</p> <pre><code>enum A { B, C, D; public int someField; public void someMethod() { } } </code></pre> http://stackoverflow.com/questions/167007/fast-compiler-error-messages-in-eclipse/167030#167030 2 Answer by asterite for Fast compiler error messages in Eclipse asterite 2008-10-03T14:02:04Z 2008-10-03T14:02:04Z <p>Well, you can press F2 to display the popup that normally shows javadoc. If there's an error, it will display the error message with available quick fixes.</p> <p>So you can do Ctrl+., F2 repeatedly to achieve what you want.</p> http://stackoverflow.com/questions/159459/experiences-and-tips-for-programming-with-and-for-amazons-cloud-servers-apps-too/160535#160535 1 Answer by asterite for Experiences and tips for programming with and for Amazon's cloud servers/apps/tools? asterite 2008-10-02T01:52:05Z 2008-10-02T01:52:05Z <p>As for <a href="http://aws.amazon.com/simpledb/" rel="nofollow">SimpleDB</a>, it has a very limited query language and it is very restrictive. If you planning on having lot of complex queries, you must first sit down and think how to organize your data to make those queries possible. One thing missing, but that will probably will be added, is the ability to count the results of a given query, much like SQL's COUNT.</p> <p>Performance is ok, but I consider the latency maybe a little high.</p> http://stackoverflow.com/questions/158935/why-i-cant-parse-a-simpledateformat-with-pattern-mmmmm-dd-in-java 3 Why I can't parse a SimpleDateFormat with pattern "MMMMM dd" in Java? asterite 2008-10-01T18:09:22Z 2008-10-01T18:15:56Z <p>I need to parse a string like "February 12, 1981" as a Date. I use <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html" rel="nofollow">SimpleDateFormat</a>. But if I do:</p> <pre><code>new SimpleDateFormat("MMMMM dd, yyyy").parse("February 12, 1981") </code></pre> <p>I get java.text.ParseException.</p> <p>I tried to reduce it to see where the problem is. First:</p> <pre><code>new SimpleDateFormat("MMMMM").parse("February") </code></pre> <p>works. Then:</p> <pre><code>new SimpleDateFormat("MMMMM dd").parse("February 12") </code></pre> <p>doesn't work anymore. Anyone know why? I also tried <code>new SimpleDateFormat("MMMMM' 'dd")</code>.</p> <p>I'm using JRE 1.6.0_06.</p> http://stackoverflow.com/questions/158778/implementation-patterns-a-function-returns-a-date-but-it-is-reasonable-that-a-d/158809#158809 7 Answer by asterite for Implementation Patterns: a function returns a Date, but it is reasonable that a date won't be found, return null or try to apply the NULL object pattern? asterite 2008-10-01T17:40:50Z 2008-10-01T17:40:50Z <p>The null object pattern is not for what you are trying to do. That pattern is about creating an object with no functionality in it's implementation that you can pass to a given function that requires an object not being null. An example is <a href="http://download.eclipse.org/eclipse/downloads/documentation/2.0/html/plugins/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/runtime/NullProgressMonitor.html" rel="nofollow">NullProgressMonitor</a> in Eclipse, which is an empty implementation of <a href="http://download.eclipse.org/eclipse/downloads/documentation/2.0/html/plugins/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/runtime/IProgressMonitor.html" rel="nofollow">IProgressMonitor</a>.</p> <p>If you return a "null" date, like 1970, your clients will still need to check if it's "null" by seeing if it's 1970. And if they don't, misbehaviour will happen. However, if you return null, their code will fail fast, and they'll know they should check for null. Also, 1970 <em>could</em> be a valid date.</p> <p>You should document that your method may return null, and that's it.</p> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/158183#158183 9 Answer by asterite for Do you have a hobby development project? asterite 2008-10-01T15:22:39Z 2008-10-01T15:22:39Z <p>I'm the main developer of <a href="http://dsource.org/projects/descent" rel="nofollow">Descent</a> and recently started a game called <a href="http://dsource.org/projects/fruitfactory" rel="nofollow">FruitFactory</a>, but it's in its early stages.</p> <p>Personally, the first project helped me a lot in understading and writing <a href="http://en.wikipedia.org/wiki/Lexical_analysis" rel="nofollow">lexers</a> and <a href="http://en.wikipedia.org/wiki/Parser" rel="nofollow">parsers</a>, <a href="http://en.wikipedia.org/wiki/Abstract_syntax_tree" rel="nofollow">abstract syntax trees</a>, the <a href="http://en.wikipedia.org/wiki/Visitor_Pattern" rel="nofollow">visitor pattern</a>, the <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> infrastructure and working in an open source project. I also met a lof of interesting people. Finally, some guys in Spain contacted me because they needed a Java developer and one of them used my tool, so I also got temporary job thanks to it.</p> <p>I don't know exactly how many people use it, but I receive feedback from time to time, and people seem to be happy about it.</p> <p>So I would definitely recommend anyone to start a project on their own. It's very valuable.</p> http://stackoverflow.com/questions/157192/php-development-lot-of-newbie-questions/157209#157209 2 Answer by asterite for PHP Development - lot of (newbie) questions asterite 2008-10-01T11:39:41Z 2008-10-01T11:39:41Z <p>A good IDE for PHP is <a href="http://www.eclipse.org/pdt/" rel="nofollow">PDT</a>, an Eclipse plugin. </p> http://stackoverflow.com/questions/153975/creating-an-instance-of-a-nested-java-class-in-coldfusion/154192#154192 7 Answer by asterite for Creating an instance of a nested Java class in Coldfusion. asterite 2008-09-30T17:50:16Z 2008-09-30T17:50:16Z <p>Try with:</p> <pre><code>&lt;cfset PointClass = createObject("java", "java.awt.geom.Point2D$Double")&gt; </code></pre> <p>For nested classes, use <code>$</code></p> http://stackoverflow.com/questions/153724/how-to-round-a-number-to-n-decimal-places-in-java/153753#153753 3 Answer by asterite for How to round a number to n decimal places in Java asterite 2008-09-30T16:07:24Z 2008-09-30T16:07:24Z <p>Assuming <code>value</code> is a <code>double</code>, you can do:</p> <pre><code>(double)Math.round(value * 100000) / 100000 </code></pre> <p>That's for 5 digits precision. The number of zeros indicate the number of decimals.</p> http://stackoverflow.com/questions/153507/calculate-the-position-of-an-accelerating-body-after-a-certain-time/153526#153526 1 Answer by asterite for Calculate the position of an accelerating body after a certain time asterite 2008-09-30T15:21:16Z 2008-09-30T15:21:16Z <p>You can google it. I've found this: <a href="http://www.ugrad.math.ubc.ca/coursedoc/math101/notes/applications/velocity.html" rel="nofollow">http://www.ugrad.math.ubc.ca/coursedoc/math101/notes/applications/velocity.html</a></p> <p>But if you don't want to read, it's:</p> <blockquote> <p>p(t) = x(0) + v(0)<em>t + (1/2)</em>a*t^2</p> </blockquote> <p>where</p> <ul> <li>p(t) = position at time t</li> <li>x(0) = the position at time zero</li> <li>v(0) = velocity at time zero (if you don't have a velocity, you can ignore this term)</li> <li>a = the acceleration</li> <li>t = your current itme</li> </ul> http://stackoverflow.com/questions/153048/how-to-mock-with-static-methods/153195#153195 0 Answer by asterite for How to mock with static methods? asterite 2008-09-30T14:13:06Z 2008-09-30T14:13:06Z <p>A simple solution is to allow to change the static class's implementation via a setter:</p> <pre><code>class ClassWithStatics { private IClassWithStaticsImpl implementation = new DefaultClassWithStaticsImpl(); // Should only be invoked for testing purposes public static void overrideImplementation(IClassWithStaticsImpl implementation) { ClassWithStatics.implementation = implementation; } public static Foo someMethod() { return implementation.someMethod(); } } </code></pre> <p>So in the setup of your tests, you call <code>overrideImplementation</code> with some mocked interface. The benefit is that you don't need to change clients of your static class. The downside is that you probably will have a little duplicated code, because you'll have to repeat the methods of the static class and it's implementation. But some times the static methods can use a ligther interface which provide base funcionality.</p> http://stackoverflow.com/questions/151778/alternatives-to-static-methods-in-java/151791#151791 0 Answer by asterite for Alternatives to static methods in Java asterite 2008-09-30T04:48:08Z 2008-09-30T04:48:08Z <p>If you are passing a Class to findAll, why can't you pass a class to getSelectSQL in ModelBase?</p> http://stackoverflow.com/questions/149898/preconditions-and-exceptions/149927#149927 1 Answer by asterite for preconditions and exceptions asterite 2008-09-29T18:05:05Z 2008-09-29T18:05:05Z <p>A failed precondition should throw an AssertException, or something similar. Before invoking a method, it's precondition must hold. If the caller doesn't do this check, it's a bug in the program, or an incorrect use of the method (API).</p> http://stackoverflow.com/questions/148298/how-to-check-for-equals-0-i-or-i-0/148311#148311 10 Answer by asterite for How to check for equals? (0 == i) or (i == 0) asterite 2008-09-29T11:25:10Z 2008-09-29T11:25:10Z <p>If you have a list of ifs that can't be represented well by a switch (because of a language limitation, maybe), then I'd rather see:</p> <pre><code>if (InterstingValue1 == foo) { } else if (InterstingValue2 == foo) { } else if (InterstingValue3 == foo) { } </code></pre> <p>because it allows you to quickly see which are the important values you need to check.</p> <p>In particular, in Java I find it useful to do:</p> <pre><code>if ("SomeValue".equals(someString)) { } </code></pre> <p>because someString may be null, and in this way you'll never get a NullPointerException. The same applies if you are comparing constants that you know will never be null against objects that may be null.</p> http://stackoverflow.com/questions/141251/windows-url-links-that-point-to-same-address-when-copied-over-or-deleted/144215#144215 3 Answer by asterite for Windows .url links that point to same address when copied over or deleted asterite 2008-09-27T18:44:11Z 2008-09-27T18:44:11Z <p>Take a look at here: <a href="http://www.cyanwerks.com/file-format-url.html" rel="nofollow">http://www.cyanwerks.com/file-format-url.html</a></p> <p>It explains there's a Modified field you can add to the .url file. It also explains how to interpret it.</p> http://stackoverflow.com/questions/137221/where-can-i-find-an-autocomplete-textbox-code-sample-for-silverlight/140167#140167 2 Answer by asterite for Where can I find an AutoComplete TextBox code sample for Silverlight? asterite 2008-09-26T15:19:04Z 2008-09-26T15:19:04Z <p>You may want to take a look at my blog: <a href="http://weblogs.manas.com.ar/ary/2008/09/26/autocomplete-in-silverlight/" rel="nofollow">http://weblogs.manas.com.ar/ary/2008/09/26/autocomplete-in-silverlight/</a></p> <p>You simply write in your XAML:</p> <pre><code>manas:Autocomplete.Suggest="DoSuggest" </code></pre> <p>and then in the class file, you need to implement that method, which report suggestions to a delegate. The options can be hardcoded, requested to a web service, or whaterver.</p> http://stackoverflow.com/questions/133436/how-can-i-get-access-to-the-httpservletrequest-object-when-using-java-web-service/133539#133539 0 Answer by asterite for How can I get access to the HttpServletRequest object when using Java Web Services asterite 2008-09-25T14:06:15Z 2008-09-25T14:06:15Z <p>Maybe the javax.ws.rs.core.Context annotation is for what you are looking for, instead of Resource?</p> http://stackoverflow.com/questions/131241/why-use-iterators-instead-of-array-indices/131267#131267 19 Answer by asterite for Why use iterators instead of array indices? asterite 2008-09-25T03:08:40Z 2008-09-25T11:57:56Z <p>Imagine some_vector is implemented with a linked-list. Then requesting an item in the i-th place requires i operations to be done to traverse the list of nodes. Now, if you use iterator, generally speaking, it will make its best effort to be as efficient as possible (in the case of a linked list, it will maintain a pointer to the current node and advance it in each iteration, requiring just a single operation).</p> <p>So it provides two things:</p> <ul> <li>Abstraction of use: you just want to iterate some elements, you don't care about how to do it</li> <li>Performance</li> </ul> http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented/131163#131163 1 Answer by asterite for Should all public methods of an API be documented? asterite 2008-09-25T02:25:53Z 2008-09-25T02:25:53Z <p>a)</p> <p>If it's a method, there are always some little details that matter, for example the ones you provided regarding flushing and closing the streams. For example a method "String getFileExtension(String filename)" seems to not need documentation, but what if "filename" doesn't have an extension? That answer should be documented.</p> <p>If it's a type, it should mention other types with which it collaborates, and how it does that. This helps a user to navigatethe documentation in your desired way and not just browse the documentation without any direction.</p> http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130881#130881 0 Answer by asterite for Which chemical stimulation do you require while coding? asterite 2008-09-25T00:57:41Z 2008-09-25T00:57:41Z <p>I can code with just water, but most of the time I have <a href="http://en.wikipedia.org/wiki/Yerba_mate" rel="nofollow">mate</a>.</p> http://stackoverflow.com/questions/129599/best-rule-for-maximum-function-size/129717#129717 5 Answer by asterite for Best rule for maximum function size? asterite 2008-09-24T20:24:33Z 2008-09-25T00:53:30Z <p>15 lines of code is good, but it can get larger or shorter depending on what exactly you are doing. The most important thing is to keep all the sentences of a function at the same abstraction level. For example, this would be incorrect:</p> <pre><code>Foo result = doSomething(); String another = extractString(result); int index = another.lastIndexOf('.'); if (index != -1) { another = index.substring(0, index); } return another; </code></pre> <p>Note that the first two lines invoke methods that do something at a higher level than the four last lines of code. This is better:</p> <pre><code>Foo result = doSomething(); String another = extractString(result); another = removeExtension(another); return another; </code></pre> <p>EDIT: why this is the most important thing for me? If you try to keep everything in a method in the same abstraction level, you'll end up with small functions without thinking about it. If you start having more than, say, 30 lines of code, then you are probably doing to much stuff (and part of that stuff might be just little details). By abstracting those details in other methods, you reduce the function size. You just don't reduce a method's size because it's bad, you do it to improve readability and to make it easier to understand, and abstraction accomplishes both.</p> http://stackoverflow.com/questions/127587/how-to-use-jvlc-java-bindings-for-vlc 0 How to use JVLC (Java bindings for VLC)? asterite 2008-09-24T14:41:38Z 2008-09-24T16:29:20Z <p>I'm trying to use <a href="http://trac.videolan.org/jvlc/" rel="nofollow">JVLC</a> but I can't seem to get it work. I've downloaded the jar, I installed <a href="http://www.videolan.org/vlc/" rel="nofollow">VLC</a> and passed the -D argument to the JVM telling it where VLC is installed. I also tried:</p> <pre><code>NativeLibrary.addSearchPath("libvlc", "C:\\Program Files\\VideoLAN\\VLC"); </code></pre> <p>with no luck. I always get:</p> <blockquote> <p>Exception in thread "main" java.lang.UnsatisfiedLinkError: Unable to load library 'libvlc': The specified module could not be found.</p> </blockquote> <p>Has anyone made it work?</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/122730#122730 0 Answer by asterite for What are some things that you do to make sure a project is ready to be released? asterite 2008-09-23T18:14:54Z 2008-09-23T18:14:54Z <p>Say it's beta.</p> http://stackoverflow.com/questions/50179/an-ide-for-d/114988#114988 1 Answer by asterite for An IDE for D asterite 2008-09-22T13:56:54Z 2008-09-22T13:56:54Z <p>What? No... Whether you are using <a href="http://www.dsource.org/projects/tango" rel="nofollow">Tango</a>, Phobos, or whatever, configuring <a href="http://dsource.org/projects/descent" rel="nofollow">Descent</a> for it is easy. You just need to add the desired library to the project's include path, and that's it. I'm developing Descent and until a few days I didn't use it for anything. I started making a game in D using phobos, <a href="http://www.dsource.org/projects/arclib" rel="nofollow">arclib</a> and <a href="http://www.dsource.org/projects/derelict" rel="nofollow">derelict</a>, and I can confirm it works like a charm. :-)</p> http://stackoverflow.com/questions/421751/whats-the-best-way-to-count-results-in-gql Comment by asterite on What's the best way to count results in GQL? asterite 2009-01-07T20:07:58Z 2009-01-07T20:07:58Z Why do you need to know the count? When I saw your post I upvoted it because I need this funcionality too. Then I realized I don't really need it if I present things in a different way. http://stackoverflow.com/questions/278466/throwing-multiple-exceptions-in-net-c/278506#278506 Comment by asterite on Throwing multiple exceptions in .Net/C# asterite 2008-11-10T18:01:08Z 2008-11-10T18:01:08Z That's the answer given in the question itself. http://stackoverflow.com/questions/262727/how-do-you-measure-the-quality-of-your-unit-tests/262741#262741 Comment by asterite on How do you measure the quality of your unit tests? asterite 2008-11-04T18:08:41Z 2008-11-04T18:08:41Z Oh, I stopped reading. Now I get it... http://stackoverflow.com/questions/262727/how-do-you-measure-the-quality-of-your-unit-tests/262741#262741 Comment by asterite on How do you measure the quality of your unit tests? asterite 2008-11-04T18:07:46Z 2008-11-04T18:07:46Z 100% code coverage... and beyond? :-P http://stackoverflow.com/questions/240269/what-does-the-error-htmlfile-invalid-argument-mean-im-getting-this-in-excan Comment by asterite on What does the error "htmlfile: invalid argument" mean? I'm getting this in excanvas.js. asterite 2008-10-27T15:37:38Z 2008-10-27T15:37:38Z Then you should provide some part of your html and any javascript code that you wrote... http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98629#98629 Comment by asterite on Favorite Visual Studio keyboard shortcuts asterite 2008-10-27T15:33:33Z 2008-10-27T15:33:33Z You can do Ctrl + &quot;.&quot; for the same purpose, and it's much, much more comfortable. http://stackoverflow.com/questions/240269/what-does-the-error-htmlfile-invalid-argument-mean-im-getting-this-in-excan Comment by asterite on What does the error "htmlfile: invalid argument" mean? I'm getting this in excanvas.js. asterite 2008-10-27T15:28:00Z 2008-10-27T15:28:00Z Are you invoking that method, or are you getting the error in that line? Maybe you can show more code, and in which line you are getting the error? http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/188183#188183 Comment by asterite on What is the most useful script you've written for everyday life? asterite 2008-10-09T17:30:36Z 2008-10-09T17:30:36Z I wnder why I didn't think f that... I'm having the same prblem... :-( http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written Comment by asterite on What Is the most beautiful code you have ever seen or written? asterite 2008-10-06T19:11:06Z 2008-10-06T19:11:06Z You can't be serious... http://stackoverflow.com/questions/172831/how-often-do-you-worry-about-how-many-if-cases-will-need-to-be-processed/172870#172870 Comment by asterite on How often do you worry about how many if cases will need to be processed? asterite 2008-10-06T18:50:28Z 2008-10-06T18:50:28Z lol, change it to &quot;var &lt;=3&quot;, the elseif&quot; var == 3&quot; will never be met! I hope you didn't copy this directly from your radar code. ;-) http://stackoverflow.com/questions/169662/is-there-a-way-to-implement-algebraic-types-in-java/169675#169675 Comment by asterite on Is there a way to implement algebraic types in Java? asterite 2008-10-04T03:26:22Z 2008-10-04T03:26:22Z Ah, you're right... you can't create many B's :-( http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164451#164451 Comment by asterite on What real life bad habits has programming given you? asterite 2008-10-03T11:30:00Z 2008-10-03T11:30:00Z Oooh... this is <i>so</i> true. Or just start typing. http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161225#161225 Comment by asterite on What are your language "hangups"? asterite 2008-10-02T17:08:46Z 2008-10-02T17:08:46Z Now that I think it, . can't be used instead of -&gt; because it's concatenation... mmm... http://stackoverflow.com/questions/160930/how-do-i-check-if-an-integer-is-even-or-odd/160944#160944 Comment by asterite on How do I check if an integer is even or odd? asterite 2008-10-02T16:09:48Z 2008-10-02T16:09:48Z What? That's not C#! That's pure C! :-P http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163043#163043 Comment by asterite on What is your (least) favorite syntax gotcha? asterite 2008-10-02T15:58:37Z 2008-10-02T15:58:37Z It's not a syntax gotcha, but it can be simplified to: return calculateSomething().