User Ludwig Weinzierl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:23:00Z http://stackoverflow.com/feeds/user/84671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816262/how-to-link-from-svg 0 How to link from SVG? Ludwig Weinzierl 2009-11-29T18:15:03Z 2009-11-30T12:25:18Z <p>What I tried is this</p> <pre><code>&lt;a xlink:target="http://ponyoverflow.com"&gt; &lt;text class="text" x="20" y="718" text-anchor="start"&gt;Mail Order Ponies&lt;/text&gt; &lt;/a&gt; </code></pre> <p>and variations with <code>href</code> and <code>type="simple"</code>.</p> <p>The link text appears, but the link is not clickable. I tried Firefox 3.5.5, Chromium, Inkscape and GNOME Image Viewer.</p> <p>Is there anything wrong with the syntax and if not is there any application that supports links in SVG?</p> http://stackoverflow.com/questions/1527305/disable-hardware-software-interrupts/1581729#1581729 0 Answer by Ludwig Weinzierl for Disable Hardware & Software Interrupts Ludwig Weinzierl 2009-10-17T08:21:26Z 2009-10-17T08:28:42Z <p>In x86 assembly the the commands are</p> <ul> <li><code>sti</code> set interrupt disable bit</li> <li><code>cli</code> clear interrupt disable bit</li> </ul> <p>These commands set and clear the <a href="http://en.wikipedia.org/wiki/IF_(x86_flag)" rel="nofollow">IF Flag</a>. They don't work in unprivileged mode (usually everything higher than ring 0, depending on <a href="http://en.wikipedia.org/wiki/IOPL" rel="nofollow">IOPL</a>) though. </p> http://stackoverflow.com/questions/1482738/how-is-database-migration-done/1482775#1482775 2 Answer by Ludwig Weinzierl for How is Database Migration done? Ludwig Weinzierl 2009-09-27T04:03:53Z 2009-09-27T04:11:40Z <p>I really depends, but from your question I assume you want to hear what other people do. So here is what I do in my current project.</p> <p>I have to migrate from Oracle to Oracle but to a completely different schema. The old system was 2-tier (old client, old database) the new system is 3-tier (new client, business logic, new database). We have more than 600 tables in the new schema. </p> <p>After much pondering we scraped the idea of doing a migration from old database to new database in SQL. We decided that in our case i would be much easier to go:</p> <p><code>old database -&gt; old client -&gt; business logic -&gt; new database</code></p> <p>In the old database much of the data is stored in strange ways and the old client mangles it in complex ways. We have access to the source code of the old client but it is a very large system.</p> <p>We wrote a migration tool that sits above the old client and the business logic. We have some SQL before and some SQL after that but the bulk of data is migrated via old client and business logic.</p> <p>The downside is that it is slow, a complete migration taking more than 190 hours in our case but otherwise it works well.</p> <p><strong>UPDATE</strong></p> <p>As far as stored procedures and triggers are concerned: Even as we use the same DBMS in old and new system (both Oracle) the procedures and triggers are written from scratch for the new system.</p> http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows 1 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-25T20:20:10Z 2009-08-26T16:52:20Z <p>Is there a 64 bit version of Java 1.4.2 for Windows?</p> <p>I need this because of a BEA WebLogic 8.1 application that runs out of memory all the time.</p> <p><strong>UPDATE:</strong> As <a href="http://stackoverflow.com/users/4725/tom-hawtin-tackline">Tom Hawtin</a> pointed out there are licensing problems with the Sun 64 bit version I suggested in my own answer. Just out of curiosity: <strong>If you know a version which is available under more liberal terms, please let me know.</strong> </p> <p><strong>UPDATE:</strong> No, I don't want to discuss why the application needs so much memory. No, I don't want to discuss why we are still running BEA 8.1. I accept your condolences though.</p> http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows/1330734#1330734 2 Answer by Ludwig Weinzierl for 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-25T20:20:27Z 2009-08-25T22:00:54Z <p>Oh yes there is. For some reason Sun has just decided to hide it as good as they could. You can download it from <a href="http://java.sun.com/j2se/1.4.2/SAPsite/download.html" rel="nofollow">Sun's SAP site</a>.</p> <p>It seems to work well with BEA WebLogic 8.1.</p> <p><strong>UPDATE:</strong> As Tom Hawtin pointed out: </p> <blockquote> <p>This version of the J2SE 1.4.2 SDK is strictly for use by SAP customers along with SAP software products.</p> </blockquote> <p><strong>If anyone knows of a version which is available under more liberal terms, please let me know.</strong></p> http://stackoverflow.com/questions/1168896/pros-and-cons-of-distributed-revision-control-systems 3 Pros and cons of distributed revision control systems? Ludwig Weinzierl 2009-07-22T20:57:48Z 2009-08-03T10:55:55Z <p>What are the advantages and disadvantages of distributed revision control systems?</p> <p>If you have any experience with distributed systems like <a href="http://git-scm.com/" rel="nofollow">Git</a>, <a href="http://mercurial.selenic.com/wiki/" rel="nofollow">Mercurial</a>, <a href="http://www.codicesoftware.com/xpfront.aspx" rel="nofollow">Plastic SCM</a>, <a href="http://en.wikipedia.org/wiki/List_of_revision_control_software#Distributed_model" rel="nofollow">etc.</a> please share your experience. Tell us what worked well and where problems arose.</p> <p>I'm particularly interested to hear about the use of distributed systems in traditional, commercial, non-open source projects but answers about other uses are also welcome.</p> http://stackoverflow.com/questions/1219094/separate-firstname-and-lastname-from-fullname-string-in-c/1219260#1219260 1 Answer by Ludwig Weinzierl for Separate firstname and lastname from fullname string in C# Ludwig Weinzierl 2009-08-02T16:55:33Z 2009-08-02T16:55:33Z <p>As others pointed out there is no solution that works in all cases. One reason for this is that there are names that can be used as a first as well as a last name.</p> <p>You could use a <strong>database of first names</strong> and find out which parta of the name are possible first names. If you also know the country of the person with a particular name you can increase accuracy a lot. </p> <p>For a free database of first names see <a href="http://stackoverflow.com/questions/818203/does-anyone-know-of-a-good-library-for-mapping-a-persons-name-to-his-or-her-sex/818283#818283">this answer</a>.</p> http://stackoverflow.com/questions/1219121/is-there-a-calculator-with-latex-syntax/1219157#1219157 1 Answer by Ludwig Weinzierl for Is there a calculator with LaTeX-syntax? Ludwig Weinzierl 2009-08-02T16:06:08Z 2009-08-02T16:16:12Z <p>There is none, because it is generally not possible.</p> <p>LaTeX math mode markup is presentational markup and there are cases in which it does not provide enough information to calculate the expression.</p> <p>That was one of the reasons MathML content markup was created and also why MathML is used in Mathematica. MathML actually is sort of two languages in one:</p> <ul> <li>presentation markup</li> <li>content markup</li> </ul> <p>To accomplish what you are after you'll have to have MathML with comibned presentation and content markup (see <a href="http://www.w3.org/TR/MathML2/overview.html" rel="nofollow">MathML spec</a>).</p> <p>In my opinion your best bet is to use MathML (even if it is verbose) and convert to LaTeX when necessary. That said, I also like LaTeX syntax best and maybe what we need is a compact syntax for MathML (something similar in spirit to <a href="http://www.relaxng.org/compact-tutorial-20030326.html" rel="nofollow">RelaxNG compact syntax</a>).</p> http://stackoverflow.com/questions/1183023/tool-which-shows-me-which-files-are-written-in-linux/1183047#1183047 2 Answer by Ludwig Weinzierl for Tool which shows me which files are written in Linux? Ludwig Weinzierl 2009-07-25T21:00:22Z 2009-07-25T21:18:16Z <p>What you are looking for is <a href="http://en.wikipedia.org/wiki/Lsof" rel="nofollow"><code>lsof</code></a>. It's a command line tool but there is also a <a href="http://sourceforge.net/apps/trac/glsof" rel="nofollow">GUI for it at sourceforge</a>.</p> http://stackoverflow.com/questions/1131319/full-description-of-a-compression-algorithm/1179176#1179176 1 Answer by Ludwig Weinzierl for Full description of a compression algorithm Ludwig Weinzierl 2009-07-24T17:54:42Z 2009-07-24T17:54:42Z <p>I like this introduction to the <a href="http://james.fabpedigree.com/bwt.htm" rel="nofollow">Burrows-Wheeler Transform</a>.</p> http://stackoverflow.com/questions/1163868/how-to-logout-when-using-htaccess-and-htpasswd-authentication/1163876#1163876 10 Answer by Ludwig Weinzierl for How to logout when using .htaccess (and .htpasswd) authentication? Ludwig Weinzierl 2009-07-22T08:35:57Z 2009-07-22T09:27:11Z <p>Browsers usually don't support this, see <a href="http://httpd.apache.org/docs/1.3/howto/auth.html" rel="nofollow">How do I log out?</a></p> <blockquote> <p>Since browsers first started implementing basic authentication, website administrators have wanted to know how to let the user log out. Since the browser caches the username and password with the authentication realm, as described earlier in this tutorial, this is not a function of the server configuration, but is a question of getting the browser to forget the credential information, so that the next time the resource is requested, the username and password must be supplied again. There are numerous situations in which this is desirable, such as when using a browser in a public location, and not wishing to leave the browser logged in, so that the next person can get into your bank account.</p> <p>However, although this is perhaps the most frequently asked question about basic authentication, thus far none of the major browser manufacturers have seen this as being a desirable feature to put into their products.</p> <p><strong>Consequently, the answer to this question is, you can't. Sorry.</strong></p> </blockquote> <p>There are browser extensions that allow you to clear the HTTP authentication for a site. For Firefox the <strong><a href="http://chrispederick.com/work/web-developer/" rel="nofollow">WebDeveloper</strong> </a> extension (which is one of my favourtie extensions anyway) offers this feature. The menu for this is <code>Miscellaneous/Clear Private Data/HTTP Authentication</code>.</p> http://stackoverflow.com/questions/1145899/how-do-i-find-out-what-my-external-ip-address-is/1145901#1145901 2 Answer by Ludwig Weinzierl for How do I find out what my external IP address is? Ludwig Weinzierl 2009-07-17T22:00:57Z 2009-07-17T22:11:43Z <p>Unfortunately there is no easy way to do it.</p> <p>I would use a site like <a href="http://www.whatsmyip.org/" rel="nofollow">www.whatsmyip.org</a> and parse the output.</p> <p><a href="http://checkip.dyndns.com/" rel="nofollow">checkip.dyndns.com</a> returns a very simple HTML file which looks like this:</p> <blockquote> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Current IP Check&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Current IP Address: 84.151.156.163 &lt;/body&gt; &lt;/html&gt; </code></pre> </blockquote> <p>This should be very easy to parse. Moreover the site is exists for about ten years. There is hope that it will be around for a while.</p> http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with 39 What is the worst programming language you ever worked with? [closed] Ludwig Weinzierl 2009-06-07T14:08:39Z 2009-07-10T14:05:13Z <blockquote> <p>If you have an interesting story to share, <strong>please post an answer</strong>, but do not abuse this question for bashing a language.</p> </blockquote> <p><hr /></p> <p>We are programmers, and our primary tool is the programming language we use.</p> <p>While there is a lot of discussion about the best one, <strong>I'd like to hear your stories about the worst programming languages you ever worked with</strong> and I'd like to know exactly what annoyed you.</p> <p>I'd like to collect this stories partly to avoid common pitfalls while designing a language (especially a DSL) and partly to avoid quirky languages in the future in general.</p> <p><hr /></p> <p><em>This question is <strong>not subjective</strong>. If a language supports only single character identifiers (see <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/961966#961966">my own answer</a>) this is <strong>bad in a non-debatable way</strong>.</em> </p> <p><hr /></p> <p><strong>EDIT</strong></p> <p>Some people have raised concerns that this question attracts trolls. Wading through all your answers made one thing clear. The large majority of answers is appropriate, useful and well written.</p> <p><strong>UPDATE 2009-07-01 19:15 GMT</strong></p> <p>The language overview is now complete, covering <strong>103 different languages</strong> from 102 answers. I decided to be lax about what counts as a programming language and included anything reasonable. Thank you <a href="http://stackoverflow.com/users/67468/david">David</a> for your comments on this. </p> <p>Here are all programming languages covered so far (alphabetical order, linked with answer, new entries in bold):</p> <p><a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/1063030#1063030">ABAP</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962260#962260">all 20th century languages</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962481#962481">all drag and drop languages</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962626#962626">all proprietary languages</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/963285#963285">APF</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/1055401#1055401">APL</a> <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962250#962250"><sup>(1)</sup></a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/963866#963866">AS400</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/970167#970167">Authorware</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962519#962519">Autohotkey</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/963317#963317">BancaStar</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962109#962109">BASIC</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/1062383#1062383">Bourne Shell</a>, <a href="http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/963251#963251"> http://stackoverflow.com/questions/1096635/serve-my-text-from-the-filesystem-instead-of-a-database/1096656#1096656 1 Answer by Ludwig Weinzierl for serve my text from the filesystem instead of a database? Ludwig Weinzierl 2009-07-08T07:47:39Z 2009-07-08T08:56:15Z <p>I think your benchmark results will depend on how you store the text data in your database. If you store it as LOB then behind the scenes it is stored in an ordinary file. With any kind of LOB you pay the Database lookup + File IO anyway.</p> <p><strong>VARCHAR is stored in the tablespace</strong></p> <p>Ordinary text data types (VARCHAR et al) are very limited in size in typical relational database systems. Something like 2000 or 4000 (Oracle) sometimes 8000 or even 65536 characters. Some databases support long text but <a href="http://arjudba.blogspot.com/2008/06/long-datatype-in-oracle.html" rel="nofollow"> these have serious drawbacks and are not recommended</a>.</p> <p><strong>LOBs are references to file system objects</strong></p> <p>If your text is larger you have to use a LOB data type (e.g. CLOB in Oracle).</p> <p>LOBs usually work like this: The database stores only a reference to a file system object. The file system object contains the data (e.g. the text data). This is very similar to what your colleague proposes except the DBMS lifts the heavy work of managing references and files. </p> <p><strong>The bottom line is:</strong> If you can store your text in a VARCHAR then go for it. If you can't you have two options: Use a LOB or store the data in a file referenced from the database. Both are technically similar and slower than using VARCHAR.</p> http://stackoverflow.com/questions/1077084/what-characters-are-allowed-in-dom-ids/1077111#1077111 5 Answer by Ludwig Weinzierl for What characters are allowed in DOM IDs? Ludwig Weinzierl 2009-07-02T23:00:17Z 2009-07-02T23:05:30Z <p>Actually there is a difference between HTML and XHTML. As XHTML is XML the rules for XML IDs apply:</p> <blockquote> <p>Values of type ID MUST match the Name production.</p> <pre><code>NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040] </code></pre> </blockquote> <p>Source: <a href="http://www.w3.org/TR/REC-xml/#NT-Name" rel="nofollow">Extensible Markup Language (XML) 1.0 (Fifth Edition) 2.3</a></p> <p>For HTML the following applies:</p> <blockquote> <p>id = name [CS]<br/> This attribute assigns a name to an element. This name must be unique in a document.</p> <p>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").</p> </blockquote> <p>Source: <a href="http://www.w3.org/TR/html401/types.html#type-name" rel="nofollow">HTML 4 Specification, Chapter 6, ID Token</a></p> http://stackoverflow.com/questions/1076995/why-do-people-use-visual-basic-anymore/1077000#1077000 6 Answer by Ludwig Weinzierl for Why do People use Visual Basic Anymore? Ludwig Weinzierl 2009-07-02T22:37:21Z 2009-07-02T22:42:47Z <p>Because it is easy to start with for beginners and many experienced programmers are used to it.</p> http://stackoverflow.com/questions/1076580/recommend-an-algorithms-exercise-book/1076651#1076651 2 Answer by Ludwig Weinzierl for Recommend an algorithms exercise book? Ludwig Weinzierl 2009-07-02T20:57:47Z 2009-07-02T21:03:48Z <p><a href="http://ww0.java4.datastructures.net/" rel="nofollow">Data Structures and Algorithms in Java</a> by Michael T. <strong>Goodrich</strong> and Roberto <strong>Tamassia</strong> is primarily a text book, but it has excellent exercises as well.</p> <p><a href="http://ww0.java4.datastructures.net/" rel="nofollow"> <img src="http://ww0.java4.datastructures.net/images/dsaj4e_cover_small.jpg"> </a></p> <p>I do only know the Java version, but it seems they have written <a href="http://cpp.datastructures.net/" rel="nofollow">Data Structures and Algorithms in C++</a> as well.</p> http://stackoverflow.com/questions/1071433/does-anyone-know-of-source-code-for-a-web-based-study-group/1071455#1071455 4 Answer by Ludwig Weinzierl for Does anyone know of source code for a web based study group? Ludwig Weinzierl 2009-07-01T21:20:27Z 2009-07-01T21:35:19Z <p>I am not quite sure what you mean by "host an online study group".</p> <p>If it is about people collaborate to learn something, I think <a href="http://moodle.org/" rel="nofollow">moodle</a> is what you are looking for.</p> <p>Here is the <a href="http://en.wikipedia.org/wiki/Moodle" rel="nofollow">wikipedia lemma for moodle:</a></p> <blockquote> <p>Moodle is a free and open source e-learning software platform, also known as a Course Management System, Learning Management System, or Virtual Learning Environment. It has a significant user base with 49,256 registered sites with 28,177,443 users in 2,571,855 courses (as of February, 2009).</p> </blockquote> <p>Here is how the <a href="http://moodle.org/" rel="nofollow">moodle people</a> describe it themselves:</p> <blockquote> <p>Moodle is an Open Source Course Management System (CMS), also known as a Learning Management System (LMS) or a Virtual Learning Environment (VLE). It has become very popular among educators around the world as a tool for creating online dynamic web sites for their students.</p> </blockquote> <p>It is not written in Python or C#, but PHP and released under GPL. You can install it on your webserver or use free moodle hosting like <a href="http://www.e-socrates.org/" rel="nofollow">e-socrates</a>.</p> http://stackoverflow.com/questions/1071029/does-a-32bit-process-need-more-memory-when-it-runs-on-a-64bit-system 3 Does a 32bit process need more memory when it runs on a 64bit system? Ludwig Weinzierl 2009-07-01T19:57:54Z 2009-07-01T20:05:04Z <p>I have a rather memory hungry java application. On my 32 bit systems with Windows XP Professional the application will just run fine if I give it <code>-Xmx1280m</code>. Everything below will end up in an <code>java.lang.OutOfMemoryError: Java heap space</code> exception.</p> <p>If I run the same application on a 64 bit Windows XP Professional (everything else exactly the same) it requires <code>-Xms1400m</code> to prevent the OutOfMemory condition.</p> <p>To my understanding, if I have a C program and I compile it for 32 bit and for 64 bit the 64 bit version will need more memory because pointers are wider and so on. In my java example however the virtual machine (Sun) is the same and the bytecode is the same.</p> <p><strong>Why does it need more memory on the 64 bit machine?</strong></p> http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/961966#961966 13 Answer by Ludwig Weinzierl for What is the worst programming language you ever worked with? Ludwig Weinzierl 2009-06-07T14:23:20Z 2009-07-01T17:40:00Z <p>Here is the contribution to my own question:</p> <p><strong>Origin LabTalk</strong></p> <p>My all-time favourite in this regard is <a href="http://www.originlab.com/" rel="nofollow">Origin LabTalk</a>. In LabTalk the maximum length of a string variable identifier is <strong>one</strong> character. That is, there are only 26 string variables at all. Even worse, some of them are used by Origin itself, and it is not clear which ones. </p> <p>From the manual:</p> <blockquote> <p>LabTalk uses the % notation to define a string variable. A legal string variable name must be a % character followed by a single alphabetic character (a letter from A to Z). String variable names are caseinsensitive. Of all the 26 string variables that exist, Origin itself uses 14.</p> </blockquote> <p><strong>Doors DXL</strong></p> <p>For me the second worst in my opinion is <a href="http://www.ibm.com/developerworks/forums/forum.jspa?forumID=1527&amp;categoryID=24" rel="nofollow">Doors DXL</a>. Programming languages can be divided into two groups: Those with manual memory management (e.g. delete, free) and those with a garbage collector. Some languages offer both, but DXL is probably the only language in the world that supports neither. OK, to be honest this is only true for strings, but hey, strings aren't exactly the most rarely used data type in requirements engineering software.</p> <p>The consequence is that memory used by a string can never be reclaimed and DOORS DXL leaks like sieve.</p> <p>There are countless other quirks in DXL, just to name a few:</p> <ul> <li><a href="http://www.smartdxl.com/functions.html" rel="nofollow">DXL function syntax</a> </li> <li><a href="http://stackoverflow.com/questions/960146/are-the-dynamic-arrays-in-doors-data-base-worth-using">DXL arrays</a></li> </ul> http://stackoverflow.com/questions/1040416/howto-debug-a-slow-linker-on-a-debian-system/1040643#1040643 3 Answer by Ludwig Weinzierl for Howto debug a (slow) linker on a debian system Ludwig Weinzierl 2009-06-24T20:02:23Z 2009-06-24T20:11:31Z <p>You can try gold (<code>binutils-gold</code>) instead of <code>ld</code>. It is supposed to be faster.</p> <p>Here is a quote from <a href="http://en.wikipedia.org/wiki/Gold_(linker)" rel="nofollow">Wikipedia Gold(linker)</a></p> <blockquote> <p>The motivation for writing gold was to make a linker that is faster than the GNU linker[3], especially for large applications coded in C++.</p> </blockquote> <p>The author of gold (Ian Lance Taylor) has published <a href="http://www.airs.com/blog/archives/38" rel="nofollow">an (longish) article about linkers</a> where he explains his motifs in writing gold and why most linkers are slow. If you are interested in the inner workings of linkers this article is worth reading.</p> http://stackoverflow.com/questions/1040171/touch-typing-in-visual-studio-2008/1040187#1040187 3 Answer by Ludwig Weinzierl for Touch typing in Visual Studio 2008 Ludwig Weinzierl 2009-06-24T18:45:04Z 2009-06-24T18:50:50Z <p>I'm a vim user and a touch typist, but never got used to <code>hjkl</code>. For me it's OK to use the arrow keys, but I must admit that I admire my colleagues who master that skill.</p> <p>The only thing that is really annoying is that <code>Home</code>, <code>End</code>, etc. are not exactly in the same place on different keyboards, that really drives me nuts.</p> http://stackoverflow.com/questions/1031270/best-linux-programming-related-forums/1031275#1031275 4 Answer by Ludwig Weinzierl for Best Linux programming related forums? Ludwig Weinzierl 2009-06-23T08:15:39Z 2009-06-23T08:20:40Z <p><a href="http://ubuntuforums.org/" rel="nofollow">ubuntuforums.org</a> is ubuntu specific but with boards for broader discussion as well, <a href="http://ubuntuforums.org/showthread.php?t=641120" rel="nofollow">for example</a>.</p> <p>Discussion is usually of high quality there.</p> <p>If your question is linux programming related, just ask <a href="http://stackoverflow.com/">here</a>. If it is linux admin related ask <a href="http://serverfault.com" rel="nofollow">there</a>;-)</p> http://stackoverflow.com/questions/1021208/difference-between-rm-and-mp3-formats/1021246#1021246 5 Answer by Ludwig Weinzierl for difference between rm and mp3 formats Ludwig Weinzierl 2009-06-20T08:40:41Z 2009-06-20T08:55:53Z <p>I second <a href="http://stackoverflow.com/questions/1021208/difference-between-rm-and-mp3-formats/1021214#1021214">Lunatiks</a> answer, but suggest <a href="http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec" rel="nofollow">FLAC</a> instead of WAV.</p> <p>FLAC is a lossless compression method. Quote from <a href="http://flac.sourceforge.net/" rel="nofollow">http://flac.sourceforge.net/</a>:</p> <blockquote> <p>FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality. This is similar to how Zip works, except with FLAC you will get much better compression because it is designed specifically for audio, and you can play back compressed FLAC files in your favorite player (or your car or home stereo, see supported devices) just like you would an MP3 file.</p> </blockquote> <p>The reason why you'd want to go with a lossless method (FLAC or WAV) for storage in a warehouse is as follows:</p> <p>Lossy methods like MP3 or RM are perfectly OK quality wise. The problem shows up when you have to convert one lossless format to another lossless format. If you do for example WAV -> MP3 -> RM you will end up with a file that has artifacts from MP3 encoding and RM encoding.</p> <p>The proper way to store the files would be to store lossless and convert it to the appropriate format for your customers.</p> <pre><code> OGG ^ | RM &lt;-- FLAC --&gt; MP3 | v WAV </code></pre> http://stackoverflow.com/questions/934127/gnu-make-with-many-target-directories 3 GNU make with many target directories Ludwig Weinzierl 2009-06-01T09:30:16Z 2009-06-19T00:39:00Z <p>I have to integrate the generation of many HTML files in an existing <code>Makefile</code>. The problem is that the HTML files need to reside in many different directories. My idea is to write an implicit rule that converts the source file (*.st) to the corresponding html file</p> <pre><code>%.html: %.st $(HPC) -o $@ $&lt; </code></pre> <p>and a rule that depends on all html files</p> <pre><code>all: $(html) </code></pre> <p>If the HTML file is not in the builddir <code>make</code> doesn't find the implicit rule: <code>*** No rule to make target</code>. If I change the implicit rule like so</p> <pre><code>$(rootdir)/build/doc/2009/06/01/%.html: %.st $(HPC) -o $@ $&lt; </code></pre> <p>it's found, but then I have to have an implicit rule for nearly every file in the project. According to <a href="http://www.gnu.org/software/make/manual/make.html#Implicit-Rule-Search" rel="nofollow">Implicit Rule Search Algorithm</a> in the GNU <code>make</code> manual, rule search works like this:</p> <blockquote> <ol> <li>Split t into a directory part, called d, and the rest, called n. For example, if t is <code>src/foo.o', then d is </code>src/' and n is `foo.o'.</li> <li>Make a list of all the pattern rules one of whose targets matches t or n. If the target pattern contains a slash, it is matched against t; otherwise, against n.</li> </ol> </blockquote> <p>Why is the implicit rule not found, and what would be the most elegant solution, assuming GNU <code>make</code> is used?</p> <p>Here is a stripped down version of my <code>Makefile</code>:</p> <pre><code>rootdir = /home/user/project/doc HPC = /usr/local/bin/hpc html = $(rootdir)/build/doc/2009/06/01/some.html %.html: %.st $(HPC) -o $@ $&lt; #This works, but requires a rule for every output dir #$(rootdir)/build/doc/2009/06/01/%.html: %.st # $(HPC) -o $@ $&lt; .PHONY: all all: $(html) </code></pre> http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming 4 Which scripting languages support multi-core programming? Ludwig Weinzierl 2009-06-16T15:58:18Z 2009-06-18T09:15:03Z <p>I have written a little python application and here you can see how Task Manager looks during a typical run. <img src="http://weinzierl.name/temp/multicore-hires.png"/></p> <p>While the application is perfectly multithreaded, unsurprisingly it uses only one CPU core. Regardless of the fact that most modern scripting languages support multithreading, scripts <strong>can run on one CPU core only</strong>.</p> <p>Ruby, Python, Lua, PHP all can only run on a single core. Even Erlang, which is said to be especially good for concurrent programming, is affected.</p> <p>Is there a scripting language that has built in support for threads that are not confined to a single core?</p> <p><strong>WRAP UP</strong></p> <p>Answers were not quite what I expected, but <a href="http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002508#1002508">the <code>TCL</code> answer</a> comes close. I'd like to add <code>perl</code>, which (much like <code>TCL</code>) has interpreter-based threads.</p> <p><a href="http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002477#1002477">Jython, IronPython</a> and <a href="http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002458#1002458">Groovy</a> fall under the umbrella of combining a proven language with the proven virtual machine of another language. Thanks for your hints in this direction.</p> <p>I chose <a href="http://stackoverflow.com/questions/1002440/which-scripting-languages-support-multi-core-programming/1002460#1002460">Aiden Bell's</a> answer as <em>Accepted Answer</em>. He does not suggest a particular language but his remark was most insightful to me.</p> http://stackoverflow.com/questions/978317/ulimit-t-under-ubuntu/978373#978373 5 Answer by Ludwig Weinzierl for ulimit -t under ubuntu Ludwig Weinzierl 2009-06-10T21:58:47Z 2009-06-12T16:06:51Z <p>As <a href="http://stackoverflow.com/users/115211/tsf">Tsf</a> pointed out, the problem is due to a <a href="https://bugs.launchpad.net/ubuntu/jaunty/%2Bsource/linux/%2Bbug/361508" rel="nofollow">bug in kernel 2.6.28</a>. I leave my original answer, because I think it could be helpful anyway.</p> <p>From the ulimit manpage</p> <blockquote> <p><code>-t The maximum amount of cpu time</code> <code>in seconds.</code></p> </blockquote> <p>What counts in respect to ulimit is only <strong>CPU time</strong>. Try to start your program like this:</p> <pre><code>time myprogram </code></pre> <p>That will show you how much CPU time it really uses.</p> <p>My suspicion is that your endless loop contains <code>sleep()</code> and sleep time does not contribute to the CPU time of the process.</p> <p>This gets killed after one second:</p> <pre><code>me@host:~$ bash me@host:~$ ulimit -t 1; for (( i=1; 1; i++ )); do a=1; done Killed </code></pre> <p>This seems to run forever (but of course does not): </p> <pre><code>me@host:~$ bash me@host:~$ ulimit -t 1; for (( i=1; 1; i++ )); do sleep 1; done </code></pre> <p>Measure CPU time like this...</p> <pre><code>me@host:~$ time for (( i=1; i&lt;5; i++ )); do sleep 1; done </code></pre> <p>...and 5 seconds later...</p> <pre><code>real 0m4.008s user 0m0.000s sys 0m0.012s </code></pre> <p>...only 12 ms CPU time used.</p> <p>I tried it on ubuntu Jaunty Jackalope (9.04)</p> <pre><code>Linux host 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux </code></pre> http://stackoverflow.com/questions/960146/are-the-dynamic-arrays-in-doors-data-base-worth-using/960892#960892 3 Answer by Ludwig Weinzierl for Are the dynamic arrays in DOORS data base worth using? Ludwig Weinzierl 2009-06-07T00:24:24Z 2009-06-07T00:24:24Z <p>Dynamic arrays are considerably slower than C style arrays in DOORS, so you should avoid them if you know the size of the array beforehand.</p> <p>If you know the number of elements but need more dimensions you can do it like this:</p> <pre><code>//Define an array of (for example) bool int imax=5 int jmax=7 bool myarray[imax*jmax] //Access for example element myarray[3][2] int i=3 int j=2 bool mybool=myarray[i*jmax+j] </code></pre> http://stackoverflow.com/questions/952886/editing-large-files-on-mac-os-x/952910#952910 3 Answer by Ludwig Weinzierl for Editing large files on Mac OS X Ludwig Weinzierl 2009-06-04T20:29:40Z 2009-06-04T20:53:00Z <p>I have used <strong><code>gvim</code></strong> for files larger than 1 GB of <a href="http://en.wikipedia.org/wiki/NASTRAN" rel="nofollow" >NASTRAN</a> output. <strong><code>gvim</code></strong> handles large files very well. In fact that was the main reason I switched from <strong><code>Emacs</code></strong> to vim.</p> <p><strong><code>Emacs</code></strong> is a great editor but it can handle files only as large as 128 MB, at least the 32-bit version. If you decide to use <strong><code>Emacs</code></strong> I recommend to configure it to turn syntax highlighting off for large files.</p> <p>Another way to deal with large files those days was heavy usage of <strong><code>head</code></strong>, <strong><code>tail</code></strong> and <strong><code>split</code></strong>.</p> http://stackoverflow.com/questions/934127/gnu-make-with-many-target-directories/934612#934612 2 Answer by Ludwig Weinzierl for GNU make with many target directories Ludwig Weinzierl 2009-06-01T12:25:17Z 2009-06-01T12:54:35Z <p>The best solution I found so far is to generate an implicit rule per target directory via <a href="http://www.gnu.org/software/make/manual/make.html#Eval-Function" rel="nofollow">foreach-eval-call</a>, as explained in the <a href="http://www.gnu.org/software/make/manual/make.html" rel="nofollow">GNU <code>make</code> manual</a>. I have no idea how this scales to a few thousand target directories, but we will see...</p> <p>If you have a better solution, please post it!</p> <p>Here is the code:</p> <pre><code>rootdir = /home/user/project/doc HPC = /usr/local/bin/hpc html = $(rootdir)/build/doc/2009/06/01/some.html \ $(rootdir)/build/doc/2009/06/02/some.html targetdirs = $(rootdir)/build/doc/2009/06/01 \ $(rootdir)/build/doc/2009/06/02 define generateHtml $(1)/%.html: %.st -mkdir -p $(1) $(HPC) -o $$@ $$&lt; endef $(foreach targetdir, $(targetdirs), $(eval $(call generateHtml, $(targetdir)))) .PHONY: all all: $(html) </code></pre> http://stackoverflow.com/questions/1910182/is-it-fair-to-ask-about-by-reference-arguments-as-a-c-interview-question/1910216#1910216 Comment by Ludwig Weinzierl on Is it fair to ask about by-reference arguments as a C interview question? Ludwig Weinzierl 2009-12-15T20:55:45Z 2009-12-15T20:55:45Z @bytenik: I completely disagree. It was always called &quot;pass by reference&quot; no matter if what is happening is hidden or not. http://stackoverflow.com/questions/1816262/how-to-link-from-svg/1819519#1819519 Comment by Ludwig Weinzierl on How to link from SVG? Ludwig Weinzierl 2009-11-30T20:14:41Z 2009-11-30T20:14:41Z Thanks Eric, works as you suggested. I tried the <i>href</i> version, but only when generated from javascript, which still doesn't work. I verified that the javascript produces exactly the above output (saved the document with) firefox. My workaround for now is to hardcode the link and move it to the proper position dynamically. If have an idea why the generated link isn't clickable I'd like to know.? http://stackoverflow.com/questions/546634/work-out-the-date-of-the-fourth-saturday-in-the-current-month Comment by Ludwig Weinzierl on work out the date of the fourth saturday in the current month Ludwig Weinzierl 2009-11-29T14:03:48Z 2009-11-29T14:03:48Z Not so incidentally given that February has 28 days which is divisible by 7. Doesn't hold for leap years of course. http://stackoverflow.com/questions/73947/what-is-the-best-way-to-stop-people-hacking-the-php-based-highscore-table-of-a-f/74841#74841 Comment by Ludwig Weinzierl on What is the best way to stop people hacking the PHP-based highscore table of a Flash game. Ludwig Weinzierl 2009-10-08T16:05:34Z 2009-10-08T16:05:34Z +1 Wow, answers like that is why I love stackoverflow. http://stackoverflow.com/questions/1346820/what-are-the-efficiencies-afforded-by-emacs-or-vim-vs-eclipse/1349912#1349912 Comment by Ludwig Weinzierl on What are the efficiencies afforded by Emacs or Vim vs Eclipse? Ludwig Weinzierl 2009-09-02T16:40:57Z 2009-09-02T16:40:57Z +1 for pointing our the &quot;Eclipse for Java&quot; thing. &quot;Eclipse does rock for Java.&quot; I agree 100%. http://stackoverflow.com/questions/1346820/what-are-the-efficiencies-afforded-by-emacs-or-vim-vs-eclipse/1346877#1346877 Comment by Ludwig Weinzierl on What are the efficiencies afforded by Emacs or Vim vs Eclipse? Ludwig Weinzierl 2009-09-02T16:35:45Z 2009-09-02T16:35:45Z And vim starts up faster than you can say &quot;Eclipse&quot;. http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows/1330734#1330734 Comment by Ludwig Weinzierl on 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-26T16:56:01Z 2009-08-26T16:56:01Z @Cheeso: If only life was this easy... http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows Comment by Ludwig Weinzierl on 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-26T16:53:34Z 2009-08-26T16:53:34Z @Thorbj&#248;rn Ravn Andersen: Ah, here it starts to get interesting. You mean I could buy a 64 bit version of Java 1.4. Do you have a link? http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows Comment by Ludwig Weinzierl on 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-26T16:41:34Z 2009-08-26T16:41:34Z @Cheeso: I know that, you know that, but whining doesn't help me here and now to get that piece of software running;-) http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows/1333927#1333927 Comment by Ludwig Weinzierl on 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-26T16:29:28Z 2009-08-26T16:29:28Z True, true, but not an answer to my question. http://stackoverflow.com/questions/1330730/64-bit-version-of-java-1-4-2-for-windows/1330734#1330734 Comment by Ludwig Weinzierl on 64 bit version of Java 1.4.2 for Windows? Ludwig Weinzierl 2009-08-25T21:57:58Z 2009-08-25T21:57:58Z @Tom Hawtin: Thanks for the comment, I didn't notice that. Updated my question. http://stackoverflow.com/questions/1311037/are-there-any-invalid-linux-filenames/1311070#1311070 Comment by Ludwig Weinzierl on Are there any invalid linux filenames? Ludwig Weinzierl 2009-08-21T10:22:41Z 2009-08-21T10:22:41Z +1 Thanks for the link to &quot;Fixing Unix/Linux/POSIX Filenames&quot;. It was a really intersting read. http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement Comment by Ludwig Weinzierl on Why isn't C++ used in Web-Developement ? Ludwig Weinzierl 2009-08-08T16:02:43Z 2009-08-08T16:02:43Z @Karl Voigtland: They don't like null pointer exceptions neither. http://stackoverflow.com/questions/1122328/first-name-middle-name-last-name-why-not-full-name/1122561#1122561 Comment by Ludwig Weinzierl on First name, middle name, last name. Why not Full Name? Ludwig Weinzierl 2009-08-06T19:20:26Z 2009-08-06T19:20:26Z Even without tribal culture someone might become the Pope. http://stackoverflow.com/questions/1219342/logic-circuits/1219353#1219353 Comment by Ludwig Weinzierl on logic circuits. Ludwig Weinzierl 2009-08-02T17:49:02Z 2009-08-02T17:49:02Z It's not part of it, it's a complete RS Flip-Flop.