User Antti Sykäri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T03:26:00Zhttp://stackoverflow.com/feeds/user/2948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80476/how-to-concatenate-two-arrays-in-java33How to concatenate two arrays in Java?Antti Sykäri2008-09-17T06:14:23Z2009-12-09T21:10:57Z
<p>I need to concatenate two String arrays in Java.</p>
<pre><code>void f(String[] first, String[] second) {
String[] both = ???
}
</code></pre>
<p>What is the easiest way to do this?</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29433#29433375Answer by Antti Sykäri for What is the single most influential book every programmer should read?Antti Sykäri2008-08-27T03:10:24Z2009-12-01T06:36:44Z<p><img src="http://sykari.net/eternal/sicp.jpg" alt="alt text" title="Structure and Interpretation of Computer Programs"></p>
<p>Personally, <a href="http://rads.stackoverflow.com/amzn/click/0262510871" rel="nofollow">Structure and Interpretation of Computer Programs</a> is by far the most influential programming book I have ever read.</p>
<p>Some classics like <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a>, <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring</a> and <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a> teach you the effective working habits and the painstaking details of the trade. Others, like <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a>, <a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">Psychology of Computer Programming</a> and <a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">The Mythical Man-Month</a> delve into the psychosocial aspects of software development. <a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow">Numerous</a> <a href="http://rads.stackoverflow.com/amzn/click/0262033844" rel="nofollow">others</a> deal with algorithms. These books all have their place.</p>
<p>SICP, however, is in a different league. It is a book that <strong>will enlighten you</strong>. It will evoke in you a passion for writing beautiful programs. Moreover, it will teach you to recognize and appreciate that very beauty. It will leave you with a state of awe and an unquenchable thirst to learn more. Other books may make you a better programmer; <strong>this book will make you a programmer</strong>.</p>
<p>And in the meanwhile, you will learn a thing or two about functional programming (side effects won't be introduced until <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-19.html" rel="nofollow">chapter three</a>), <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%%5Fsec%5F3.5.1" rel="nofollow">lazy evaluation</a>, metaprogramming (well, <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-25.html" rel="nofollow">metalinguistic abstraction</a>), <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-30.html" rel="nofollow">virtual machines</a>, <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-34.html" rel="nofollow">interpreters</a>, and <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-35.html" rel="nofollow">compilers</a>.</p>
<p><a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/5545#5545">Some</a> think that SICP is not a beginner's book. Personally, I probably wouldn't have appreciated the book in full without having some programming experience under my belt, but <strong>I would definitely recommend it for a beginner.</strong> The book is, after all, written for the famous 6.001, the introductory programming course at MIT. It may require an intellectual effort (especially if you do the exercises - and you should), but the reward is well worth the price.</p>
<p>Not convinced? Read the <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-5.html" rel="nofollow">Foreword</a> or the <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-7.html" rel="nofollow">Preface to the First Edition</a>. The full text is <a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">freely available on the web</a>.</p>
http://stackoverflow.com/questions/30005/how-do-i-fire-an-event-when-a-iframe-has-finished-loading-in-jquery/32878#328785Answer by Antti Sykäri for How do I fire an event when a iframe has finished loading in jQuery?Antti Sykäri2008-08-28T17:38:18Z2009-11-11T19:44:28Z<p>I'm pretty certain that it cannot be done.</p>
<p>Check out the demo page I wrote:</p>
<p><a href="http://sykari.net/stuff/iframe/" rel="nofollow">http://sykari.net/stuff/iframe/</a></p>
<p>Pretty much anything else than PDF works, even Flash. (Tested on Safari, Firefox 3, IE 7)</p>
<p>Too bad.</p>
http://stackoverflow.com/questions/33744/is-scala-the-next-big-thing22Is Scala the next big thing?Antti Sykäri2008-08-29T01:15:03Z2009-07-16T04:29:10Z
<p>I've been learning <a href="http://scala-lang.org/" rel="nofollow">Scala</a> recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and interoperates with Java.</p>
<p><a href="http://blog.locut.us/2007/12/18/scala-the-best-of-both-ruby-and-java/" rel="nofollow">Some</a> <a href="http://dlweinreb.wordpress.com/2007/12/25/the-scala-programming-language-my-first-impressions/" rel="nofollow">think</a> it's the Next Big Language. <a href="http://www.weiqigao.com/blog/2008/03/24/scala_still_uncomfortable_after_five_years.html" rel="nofollow">Others</a> <a href="http://stuffthathappens.com/blog/2008/01/02/scala-will-do/" rel="nofollow">aren't</a> so sure.</p>
<p>Why do you think it is/isn't going to be the next big thing?</p>
http://stackoverflow.com/questions/39092/opengl-or-direct3d-for-a-new-windows-game-project-or-something-else2OpenGL or Direct3D for a new Windows game project? Or something else?Antti Sykäri2008-09-02T09:28:12Z2009-06-07T15:53:54Z
<p>I'm starting a hobby game project on Windows that will make heavy use of 3D graphics effects. It will most likely be written in C++.</p>
<p>Should I use OpenGL or Direct3D for my graphics backend? Why?</p>
<p>Or should I use a ready-made graphics engine such as <a href="http://www.ogre3d.org/" rel="nofollow">OGRE 3D</a>? Which one?</p>
<p>Some "how to get started" links would be useful. (On either technology, or both.) </p>
<p><strong>Edit</strong> - Yes I really meant Direct3D, not DirectX, thanks to <a href="http://beta.stackoverflow.com/questions/39092/opengl-or-direct3d-for-a-new-windows-game-project#39202" rel="nofollow">graham.reeds</a> for clarification</p>
<p><strong>Edit</strong> - <a href="http://beta.stackoverflow.com/questions/39092/opengl-or-direct3d-for-a-new-windows-game-project#39198" rel="nofollow">Mihai Lazar</a> pointed out that I could also use a graphics engine such OGRE 3D. Edited the question to reflect this alternative.</p>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27609#2760951Answer by Antti Sykäri for Overriding equals and hashCode in JavaAntti Sykäri2008-08-26T09:12:42Z2009-05-28T18:54:49Z<h3>The theory (for the language lawyers and the mathematically inclined):</h3>
<p>equals() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals(java.lang.Object)" rel="nofollow">javadoc</a>) must define an equality relation (it must be <em>reflexive</em>, <em>symmetric</em>, and <em>transitive</em>). In addition, it must be <em>consistent</em> (if the objects are not modified, then it must keep returning the same value). Furthermore, o.equals(null) must always return false.</p>
<p>hashCode() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#hashCode()" rel="nofollow">javadoc</a>) must also be <em>consistent</em> (if the object is not modified in terms of equals(), it must keep returning the same value).</p>
<p>The relation between the two methods is:</p>
<p><em>Whenever a.equals(b), then a.hashCode() must be same as b.hashCode().</em></p>
<h3>In practice:</h3>
<p>If you override one, then you should override the other.</p>
<p>Use the same set of fields that you use to compute equals() to compute hashCode().</p>
<p>Use the excellent helper classes <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html" rel="nofollow">EqualsBuilder</a> and <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/HashCodeBuilder.html" rel="nofollow">HashCodeBuilder</a> from the <a href="http://commons.apache.org/lang/" rel="nofollow">Apache Commons Lang</a> library. An example:</p>
<pre><code>public class Person {
private String name;
private int age;
// ...
public int hashCode() {
return new HashCodeBuilder(17, 31). // two randomly chosen prime numbers
// if deriving: appendSuper(super.hashCode()).
append(name).
append(age).
toHashCode();
}
public boolean equals(Object obj) {
if (obj == null)
return false;
if (obj == this)
return true;
if (obj.getClass() != getClass())
return false;
Person rhs = (Person) obj;
return new EqualsBuilder().
// if deriving: appendSuper(super.equals(obj)).
append(name, rhs.name).
append(age, rhs.age).
isEquals();
}
}
</code></pre>
<h3>Also remember:</h3>
<p>When using a hash-based <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collection.html" rel="nofollow">Collection</a> or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html" rel="nofollow">Map</a> such as <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashSet.html" rel="nofollow">HashSet</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/LinkedHashSet.html" rel="nofollow">LinkedHashSet</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html" rel="nofollow">HashMap</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Hashtable.html" rel="nofollow">Hashtable</a>, or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/WeakHashMap.html" rel="nofollow">WeakHashMap</a>, make sure that the hashCode() of the key objects that you put into the collection never changes while the object is in the collection. The bulletproof way to ensure this is to make your keys immutable, <a href="http://www.javapractices.com/topic/TopicAction.do?Id=29" rel="nofollow">which has also other benefits</a>.</p>
http://stackoverflow.com/questions/43253/measuring-exception-handling-overhead-in-c5Measuring exception handling overhead in C++Antti Sykäri2008-09-04T06:38:32Z2009-02-17T17:32:04Z
<p>What is the best way to measure exception handling overhead/performance in C++?</p>
<p>Please give standalone code samples.</p>
<p>I'm targeting Microsoft Visual C++ 2008 and gcc.</p>
<p>I need to get results from the following cases:</p>
<ol>
<li>Overhead when there are no try/catch blocks</li>
<li>Overhead when there are try/catch blocks but exceptions are not thrown</li>
<li>Overhead when exceptions are thrown</li>
</ol>
http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets9Best way to convert text files between character sets?Antti Sykäri2008-09-15T17:21:31Z2008-11-05T14:38:20Z
<p>What is the fastest, easiest tool or method to convert text files between character sets?</p>
<p>Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.</p>
<p>Everything goes: one-liners in your favorite scripting language, command-line tools or other utilities for OS, web sites, etc.</p>
<p><strong>Best solutions so far</strong>:</p>
<p>On Linux/UNIX/OS X/cygwin:</p>
<ul>
<li><p>Gnu <a href="http://www.gnu.org/software/libiconv/documentation/libiconv/iconv.1.html" rel="nofollow">iconv</a> suggested by <a href="http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets#64889">Troels Arvin</a> is best used <strong>as a filter</strong>. It seems to be universally available. Example:</p>
<p><code>$ iconv -f UTF-8 -t ISO-8859-15 in.txt > out.txt</code></p>
<p>As pointed out by <a href="http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets#64991">Ben</a>, there is an <a href="http://www.iconv.com/iconv.htm" rel="nofollow">online converter using iconv</a>.</p></li>
<li><p>Gnu <a href="http://www.gnu.org/software/recode/recode.html" rel="nofollow">recode</a> (<a href="http://www.informatik.uni-hamburg.de/RZ/software/gnu/utilities/recode_toc.html" rel="nofollow">manual</a>) suggested by <a href="http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets#64888">Cheekysoft</a> will convert <strong>one or several files in-place</strong>. Example:</p>
<p><code>$ recode UTF8..ISO-8859-15 in.txt</code><br>
This one uses shorter aliases:<br>
<code>$ recode utf8..l9 in.txt</code></p>
<p>Recode also supports <em>surfaces</em> which can be used to convert between different line ending types and encodings:</p>
<p>Convert newlines from LF (Unix) to CR-LF (Dos):<br>
<code>$ recode ../CR-LF in.txt</code><br></p>
<p>Base64 encode file:<br>
<code>$ recode ../Base64 in.txt</code> </p>
<p>You can also combine them.</p>
<p>Convert a Base64 encoded UTF8 file with Unix line endings to Base64 encoded Latin 1 file with Dos line endings:<br>
<code>$ recode utf8/Base64..l1/CR-LF/Base64 file.txt</code></p></li>
</ul>
<p>On Windows with <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Powershell</a> (<a href="http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets#64937">Jay Bazuzi</a>): </p>
<ul>
<li><p><code>PS C:\> gc -en utf8 in.txt | Out-File -en ascii out.txt</code></p>
<p>(No ISO-8859-15 support though; it says that supported charsets are unicode, utf7, utf8, utf32, ascii, bigendianunicode, default, and oem.)</p></li>
</ul>
http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system4Which hardware to buy for a new Linux server system?Antti Sykäri2008-09-03T20:32:25Z2008-09-29T16:44:59Z
<p>I want to build a decently performing, but above all stable Linux system for home server use, on a reasonable budget.</p>
<p>Sadly, I have several bad experiences trying to install Linux on recently purchased hardware. Whilst pretty much every component runs on Windows, Linux support is sometimes flaky or just plain nonexistent.</p>
<p><strong>Which off-the-shelf hardware components should I use to build a 100% Linux compatible system?</strong>
I'm specifically looking for <strong>motherboard</strong> and <strong>graphics card</strong> recommendations, since in my experience they are the most prominent sources of incompatibility. But you can recommend other parts as well. Both Intel and AMD are an option.</p>
<p>My distribution will be <a href="http://www.debian.org/" rel="nofollow">Debian</a> or <a href="http://www.ubuntu.com/products/whatisubuntu/serveredition" rel="nofollow">Ubuntu Server Edition</a>.</p>
<p>Your answer will be especially appreciated if have built the server and installed the OS yourself, and actually have the system in production use.</p>
<p>There are certainly multiple "right" answers for this question, and best answers will change as new hardware and new drivers become available.</p>
<p><strong>Edit</strong>: I won't be running X on the server - just email/ssh/samba/the usual LAMP stuff. I want to serve files on the local network, so performance is not completely irrelevant. But the main requirement is that Linux <em>actually installs and runs</em> on the hardware. (<strong>Another edit</strong>: being quiet, cool and not too power hungry is a definite plus.)</p>
<p><strong>Edit</strong>: WLAN compatibility is a plus.</p>
<p><strong>Edit</strong>: I ended up buying the <a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2814" rel="nofollow">GA-MA78GM-S2H</a> motherboard, <a href="http://products.amd.com/en-us/DesktopCPUDetail.aspx?id=426" rel="nofollow">AMD 4850e</a> processor, <a href="http://www.nexustek.nl/nx8050_80plus_modular_silent_power_supply.htm" rel="nofollow">Nexus NX-8050</a> PSU and a <a href="http://www.wdc.com/en/products/products.asp?driveid=338&language=en" rel="nofollow">500GB WD Cavial Green</a> hard disk. My old Vitesta DDR2-800 modules served as memory. Installs and runs Ubuntu 8.04 LTS Server Edition with no problems whatsoever. Haven't tried to install X.</p>
http://stackoverflow.com/questions/80476/how-to-concatenate-two-arrays-in-java/80559#8055944Answer by Antti Sykäri for How to concatenate two arrays in Java?Antti Sykäri2008-09-17T06:34:37Z2008-09-20T21:16:20Z<p>I found a one-line solution from the good old Apache Commons Lang library. <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/ArrayUtils.html" rel="nofollow">
ArrayUtils.addAll(Object[], Object[]).</a> Code:</p>
<pre><code>String[] both = ArrayUtils.addAll(first, second);
</code></pre>
http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system/86843#868430Answer by Antti Sykäri for Which hardware to buy for a new Linux server system?Antti Sykäri2008-09-17T19:42:48Z2008-09-17T19:42:48Z<p>My question was appropriately timed as my old server failed today.</p>
<p>Since <a href="http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system#42556">basszero</a> reported that Ubuntu works on him, I'm probably going to try the much-hyped Gigabyte GA-MA78GM-S2H (also mentioned in the <a href="http://www.codinghorror.com/blog/archives/001107.html" rel="nofollow">Coding Horror HTPC article</a>). Only I'm a bit hesitant about the 780G chipset because of reports <a href="http://ubuntuforums.org/showpost.php?p=4747278&postcount=34" rel="nofollow">like this</a>:</p>
<blockquote>
<p>I can't even seem to install it (Heron.) Harddrive light is solid red. Cursor blinked for a long while. Now I have "Buffer I/O error on device hdb." errors. In addition, I have a SQUASHFS error "failed reading block." Will not got intop setup. Live boot attempt failed as well.</p>
</blockquote>
<p>This coincides with some of my experiences with Linux and new hardware. Perhaps some more research still!</p>
http://stackoverflow.com/questions/10216/what-are-the-best-resources-on-designing-a-new-language/82689#826896Answer by Antti Sykäri for What are the best resources on designing a new language?Antti Sykäri2008-09-17T12:40:52Z2008-09-17T12:56:30Z<p>Books:</p>
<ul>
<li><p>If you only had time to read one language design / implementation book, I'd recommend reading <a href="http://rads.stackoverflow.com/amzn/click/0126339511" rel="nofollow">Programming Language Pragmatics</a> for both inspiration and information.</p></li>
<li><p>If you really want to get serious with ANTLR (and it's not a bad choice), you should pick up <a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">The Definitive ANTLR reference</a>. The PDF version costs just $24 and is far superior to the documentation that can be found online.</p></li>
<li><p>For an entertaining and educational story about designing a real world language, I heartily recommend <a href="http://rads.stackoverflow.com/amzn/click/0201543303" rel="nofollow">The Design and Evolution of C++</a>. At least if statically typed, compiled-to-native-code languages are your cup of tea.</p></li>
</ul>
<p>As for language design, I've found the following articles inspiring:</p>
<ul>
<li><p>Paul Graham: <a href="http://www.paulgraham.com/langdes.html" rel="nofollow">Five Questions About Language Design</a>, <a href="http://www.paulgraham.com/taste.html" rel="nofollow">Taste for Makers</a>, <a href="http://www.paulgraham.com/power.html" rel="nofollow">Succinctness is Power</a>, <a href="http://www.paulgraham.com/desres.html" rel="nofollow">Design and Research</a> and <a href="http://www.paulgraham.com/articles.html" rel="nofollow">others</a></p></li>
<li><p>Steve Yegge: <a href="http://steve-yegge.blogspot.com/2007/01/pinocchio-problem.html" rel="nofollow">http://steve-yegge.blogspot.com/2007/01/pinocchio-problem.html</a>, <a href="http://steve-yegge.blogspot.com/2007/02/next-big-language.html" rel="nofollow">The Next Big Language</a></p></li>
</ul>
<p>Discussion forums:</p>
<ul>
<li><p>If you are looking for information regarding a particular design issue, it has been probably discussed in <a href="http://groups.google.fi/group/comp.lang.misc/topics" rel="nofollow">comp.lang.misc</a>. Not too active nowadays.</p></li>
<li><p>The <a href="http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D" rel="nofollow">D language newsgroup</a> contains some good language design specific discussion, or at least it did when I frequented there a couple of years ago.</p></li>
<li><p><a href="http://lambda-the-ultimate.org/" rel="nofollow">Lambda the Ultimate</a> is mostly about theoretical functional programming stuff but occasionally touches upon language design issues (for example, <a href="http://lambda-the-ultimate.org/node/687#comment-18074" rel="nofollow">Some words of advice on language design</a>)</p></li>
</ul>
<p>Interesting languages-under-design I've bumped upon are <a href="http://jolt-lang.org/" rel="nofollow">Jolt</a>, Heron and
and <a href="http://web.archive.org/web/20020616202714/www.regexps.com/labnotes/devo-meta-x/view-topic/PicoC/IntroTopic" rel="nofollow">PicoC</a> (from the Internet Archive as the pages are no longer available as they were.)</p>
<p>Link to Heron at Internet Archive (MarkDown formatter doesn't support * in URL):</p>
<p><a href="http://web.archive.org/web/" rel="nofollow">http://web.archive.org/web/</a>*/<a href="http://www.heron-language.com/" rel="nofollow">http://www.heron-language.com/</a></p>
http://stackoverflow.com/questions/31867/are-there-any-examples-where-we-need-protected-inheritance-in-c/82215#822150Answer by Antti Sykäri for Are there any examples where we *need* protected inheritance in C++?Antti Sykäri2008-09-17T11:36:12Z2008-09-17T11:36:12Z<p><a href="http://www.parashift.com/c++-faq-lite/" rel="nofollow">C++ FAQ Lite</a> mentions of a case where using private inheritance is a legitimate solution (See <a href="http://www.parashift.com/c++-faq-lite/private-inheritance.html#faq-24.3" rel="nofollow">[24.3.] Which should I prefer: composition or private inheritance?</a>). It's when you want to call the derived class from within a private base class through a virtual function (in this case <code>derivedFunction()</code>):</p>
<pre><code>class SomeImplementationClass
{
protected:
void service() {
derivedFunction();
}
virtual void derivedFunction() = 0;
// virtual destructor etc
};
class Derived : private SomeImplementationClass
{
void someFunction() {
service();
}
virtual void derivedFunction() {
// ...
}
// ...
};
</code></pre>
<p>Now if you want to derive from the class Derived, and you want to use <code>Base::service()</code> from within the derived class (say you want to move <code>Derived::someFunction()</code> to the derived class), the easiest way to accomplish this is to change the private inheritance of <code>Base</code> to protected inheritance.</p>
<p>Sorry, can't think of a more concrete example. Personally I like to make all inheritance public so as to avoid wasting time with "should I make inheritance relation protected or private" discussions.</p>
http://stackoverflow.com/questions/79677/whats-the-best-way-to-do-fixed-point-math/79735#797357Answer by Antti Sykäri for What's the best way to do fixed-point math?Antti Sykäri2008-09-17T03:42:55Z2008-09-17T03:51:02Z<p>In modern C++ implementations, there will be no performance penalty for using simple and lean abstractions, such as concrete classes. Fixed-point computation is <strong>precisely</strong> the place where using a properly engineered class will save you from lots of bugs.</p>
<p>Therefore, <strong>you should write a FixedPoint8 class</strong>. Test and debug it thoroughly. If you have to convince yourself of its performance as compared to using plain integers, measure it.</p>
<p>It will save you from many a trouble by moving the complexity of fixed-point calculation to a single place.</p>
<p>If you like, you can further increase the utility of your class by making it a template and replacing the old <code>FixedPoint8</code> with, say, <code>typedef FixedPoint<short, 8> FixedPoint8;</code> But on your target architecture this is not probably necessary, so avoid the complexity of templates at first.</p>
<p>There is probably a good fixed point class somewhere in the internet - I'd start looking from the <a href="http://www.boost.org/" rel="nofollow">Boost</a> libraries.</p>
http://stackoverflow.com/questions/79658/react-on-global-hotkey-in-a-java-program-on-windows-linux-mac/79683#796832Answer by Antti Sykäri for React on global hotkey in a Java program on Windows/Linux/Mac?Antti Sykäri2008-09-17T03:33:04Z2008-09-17T03:33:04Z<p>It seems that this is not doable in a cross-platform fashion without using the native interfaces.</p>
<p>On Windows, you can use the free <a href="http://melloware.com/products/jintellitype/index.html" rel="nofollow">JIntellitype</a> library.</p>
http://stackoverflow.com/questions/79582/best-win32-compiled-scripting-language/79653#796533Answer by Antti Sykäri for Best win32 compiled scripting language?Antti Sykäri2008-09-17T03:27:20Z2008-09-17T03:27:20Z<p>Ruby is my scripting language of choice.</p>
<p>Try <a href="http://www.erikveen.dds.nl/rubyscript2exe/" rel="nofollow">RubyScript2Exe</a>.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/75903#7590318Answer by Antti Sykäri for Great programming quotesAntti Sykäri2008-09-16T19:16:54Z2008-09-16T19:16:54Z<blockquote>
<p>How do we convince people that in programming simplicity and clarity —in short: what mathematicians call "elegance"— are not a dispensable luxury, but a crucial matter that decides between success and failure?</p>
</blockquote>
<p>— <a href="http://www.cs.utexas.edu/users/EWD/transcriptions/EWD06xx/EWD648.html" rel="nofollow">Edsger W. Dijkstra</a></p>
http://stackoverflow.com/questions/74048/what-is-the-best-lightweight-javascript-framework/74178#741783Answer by Antti Sykäri for What is the best lightweight javascript framework?Antti Sykäri2008-09-16T16:21:34Z2008-09-16T16:21:34Z<p>Also see question <a href="http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why#917">What JavaScript library would you choose for a new project and why?</a></p>
<p>It seems that <a href="http://jquery.com/" rel="nofollow">jQuery</a> has been growing the most recently. (See <a href="http://www.slideshare.net/jeresig/building-a-javascript-library/" rel="nofollow">this presentation</a>, slide 4)</p>
http://stackoverflow.com/questions/69281/eclipse-ganymede-hacks-hints-tips-tricks-and-best-practices/69457#694573Answer by Antti Sykäri for Eclipse Ganymede hacks, hints, tips, tricks, and best practicesAntti Sykäri2008-09-16T04:48:32Z2008-09-16T04:48:32Z<p>Also see questions</p>
<ul>
<li><a href="http://stackoverflow.com/questions/54886/hidden-tricks-for-eclipse">Hidden / Tricks for Eclipse</a></li>
<li><a href="http://stackoverflow.com/questions/20529/useful-eclipse-features">Useful Eclipse features?</a></li>
</ul>
http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69305#693051Answer by Antti Sykäri for char[] to hex string exerciseAntti Sykäri2008-09-16T04:04:23Z2008-09-16T04:42:10Z<p>Changing</p>
<pre><code> ofs = *pChar >> 4;
pszHex[0] = pHex[ofs];
pszHex[1] = pHex[*pChar-(ofs*16)];
</code></pre>
<p>to</p>
<pre><code> int upper = *pChar >> 4;
int lower = *pChar & 0x0f;
pszHex[0] = pHex[upper];
pszHex[1] = pHex[lower];
</code></pre>
<p>results in roughly 5% speedup.</p>
<p>Writing the result two bytes at time as suggested by <a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69218">Robert</a> results in about 18% speedup. The code changes to:</p>
<pre><code>_result.resize(_len*2);
short* pszHex = (short*) &_result[0];
const unsigned char* pEnd = _pArray + _len;
const char* pHex = _hex2asciiU_value;
for(const unsigned char* pChar = _pArray;
pChar != pEnd;
pChar++, ++pszHex )
{
*pszHex = bytes_to_chars[*pChar];
}
</code></pre>
<p>Required initialization:</p>
<pre><code>short short_table[256];
for (int i = 0; i < 256; ++i)
{
char* pc = (char*) &short_table[i];
pc[0] = _hex2asciiU_value[i >> 4];
pc[1] = _hex2asciiU_value[i & 0x0f];
}
</code></pre>
<p>Doing it 2 bytes at a time or 4 bytes at a time will probably result in even greater speedups, as pointed out by <a href="http://stackoverflow.com/questions/69115/char-to-hex-string-exercise#69132">Allan Wind</a>, but then it gets trickier when you have to deal with the odd characters.</p>
<p>If you're feeling adventurous, you might try to adapt <a href="http://en.wikipedia.org/wiki/Duff's_device" rel="nofollow">Duff's device</a> to do this.</p>
<p>Results are on an Intel Core Duo 2 processor and <code>gcc -O3</code>.</p>
<p><strong>Always measure</strong> that you actually get faster results — a pessimization pretending to be an optimization is less than worthless.</p>
<p><strong>Always test</strong> that you get the correct results — a bug pretending to be an optimization is downright dangerous.</p>
<p>And <strong>always keep in mind</strong> the tradeoff between speed and readability — life is too short for anyone to maintain unreadable code.</p>
<p>(<a href="http://c2.com/cgi/wiki?CodeForTheMaintainer" rel="nofollow">Obligatory reference</a> to coding for the <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">violent psychopath who knows where you live</a>.)</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62468#624681Answer by Antti Sykäri for Stack overflow code golfAntti Sykäri2008-09-15T12:46:40Z2008-09-15T14:48:24Z<p>so.c in <strong>15 characters</strong>:</p>
<pre><code>main(){main();}
</code></pre>
<p>Result:</p>
<pre><code>antti@blah:~$ gcc so.c -o so
antti@blah:~$ ./so
Segmentation fault (core dumped)
</code></pre>
<p><strong>Edit</strong>: Okay, it gives warnings with -Wall and does not cause a stack overflow with -O2. But it works!</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63534#635340Answer by Antti Sykäri for Stack overflow code golfAntti Sykäri2008-09-15T14:44:00Z2008-09-15T14:44:00Z<p>Shell script solution in <strong>10 characters</strong> including newlines:</p>
<p>Well, technically not stack overflow but logically so, if you consider spawning a new process as constructing a new stack frame.</p>
<pre><code>#!sh
./so
</code></pre>
<p>Result:</p>
<pre><code>antti@blah:~$ ./so
[disconnected]
</code></pre>
<p>Whoops. Note: <strong>don't try this at home</strong></p>
http://stackoverflow.com/questions/58640/great-programming-quotes/59463#5946321Answer by Antti Sykäri for Great programming quotesAntti Sykäri2008-09-12T16:37:02Z2008-09-12T16:42:30Z<p>Two favorite quotes about merits of <a href="http://en.wikipedia.org/wiki/Type_system#Dynamic_typing" rel="nofollow">dynamic typing</a> vs. <a href="http://en.wikipedia.org/wiki/Type_system#Static_typing" rel="nofollow">static typing</a>:</p>
<blockquote>
<p>Think of compilation as cooking. Dynamic typing means the steak is
juicy and still a little red, like red meat is supposed to be. Static
typing means you burnt it to a crisp.</p>
</blockquote>
<p>— <a href="http://groups.google.com/group/comp.lang.lisp/browse_thread/thread/31c339ab3988592e/cbc0194f39cf3723#cbc0194f39cf3723" rel="nofollow">Erik Naggum</a></p>
<blockquote>
<p>It seems to me you can program with discipline or you can program with
bondage and discipline. You can't avoid the discipline either way, but bondage appeals to some people.</p>
</blockquote>
<p>— <a href="http://lambda-the-ultimate.org/classic/message10140.html" rel="nofollow">Patrick Logan</a></p>
<p>The next one is not primarily about programming but can be applied to it as well:</p>
<blockquote>
<p>One who works with their hands is a laborer.<br>
One who works with their hands and their mind is a craftsman.<br>
One who works with their hands, mind and heart is an artist.</p>
</blockquote>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/59413#594139Answer by Antti Sykäri for Hidden features of EclipseAntti Sykäri2008-09-12T16:13:36Z2008-09-12T16:13:36Z<p><strong>Alt-Shift-R</strong> stands for <em>rename</em>, not refactor. Refactoring is a <a href="http://en.wikipedia.org/wiki/Refactoring" rel="nofollow">more general term</a> (as defined by <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">the book</a>).</p>
<p>Nevertheless, it is one of my favorite refactorings. Others include:</p>
<ul>
<li><p><strong>Alt-Shift-M</strong>: <a href="http://www.refactoring.com/catalog/extractMethod.html" rel="nofollow">Extract Method</a> (when a code block or an expression is selected)</p></li>
<li><p><strong>Alt-Shift-L</strong>: <a href="http://www.refactoring.com/catalog/introduceExplainingVariable.html" rel="nofollow">Extract Local Variable</a> (when an expression is selected)</p></li>
</ul>
<p>Extract Local Variable is especially useful when I don't remember (or bother to type) the result type of a method. Assuming you have a method <code>JdbcTemplate createJdbcTemplate()</code> in your class, write some code such as this:</p>
<pre><code>void someQuery() {
createJdbcTemplate()
}
</code></pre>
<p>Select the expression <code>createJdbcTemplate()</code>, click Alt-Shift-L, type the name of variable and press enter.</p>
<pre><code>void someQuery() {
JdbcTemplate myTemplate = createJdbcTemplate();
}
</code></pre>
http://stackoverflow.com/questions/58774/how-do-you-paste-multiple-tabbed-lines-into-vi/58794#5879416Answer by Antti Sykäri for How do you paste multiple tabbed lines into Vi?Antti Sykäri2008-09-12T12:14:02Z2008-09-12T15:22:08Z<h2>If you're using plain vi:</h2>
<p>You probably have <code>autoindent</code> on. To turn it off while pasting:</p>
<pre><code><Esc> :set noai
<paste all you want>
<Esc> :set ai
</code></pre>
<p>I have in my <code>.exrc</code> the following shortcuts:</p>
<pre><code>map ^P :set noai^M
map ^N :set ai^M
</code></pre>
<p>Note that these have to be the actual control characters - insert them using Ctrl-V Ctrl-P and so on.</p>
<h2>If you're using vim:</h2>
<p>Use the <a href="http://www.vim.org/htmldoc/options.html#" rel="nofollow" title="paste"><code>paste</code></a> option. In addition to disabling <code>autoindent</code> it will also set other options such as <code>textwidth</code> and <code>wrapmargin</code> to paste-friendly defaults:</p>
<pre><code><Esc> :set paste
<paste all you want>
<Esc> :set nopaste
</code></pre>
<p>You can also set a key to toggle the paste mode. My <code>.vimrc</code> has the following line:</p>
<pre><code>set pastetoggle=<C-P> " Ctrl-P toggles paste mode
</code></pre>
http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/55820#5582012Answer by Antti Sykäri for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)Antti Sykäri2008-09-11T04:44:49Z2008-09-11T04:58:57Z<p><img src="http://users.tkk.fi/jsykari/files/2001_poster.jpg" alt="2001: A Space Odyssey poster" /></p>
<p><a href="http://www.imdb.com/title/tt0062622/" rel="nofollow">2001: A Space Odyssey</a></p>
<p><a href="http://www.imdb.com/character/ch0002900/quotes" rel="nofollow">HAL 9000</a> is the mother of all rogue AIs.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53781#5378110Answer by Antti Sykäri for Which compiles to faster code: "n * 3" or "n+(n*2)"?Antti Sykäri2008-09-10T11:06:09Z2008-09-10T11:06:09Z<p>As it's easy to measure it yourself, why don't do that? (Using <code>gcc</code> and <code>time</code> from cygwin)</p>
<pre><code>/* test1.c */
int main()
{
int result = 0;
int times = 1000000000;
while (--times)
result = result * 3;
return result;
}
machine:~$ gcc -O2 test1.c -o test1
machine:~$ time ./test1.exe
real 0m0.673s
user 0m0.608s
sys 0m0.000s
</code></pre>
<p>Do the test for a couple of times and repeat for the other case.</p>
<p>If you want to peek at the assembly code, <code>gcc -S -O2 test1.c</code></p>
http://stackoverflow.com/questions/51311/what-is-the-quickest-way-to-a-very-simple-blog/51504#515049Answer by Antti Sykäri for What is the quickest way to a very simple blog?Antti Sykäri2008-09-09T10:07:18Z2008-09-09T10:07:18Z<p><strong>If you're the perfectionist kind, roll your own</strong>.</p>
<ul>
<li>It isn't that hard</li>
<li>You learn something useful</li>
<li>You'll get <em>exactly</em> what you want and need</li>
</ul>
<p>Be warned that you may run into a quagmire fighting comment spam, fixing security holes, etc. But it'll probably be a fun project.</p>
<p><strong>If you are the practical type and ready to face some integration pain</strong>, use an existing engine like <a href="http://vss.73rus.com/wadcomblog/" rel="nofollow">WadcomBlog</a> (Python) or <a href="http://pyblosxom.sourceforge.net/" rel="nofollow">PyBlosxom</a>, or something completely different like MovableType or WordPress.</p>
<p>Here's a simple <a href="http://www.rossp.org/blog/2006/jun/08/django-blog-redux/" rel="nofollow">Django blog example</a> to get you started.</p>
<p>Some pros and cons of rolling your blog engine <a href="http://haacked.com/archive/2006/10/06/Rolling_Your_Own_Blog_Engine.aspx" rel="nofollow">this article</a> by Phil Haack.</p>
<p>Jeff Croft apparently <a href="http://jeffcroft.com/blog/2006/may/02/django-non-programmers/" rel="nofollow">rolled his own</a> as well.</p>
http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag/50484#504842Answer by Antti Sykäri for How do you disable browser Autocomplete on web form field / input tag?Antti Sykäri2008-09-08T19:29:03Z2008-09-08T19:29:03Z<p>On a related, or actually, on the completely opposite note - if you're the user of the aforementioned form and want to re-enable the autocomplete functionality, use the 'remember password' bookmarklet from this <a href="https://www.squarefree.com/bookmarklets/forms.html" rel="nofollow">bookmarklets page</a>. It removes all 'autocomplete="off"' attributes from all forms on the page. Keep fighting the good fight!</p>
http://stackoverflow.com/questions/49896/which-is-the-best-way-to-bring-a-file-from-a-remote-host-to-local-host-over-an-ss/49976#499762Answer by Antti Sykäri for Which is the best way to bring a file from a remote host to local host over an SSH session?Antti Sykäri2008-09-08T15:45:44Z2008-09-08T16:01:50Z<p><a href="http://zssh.sourceforge.net/" rel="nofollow">zssh</a> (a <a href="http://en.wikipedia.org/wiki/ZMODEM" rel="nofollow">ZMODEM</a> wrapper over openssh) does exactly what you want.</p>
<ul>
<li><p>Install <a href="http://zssh.sourceforge.net/" rel="nofollow">zssh</a> and use it instead of openssh (which I assume that you normally use)</p></li>
<li><p>You'll have to have the <a href="http://www.ohse.de/uwe/software/lrzsz.html" rel="nofollow">lrzsz</a> package installed on both systems.</p></li>
</ul>
<p>Then, to transfer a file <code>zyxel.png</code> from remote to local host:</p>
<pre><code>antti@local:~$ zssh remote
Press ^@ (C-Space) to enter file transfer mode, then ? for help
...
antti@remote:~$ sz zyxel.png
**B00000000000000
^@
zssh > rz
Receiving: zyxel.png
Bytes received: 104036/ 104036 BPS:16059729
Transfer complete
antti@remote:~$
</code></pre>
<p>Uploading goes similarly, except that you just switch <a href="http://linux.die.net/man/1/rz" rel="nofollow">rz(1)</a> and <a href="http://linux.die.net/man/1/sz" rel="nofollow">sz(1)</a>.</p>
<p>Putty users can try <a href="http://leputty.sourceforge.net/" rel="nofollow">Le Putty</a>, which has similar functionality.</p>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27609#27609Comment by Antti Sykäri on Overriding equals and hashCode in JavaAntti Sykäri2009-05-28T19:03:29Z2009-05-28T19:03:29Z Additional point about appendSuper(): you should use it in hashCode() and equals() if and only if you want to inherit the equality behavior of the superclass. For instance, if you derive straight from Object, there's no point because all Objects are distinct by default.http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27609#27609Comment by Antti Sykäri on Overriding equals and hashCode in JavaAntti Sykäri2009-05-28T18:59:36Z2009-05-28T18:59:36ZGranted, that was a bit superfluous statement (following the style of the original javadoc for Object.equals(): "For any non-null reference value x, x.equals(null) should return false")http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163515#163515Comment by Antti Sykäri on What is your (least) favorite syntax gotcha?Antti Sykäri2009-01-31T06:13:17Z2009-01-31T06:13:17Z"switch( int a )" doesn't compile, though. "switch( int a = 5 )" does.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/29433#29433Comment by Antti Sykäri on What is the single most influential book every programmer should read?Antti Sykäri2008-10-06T15:47:34Z2008-10-06T15:47:34ZDuly noted. It's a shame. Same happened to my school as well - they even had the audacity to replace it with a Java course.http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system/42556#42556Comment by Antti Sykäri on Which hardware to buy for a new Linux server system?Antti Sykäri2008-09-20T21:23:11Z2008-09-20T21:23:11ZI chose this as the correct answer as it most closely matched the hardware I eventually bought. http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system/42695#42695Comment by Antti Sykäri on Which hardware to buy for a new Linux server system?Antti Sykäri2008-09-20T21:21:13Z2008-09-20T21:21:13ZProbably nice, but a bit too enter-pricey for a home server. Besides, shipping the whole server to Finland would be a bit of a hassle.http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets/64889#64889Comment by Antti Sykäri on Best way to convert text files between character sets?Antti Sykäri2008-09-16T11:43:36Z2008-09-16T11:43:36ZI found this the best one if it's available, only it's UTF-8 and ISO-8859-1 (names without dashes wouldn't work for me)http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/54920#54920Comment by Antti Sykäri on Hidden features of EclipseAntti Sykäri2008-09-12T15:26:52Z2008-09-12T15:26:52ZI noticed the other day that this can be used to organize the whole project or parts of it, not just one file as I had expected. Extremely useful.