User J&#246;rg W Mittag - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:09:10Z http://stackoverflow.com/feeds/user/2988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1920805/python-ruby-haskell-do-they-provide-true-multithreading/1921825#1921825 8 Answer by Jörg W Mittag for Python, Ruby, Haskell - Do they provide true multithreading? Jörg W Mittag 2009-12-17T13:35:17Z 2009-12-17T13:35:17Z <blockquote> <p>1) Do Python, Ruby, or Haskell support true multithreading?</p> </blockquote> <p>This has nothing to do with the language. It is a question of the hardware (if the machine only has 1 CPU, it is simply physically impossible to execute two instructions at the same time), the Operating System (again, if the OS doesn't support true multithreading, there is nothing you can do) and the language implementation / execution engine.</p> <p>Unless the language specification explicitly forbids or enforces true multithreading, this has absolutely nothing whatsoever to do with the language.</p> <p><em>All</em> the languages that you mention, plus all the languages that have been mentioned in the answers so far, have multiple implementations, some of which support true multithreading, some don't, and some are built on top of <em>other</em> execution engines which might or might not support true multithreading.</p> <p>Take Ruby, for example. Here are just <em>some</em> of its implementations and their threading models:</p> <ul> <li>MRI: green threads, no true multithreading</li> <li>YARV: OS threads, no true multithreading</li> <li>Rubinius: OS threads, true multithreading</li> <li>MacRuby: OS threads, true multithreading</li> <li>JRuby, XRuby: JVM threads, depends on the JVM (if the JVM supports true multithreading, then JRuby/XRuby does, too, if the JVM doesn't, then there's nothing <em>they</em> can do about it)</li> <li>IronRuby, Ruby.NET: just like JRuby, XRuby, but on the CLI instead of on the JVM</li> </ul> <p>See also <a href="http://StackOverflow.Com/questions/56087/57802/#57802">my answer to another similar question about Ruby</a>. (Note that that answer is more than a year old, and some of it is no longer accurate. Rubinius, for example, uses truly concurrent native threads now, instead of truly concurrent green threads. Also, since then, several <em>new</em> Ruby implementations have emerged, such as BlueRuby, tinyrb, Ruby Go Lightly, Red Sun and SmallRuby.)</p> <p>Similar for Python:</p> <ul> <li>CPython: native threads, no true multithreading</li> <li>PyPy: native threads, depends on the execution engine (PyPy can run natively, or on top of a JVM, or on top of a CLI, or on top of <em>another</em> Python execution engine. Whenever the underlying platform supports true multithreading, PyPy does, too.)</li> <li>Unladen Swallow: native threads, currently no true multithreading, but fix is planned</li> <li>Jython: JVM threads, see JRuby</li> <li>IronPython: CLI threads, see IronRuby</li> </ul> <p>For Haskell, at least the Glorious Glasgow Haskell Compiler supports true multithreading with native threads. I don't know about UHC, LHC, JHC, YHC, HUGS or all the others.</p> <p>For Erlang, <em>both</em> BEAM and HiPE support true multithreading with green threads.</p> <blockquote> <p>2) If a program contains threads, will a Virtual Machine automatically assign work to multiple cores (or to physical CPUs if there is more than 1 CPU on the mainboard)?</p> </blockquote> <p>Again: this depends on the Virtual Machine, the Operating System and the hardware. Also, some of the implementations mentioned above, don't even <em>have</em> Virtual Machines.</p> http://stackoverflow.com/questions/1911840/trying-to-find-a-file-line-for-eval289-warning-dont-put-space-before-argu/1914510#1914510 1 Answer by Jörg W Mittag for trying to find a file/line for: .(eval):289: warning: don't put space before argument parentheses Jörg W Mittag 2009-12-16T12:56:48Z 2009-12-16T12:56:48Z <p>The file and line number are contained in the backtrace. However, in your case, the warning is inside a string being <code>eval</code>ed at runtime. Which means <em>there is no file</em>. (Actually, the <code>eval</code> method <em>does</em> take optional arguments for the file name and line number that should be displayed in a backtrace, but in this case whoever wrote the code in question unfortunately forgot to pass those arguments.)</p> <p>I fear that you have no other choice than to manually examine every single call to <code>eval</code> in your entire codebase, and that <em>includes</em> Rails, your testing framework, your entire application, your tests, your plugins, your helpers, the ruby standard library, ...</p> <p>Of course, you should be aware that the problem might not be obvious as in</p> <pre><code>eval 'foo (bar, baz)' </code></pre> <p>It could also be something like</p> <pre><code>def foo(*args) puts args.join end bar = 'Hello' baz = 'World' foostr = 'foo' # in one file barstr = 'bar' # in another file in a different directory bazstr = 'baz' # in another file in a different directory argstr = "(#{barstr}, #{bazstr})" # in yet another file $, = ' ' # in some third-party plugin str = [foostr, argstr].join # in a fourth file eval str # somewhere else entirely eval str, binding, __FILE__, __LINE__ # this is how it *should* be done </code></pre> <p>Note the difference between the two warning messages: the first one reads exactly like the one you posted, but the <em>second</em> one has the filename instead of <code>(eval)</code> and the line number inside the file instead of the line number inside the eval string.</p> <p>By the way: the line number <code>289</code> in the warning message is the line number <em>inside the <code>eval</code>d string</em>! In other words: somewhere in your application there is a string being <code>eval</code>d, which is <em>at least</em> 289 lines long! (Actually, it is more likely that this done not in your application but rather in Rails. The Rails router used to be a particularly bad offender, I don't know if this is still the case.)</p> http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1911381#1911381 0 Answer by Jörg W Mittag for Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-16T00:04:15Z 2009-12-16T00:04:15Z <p>You are correct. The specific form of garbage collection you describe is called "<em>reference counting</em>". The way it works (conceptually, at least, most modern implementations of reference counting are actually implemented quite differently) in the simplest case, looks like this:</p> <ul> <li>whenever a reference to an object is added (e.g. it is assigned to a variable or a field, passed to method, and so on), its reference count is increased by 1</li> <li>whenever a reference to an object is removed (the method returns, the variable goes out of scope, the field is re-assigned to a different object or the object which contains the field gets itself garbage collected), the reference count is decreased by 1</li> <li>as soon as the reference count hits 0, there is no more reference to the object, which means nobody can use it anymore, therefore it is garbage and can be collected</li> </ul> <p>And this simple strategy has exactly the problem you decribe: if A references B and B references A, then both of their reference counts can <em>never</em> be less than 1, which means they will never get collected.</p> <p>There are four ways to deal with this problem:</p> <ol> <li>Ignore it. If you have enough memory, your cycles are small and infrequent and your runtime is short, maybe you can get away with simply not collecting cycles. Think of a shell script interpreter: shell scripts typically only run for a few seconds and don't allocate much memory.</li> <li>Combine your reference counting garbage collector with <em>another</em> garbage collector which doesn't have problems with cycles. CPython does this, for example: the main garbage collector in CPython is a reference counting collector, but from time to time a tracing garbage collector is run to collect the cycles.</li> <li>Detect the cycles. Unfortunately, detecting cycles in a graph is a rather expensive operation. In particular, it requires pretty much the same overhead that a tracing collector would, so you could just as well use one of those.</li> <li>Don't implement the algorithm in the naive way you and I would: since the 1970s, there have been multiple quite interesting algorithms developed that combine cycle detection and reference counting in a single operation in a clever way that is significantly cheaper than either doing them both seperately or doing a tracing collector.</li> </ol> <p>By the way, the <em>other</em> major way to implement a garbage collector (and I have already hinted at that a couple of times above), is <em>tracing</em>. A tracing collector is based on the concept of <em>reachability</em>. You start out with some <em>root set</em> that you know is <em>always</em> reachable (global constants, for example, or the <code>Object</code> class, the current lexical scope, the current stack frame) and from there you <em>trace</em> all objects that are reachable from the root set, then all objects that are reachable from the objects reachable from the root set and so on, until you have the transitive closure. Everything that is <em>not</em> in that closure is garbage.</p> <p>Since a cycle is only reachable within itself, but not reachable from the root set, it will be collected.</p> http://stackoverflow.com/questions/1896366/javascript-2-0-classes/1896387#1896387 7 Answer by Jörg W Mittag for Javascript 2.0 classes Jörg W Mittag 2009-12-13T12:38:26Z 2009-12-13T12:38:26Z <p>JavaScript 2.0 aka ECMAScript 4 was abandoned in 2008, before it was ever released. There will never be a class-based version of ECMAScript. Which is a good thing.</p> http://stackoverflow.com/questions/1884056/datatype-programming/1884280#1884280 1 Answer by Jörg W Mittag for datatype programming Jörg W Mittag 2009-12-10T21:45:59Z 2009-12-10T21:45:59Z <p>I have never heard of that term. Google hasn't, either. (The only hit is this very question.)</p> <p>The closest thing I can think of, is <a href="http://LucaCardelli.Name/" rel="nofollow"><em>Typeful Programming</em></a>, which is a programming paradigm introduced by Luca Cardelli in a 1989 <a href="http://LucaCardelli.Name/Papers/TypefulProg.A4.pdf" rel="nofollow">paper</a> by the same title.</p> <p>The idea of typeful programming is that you use types extensively and primarily to model your domain, drive your design, structure your program and in general solve your problem, the same way you use objects in object-oriented programming, procedures in procedural programming, functions in functional programming, clauses in logic programming, processes in Erlang, and so on. This is a typical style in Haskell.</p> <p>[EDIT: I hadn't seen your comments on the question, when I wrote this answer. I guess this second one is what you are looking for.]</p> <p>Another term that I stumbled upon while doing the above-mentioned Google search, is the term <em>datatype-generic programming</em>. This is a <a href="http://WWW.ComLab.Ox.Ac.UK/research/pdt/ap/dgp/" rel="nofollow">research project</a> that ran from 2003 to 2006 that aims to create a new mechanism for writing programs that parametrize over types much further as is possible today with, say, parametric polymorphism in Haskell or templates in C++.</p> http://stackoverflow.com/questions/1883498/adding-by-block-in-ruby/1883625#1883625 1 Answer by Jörg W Mittag for Adding by block in ruby Jörg W Mittag 2009-12-10T20:06:14Z 2009-12-10T21:13:01Z <p>This is a very common recursion pattern. It is called a <em>catamorphsim</em> in category theory, a <em>fold</em> in mathematics and functional programming, it is also sometimes called <em>reduce</em> and in Smalltalk it is called <code>inject:into:</code>. In Ruby, it is called <code>inject</code> or <code>reduce</code> (these two methods are aliases).</p> <p>The idea is that you have a collection of values and you want to "reduce" or "fold" that collection of multiple values into a single value. (The Smalltalk name <code>inject:into:</code> comes from the fact that you inject a starting value into a block which is called for each element of the collection.)</p> <pre><code>def balance this_month = Time.now.beginning_of_month items.reduce(0) { |balance, item| balance + item.charges.sum(:revenue, :conditions =&gt; ['created_at &gt;= ?', this_month]) } end </code></pre> http://stackoverflow.com/questions/1883642/getting-ruby-code-to-work-creating-sha1-hash-from-given-string-and-key/1884018#1884018 0 Answer by Jörg W Mittag for Getting Ruby code to work, creating SHA1 hash from given string and key Jörg W Mittag 2009-12-10T21:04:55Z 2009-12-10T21:04:55Z <p>There seems to be something <em>seriously</em> wrong. Ruby tells you that are trying to call <code>require</code> in the first line of your script, and that it can't find the file that your are telling it to load. But! You don't <em>call</em> <code>require</code> in the first line of your script! In fact, you don't call <code>require</code> <em>anywhere</em> in your script.</p> <p><em>Something</em> must be <em>severely</em> broken.</p> <p><em>One</em> potential problem I see in your code, is that <code>hash</code> is a standard method in Ruby, that is <em>already</em> defined for a totally different purpose. Overriding it is probably going to lead to problems sooner or later. However, the error you are seeing happens way before we even get to that, so it's not relevant for the <em>immediate</em> problem at hand.</p> <p>As far as I can make out, this seems to be what you are trying to do:</p> <pre><code>require 'openssl' require 'base64' DIGEST = OpenSSL::Digest::Digest.new('sha1') hashstring = "POST application/octet-stream Thu, 05 Jun 2008 16:38:19 GMT /rest/objects date:Thu, 05 Jun 2008 16:38:19 GMT groupacl:other=NONE listable-meta:part4/part7/part8=quick meta:part1=buy id: 6039ac182f194e15b9261d73ce044939/user1 useracl:jane=FULL_CONTROL,juan=WRITE" key = 'AKLuryj6zs8ste4Y3jTGQp71xq0=' def hmac(hs, keyh) digest = OpenSSL::HMAC.digest(DIGEST, Base64.decode64(keyh), hs) return Base64.encode64(digest).chomp end require 'minitest/spec' require 'minitest/autorun' describe 'the hmac method' do it 'creates an HMAC from a string' do hmac(hashstring, key).must_equal 'KxQMJeaVqxFdujha89UuksEUiAg=' end end </code></pre> <p>But I am still puzzled how you can get an error message from <code>require</code> when you are <em>never</em> calling it in the first place.</p> http://stackoverflow.com/questions/1882320/ruby-rails-get-elements-from-array-where-indices-are-divisible-by-x/1883763#1883763 0 Answer by Jörg W Mittag for Ruby/Rails: get elements from array where indices are divisible by x Jörg W Mittag 2009-12-10T20:24:17Z 2009-12-10T20:24:17Z <pre><code>def array_mod(ary, step=2, offset=0) return ary.select.with_index {|_, i| i%step == offset } end fruits = %w[banana strawberry kiwi orange grapefruit lemon melon] odd_fruits = array_mod(fruits) even_fruits = array_mod(fruits, 2, 1) require 'minitest/spec' require 'minitest/autorun' describe 'array_mod' do it 'odd_fruits should contain all elements with odd indices (index % 2 == 0)' do odd_fruits.must_equal %w[banana kiwi grapefruit melon] end it 'even_fruits should contain all elements with even indices (index % 2 == 1)' do even_fruits.must_equal %w[strawberry orange lemon] end end </code></pre> http://stackoverflow.com/questions/1882101/how-can-i-quickly-check-if-linux-unzip-is-installed-using-perl/1882328#1882328 10 Answer by Jörg W Mittag for How can I quickly check if Linux `unzip` is installed using Perl? Jörg W Mittag 2009-12-10T16:48:41Z 2009-12-10T16:48:41Z <p>Just run it.</p> <p>Seriously.</p> <p>Presumably, the reason <em>why</em> you want to know if it is installed, is because you need to run it later. In that case, it isn't enough to know whether it is installed, anyway&nbsp;&ndash; you also need to know whether it is executable, whether it is in the path, whether the user id the script is running under has the necessary privileges to run it, and so on. You can check all that by simply just running it.</p> http://stackoverflow.com/questions/1872479/eclipse-and-windows-7/1874192#1874192 2 Answer by Jörg W Mittag for Eclipse and Windows 7 Jörg W Mittag 2009-12-09T14:19:38Z 2009-12-09T14:19:38Z <p>Where do you have Eclipse installed? Where is your workspace?</p> <p>In Windows 7 (Vista, actually), a lot of security policies that existed only on paper in earlier versions of Windows, are now actually enforced by the operating system. For example, according to Microsoft's documentation, it has been pretty much illegal to write to <code>C:\Program Files</code> for decades now, but if you actually tried it, it still worked. Not anymore. As of Vista, <code>C:\Program Files</code> is off-limits.</p> <p>However, in order not to break existing (broken) applications, Microsoft introduced filesystem virtualization. If an application tries to write to <code>C:\Program Files</code>, it gets silently redirected to <code>C:\Users\%Username%\AppData\Local\VirtualStore\Program Files</code>. So, this specific application sees all the files it created or changed in <code>C:\Program Files</code>, but <em>other</em> applications, and this includes the Explorer, see only the unchanged / empty directory.</p> <p>This does not just apply to <code>C:\Program Files</code> but also to other system directories as well. Also, it applies to system parts of the registry, like <code>HKEY_LOCAL_MACHINE</code> for example.</p> <p>In order to sidestep all of this, I simply installed my copy of Eclipse in <code>%LocalAppData%\eclipse</code> (that's <code>C:\Users\%Username%\AppData\Local\eclipse</code>) and created my workspace in <code>%AppData%\eclipse</code> (that's <code>C:\Users\%Username%\AppData\Roaming\eclipse</code>). That <em>Just Works</em>&trade;.</p> http://stackoverflow.com/questions/1869755/ruby-regular-expression-and-extraction-from-string/1870592#1870592 5 Answer by Jörg W Mittag for ruby regular expression and extraction from string Jörg W Mittag 2009-12-08T23:22:18Z 2009-12-09T09:49:48Z <p>That string looks like it's actually not a string but a URI. So, let's treat it as one:</p> <pre><code>require 'uri' uri = URI.parse(str) </code></pre> <p>Now, extracting the path component of the URI is a piece of cake:</p> <pre><code>path = uri.path </code></pre> <p>Now we have already greatly limited the amount of stuff that can go wrong with our own parsing. The only part of the URI we still have to deal with, is the path component.</p> <p>A <code>Regexp</code> that matches the part you are interested in looks like this:</p> <pre><code>%r|/to/\w+/(.*/)t$|i </code></pre> <p>If we put all of that together, we end up with something like this:</p> <pre><code>require 'uri' def extract(uri) return URI.parse(uri).path[%r|/to/\w+/(.*/)t$|i, 1] end uri = 'http://linkto.com/to/1pyTZl/somesite.com/2009/10/monit-on-ubuntu/t' path = 'somesite.com/2009/10/monit-on-ubuntu/' require 'minitest/spec' require 'minitest/autorun' describe 'extracting a path from a URI' do it 'extracts the path' do extract(uri).must_equal path end end </code></pre> http://stackoverflow.com/questions/1722726/is-the-scala-2-8-collections-library-a-case-of-the-longest-suicide-note-in-histo/1724530#1724530 16 Answer by Jörg W Mittag for Is the Scala 2.8 collections library a case of "the longest suicide note in history" ? Jörg W Mittag 2009-11-12T18:56:31Z 2009-12-08T06:33:46Z <p>I do not have a PhD, nor any other kind of degree neither in CS nor math nor indeed any other field. I have no prior experience with Scala nor any other similar language. I have no experience with even remotely comparable type systems. In fact, the only language that I have more than just a superficial knowledge of which even <em>has</em> a type system is Pascal, not exactly known for its sophisticated type system. (Although it <em>does</em> have range types, which AFAIK pretty much no other language has, but that isn't really relevant here.) The other three languages I know are BASIC, Smalltalk and Ruby, none of which even have a type system.</p> <p>And yet, I have no trouble at all understanding the signature of the <code>map</code> function you posted. It looks to me like pretty much the same signature that <code>map</code> has in every other language I have ever seen. The difference is that this version is more generic. It looks more like a C++ STL thing than, say, Haskell. In particular, it abstracts away from the concrete collection type by only requiring that the argument is <code>IterableLike</code>, and also abstracts away from the concrete return type by only requiring that an implicit conversion function exists which can build <em>something</em> out of that collection of result values. Yes, that is quite complex, but it really is only an expression of the general paradigm of generic programming: do not assume anything that you don't actually have to.</p> <p>In this case, <code>map</code> does not actually <em>need</em> the collection to be a list, or being ordered or being sortable or anything like that. The only thing that <code>map</code> cares about is that it can get access to all elements of the collection, one after the other, but in no particular order. And it does not need to know what the resulting collection is, it only needs to know how to build it. So, that is what its type signature requires.</p> <p>So, instead of</p> <pre><code>map :: (a → b) → [a] → [b] </code></pre> <p>which is the traditional type signature for <code>map</code>, it is generalized to not require a concrete <code>List</code> but rather just an <code>IterableLike</code> data structure</p> <pre><code>map :: (IterableLike i, IterableLike j) ⇒ (a → b) → i → j </code></pre> <p>which is then further generalized by only requiring that a function exists that can <em>convert</em> the result to whatever data structure the user wants:</p> <pre><code>map :: IterableLike i ⇒ (a → b) → i → ([b] → c) → c </code></pre> <p>I admit that the syntax is a bit clunkier, but the semantics are the same. Basically, it starts from </p> <pre><code>def map[B](f: (A) ⇒ B): List[B] </code></pre> <p>which is the traditional signature for <code>map</code>. (Note how due to the object-oriented nature of Scala, the input list parameter vanishes, because it is now the implicit receiver parameter that every method in a single-dispatch OO system has.) Then it generalized from a concrete <code>List</code> to a more general <code>IterableLike</code></p> <pre><code>def map[B](f: (A) ⇒ B): IterableLike[B] </code></pre> <p>Now, it replaces the <code>IterableLike</code> result collection with a function that <em>produces</em>, well, really just about anything.</p> <pre><code>def map[B, That](f: A ⇒ B)(implicit bf: CanBuildFrom[Repr, B, That]): That </code></pre> <p>Which I really believe is not <em>that</em> hard to understand. There's really only a couple of intellectual tools you need:</p> <ol> <li>You need to know (roughly) what <code>map</code> is. If you gave <em>only</em> the type signature without the name of the method, I admit, it would be a lot harder to figure out what is going on. But since you already <em>know</em> what <code>map</code> is supposed to do, and you know what its type signature is supposed to be, you can quickly scan the signature and focus on the anomalies, like "why does this <code>map</code> take two functions as arguments, not one?"</li> <li>You need to be able to actually <em>read</em> the type signature. But even if you have never seen Scala before, this should be quite easy, since it really is just a mixture of type syntaxes you already know from other lanugages: VB.NET uses square brackets for parametric polymorphism, and using an arrow to denote the return type and a colon to seperate name and type, is actually the norm.</li> <li>You need to know roughly what generic programming is about. (Which isn't <em>that</em> hard to figure out, since it's basically all spelled out in the name: it's literally just programming in a generic fashion).</li> </ol> <p>None of these three should give any professional or even hobbyist programmer a serious headache. <code>map</code> has been a standard function in pretty much every language designed in the last 50 years, the fact that different languages have different syntax should be obvious to anyone who has designed a website with HTML and CSS and you can't subscribe to an even remotely programing related mailinglist without some annoying C++ fanboi from the chucrh of St. Stepanov explaining the virtues of generic programming.</p> <p>Yes, Scala <em>is</em> complex. Yes, Scala has one of the most sophisticated type systems known to man, rivaling and even surpassing languages like Haskell, Miranda, Clean or Cyclone. But if complexity were an argument against success of a programming language, C++ would have died long ago and we would all be writing Scheme. There are lots of reasons why Scala will very likely not be successful, but the fact that programmers can't be bothered to turn on their brains before sitting down in front of the keyboard is probably not going to be the main one.</p> http://stackoverflow.com/questions/1860999/list-of-fundamental-data-structures-what-am-i-missing/1861208#1861208 1 Answer by Jörg W Mittag for List of fundamental data structures - what am I missing? Jörg W Mittag 2009-12-07T16:42:56Z 2009-12-07T16:42:56Z <p><a href="http://Wikipedia.Org/wiki/Tuple" rel="nofollow">Tuples</a>.</p> <p>Also, if I could nominate one not-basic data structure, it would be the persistent bit-partitioned prefix Hash Tries from Clojure. In general, I believe persistence to be a very important and often overlooked property of any data structure.</p> http://stackoverflow.com/questions/1859747/static-block-in-ruby/1860362#1860362 8 Answer by Jörg W Mittag for Static block in Ruby Jörg W Mittag 2009-12-07T14:38:16Z 2009-12-07T14:38:16Z <blockquote> <p>I want to create a simple linked list type of an object in ruby; where an instance variable in class points to another instance of same type.</p> </blockquote> <p>Just a quick note: the word <em>type</em> is a very dangerous word in Ruby, especially if you come from Java. Due to an historic accident, the word is used both in dynamic typing and in static typing to mean two only superficially related, but very different things.</p> <p>In dynamic typing, a type is a label that gets attached to a <em>value</em> (<em>not</em> a reference).</p> <p>Also, in Ruby the concept of type is much broader than in Java. In Java programmer's minds, "type" means the same thing as "class" (although that's not true, since Interfaces and primitives are also types). In Ruby, "type" means "what can I do with it".</p> <p>Example: in Java, when I say something is of type <em>String</em>, I mean it is a direct instance of the <code>String</code> class. In Ruby, when I say something is of type <em>String</em>, I mean it is either</p> <ul> <li>a direct instance of the <code>String</code> class or </li> <li>an instance of a subclass of the <code>String</code> class or </li> <li>an object which responds to the <code>#to_str</code> method or </li> <li>an object which behaves indistinguishably from a String.</li> </ul> <blockquote> <p>I want to populate and link all nodes; before the constructor is called and only once. Something that we'd usually do in Java Static block.</p> </blockquote> <p>In Ruby, everything is executable. In particular, there is no such thing as a "class declaration": a class body is just exectuable code, just like any other. If you have a list of method definitions in your class body, those are not declarations that are read by the compiler and then turned into a class object. Those are expressions that get executed by the evaluator one by one.</p> <p>So, you can put any code you like into a class body, and that code will be evaluated when the class is created. Within the context of a class body, <code>self</code> is bound to the class (remember, classes are just objects like any other).</p> <blockquote> <p>Initialize method is a constructor signature in ruby. Are there any rules around them? Like in Java you cannot call another constructor from a constructor if its not the first line (or after calling the class code?)</p> </blockquote> <p>Ruby doesn't <em>have</em> constructors. Constructors are just factory methods (with stupid restrictions); there is no reason to have them in a well-designed language, if you can just use a (more powerful) factory method instead.</p> <p>Object construction in Ruby works like this: object construction is split into two phases, <em>allocation</em> and <em>initialization</em>. Allocation is done by a public class method called <code>allocate</code>, which is defined as an instance method of class <code>Class</code> and is generally <em>never</em> overriden. It just allocates the memory space for the object and sets up a few pointers, however, the object is not really usable at this point.</p> <p>That's where the initializer comes in: it is an instance method called <code>initialize</code>, which sets up the object's internal state and brings it into a consistent, fully defined state which can be used by other objects.</p> <p>So, in order to fully create a new object, what you need to do is this:</p> <pre><code>x = X.allocate x.initialize </code></pre> <p>[Note: Objective-C programmers may recognize this.]</p> <p>However, because it is too easy to forget to call <code>initialize</code> and as a general rule an object should be fully valid after construction, there is a convenience factory method called <code>Class#new</code>, which does all that work for you and looks something like this:</p> <pre><code>class Class def new(*args, &amp;block) obj = alloc obj.initialize(*args, &amp;block) return obj end end </code></pre> <p>[Note: actually, <code>initialize</code> is private, so reflection has to be used to circumvent the access restrictions like this: <code>obj.send(:initialize, *args, &amp;block)</code>]</p> <p>That, by the way, is the reason why to construct an object you <em>call</em> a public class method <code>Foo.new</code> but you <em>implement</em> a private instance method <code>Foo#initialize</code>, which seems to trip up a lot of newcomers.</p> <p>To answer your question: since an initializer method is just a method like any other, there are absolutely no restrictions as to what you can do whithin an initializer, in particular you can call <code>super</code> whenever, wherever, however and how often you want.</p> <p>BTW: since <code>initialize</code> and <code>new</code> are just normal methods, there is no reason why they need to be called <code>initialize</code> and <code>new</code>. That's only a convention, although a pretty strong one, since it is embodied in the core library. In your case, you want to write a collection class, and it is quite customary for a collection class to offer an alternative factory method called <code>[]</code>, so that I can call <code>List[1, 2, 3]</code> instead of <code>List.new(1, 2, 3)</code>.</p> <p>Just as a side note: one obvious advantage of using normal methods for object construction is that you can construct instances of anonymous classes. This is not possible in Java, for absolutely no sensible reason whatsoever. The only reason why it doesn't work is that the constructor has the same name as the class, and anonymous classes don't have a name, ergo there cannot be a constructor.</p> <p>Although I am not quite sure why you would need to run anything before object creation. Unless I am missing something, shouldn't a list basically be</p> <pre><code>class List def initialize(head=nil, *tail) @head = head @tail = List.new(*tail) unless tail.empty? end end </code></pre> <p>for a Lisp-style cons-list or </p> <pre><code>class List def initialize(*elems) elems.map! {|el| Element.new(el)} elems.zip(elems.drop(1)) {|prv, nxt| prv.instance_variable_set(:@next, nxt)} @head = elems.first end class Element def initialize(this) @this = this end end end </code></pre> <p>for a simple linked list?</p> http://stackoverflow.com/questions/1848052/opening-router-ports-by-upnp-in-ruby/1848108#1848108 2 Answer by Jörg W Mittag for Opening router ports by UPnP in Ruby Jörg W Mittag 2009-12-04T16:32:36Z 2009-12-04T16:32:36Z <p>This is a Seattle.rb project. Somehow they have re-organized their homepage. The correct link is now <a href="http://SeattleRb.RubyForge.Org/UPnP/" rel="nofollow">http://SeattleRb.<strong>RubyForge.</strong>Org/UPnP/</a> instead of just <a href="http://SeattleRb.Org/UPnP/" rel="nofollow">http://SeattleRb.Org/UPnP/</a></p> <p>You can find all the UPnP projects <a href="http://SeattleRb.Org/" rel="nofollow">on the Seattle.rb homepage</a> or on the <a href="http://SeattleRb.RubyForge.Org/" rel="nofollow">Seattle.rb RubyForge page</a>, near the bottom of the page, with links to their RDocs.</p> http://stackoverflow.com/questions/1847164/mercurial-maintaining-visual-studio-2005-and-2008-branches/1847792#1847792 0 Answer by Jörg W Mittag for Mercurial: Maintaining Visual studio 2005 and 2008 branches Jörg W Mittag 2009-12-04T15:41:46Z 2009-12-04T15:41:46Z <p>Instead of solving the problem you could try to make it go away: try <a href="http://IndustriousOne.Com/premake/" rel="nofollow">premake</a>.</p> <p>Premake is pre-build system (as the name implies it is intended to run pre-make or pre-MSBuild if you will). You describe your project <em>once</em> in a declarative internal DSL built on top of the <a href="http://Lua.Org/" rel="nofollow">Lua scripting language</a> and premake can automatically generate solutions and projects for VS2008, 2005, 2003 and 2002, MonoDevelop, SharpDevelop, Code::Blocks, CodeLite or a GNU Makefile for either Unix, Cygwin or MinGW. It currently supports building C++, C and C# projects, including cross-compiling for 32/64 Bit, OSX Universal Binaries, PlayStation 3 and XBox 360.</p> <p>The configuration language is <a href="http://IndustriousOne.Com/basic-script/" rel="nofollow">very clean and declarative</a>. However, being built as an internal DSL on top of Lua, you also have the full support of a very powerful, beautiful, expressive (and most importantly Turing-complete) scripting language at your fingertips. Both the structure and the terminology of the configuration language are directly based on Visual Studio: it talks about <a href="http://IndustriousOne.Com/solutions-and-projects/" rel="nofollow">solutions, projects</a>, <a href="http://IndustriousOne.Com/configurations-0/" rel="nofollow">configurations</a> and <a href="http://IndustriousOne.Com/platforms/" rel="nofollow">platforms</a>.</p> <p>The premake tool itself is <a href="http://IndustriousOne.Com/premake/download/" rel="nofollow">distributed as just a single .exe</a> which includes the Lua interpreter, Lua standard library and of course the premake script itself. It has absolutely no external dependencies, does not write a configuration file nor writes or even just reads the registry.</p> <p>All you need to do is to translate the VS2008 solution into premake <em>once</em> by hand.</p> http://stackoverflow.com/questions/1846689/gem-cmd-from-a-ruby-script/1846707#1846707 0 Answer by Jörg W Mittag for gem cmd from a ruby script Jörg W Mittag 2009-12-04T12:36:50Z 2009-12-04T12:36:50Z <p>RubyGems is actually a library, the <code>gem</code> commandline tool is only a small wrapper around that library. You can do anything you can do with the commandline tool from that library (and indeed some things you can't do with the commandline tool).</p> <p>However, the library API is not as well documented as the commandline tool's parameters. There <em>is</em> a testuite, though.</p> http://stackoverflow.com/questions/1846556/programming-languages-for-writing-gui-application/1846685#1846685 3 Answer by Jörg W Mittag for Programming Languages for writing GUI application Jörg W Mittag 2009-12-04T12:32:24Z 2009-12-04T12:32:24Z <ul> <li>Every programming language (or more precisely every programming language execution engine) which can interface with native code can be used to implement GUI applications. This alone already includes pretty much every single programming language ever created in the last 60 years, including but not limited to C, C++, Objective-C, Objective-C++, D, Eiffel, Fortran, Pascal, Modula, Oberon, Go, Haskell, OCaml, Python, Ruby, Perl, PHP, Tcl, C#, VB.NET, Java, Scala, F#, Newspeak, Animorphic Smalltalk, Eiffel, Lua, Potion, Falcon, Dao, Nimrod, Genie, Vala, Scheme, CommonLisp, Cobol.</li> <li>Every programming language that runs on the Java platform can be used to write GUI applications. This includes about 400 languages that we publicly know about, plus who knows how many languages that are not publicly known. This list includes Java, Scala, NetRexx, Python, Ruby, PHP, ECMAScript, Groovy, Fan, Clojure, JavaFX, AspectJ, Fortress, Cobol.</li> <li>Every programming language that runs on the CLI and/or .NET platform (hint: .NET is not a programming language, it's a marketing term for a combination of a CIL execution engine, CLI implementation, CTS implementation, BCL implementation and a framework) can be used to write GUI applications. This includes about 200 languages that we publicly know about. This list includes C#, VB.NET, F#, Eiffel.NET, Spec#, Sing#, X#, Polyphonic C#, Cω, Ruby, Python, Perl, Tcl, PHP, C++, SABLE, Scheme, CommonLisp, Clojure, Fan, Scala, Cobol, Cobra, Perl.</li> <li>A lot of programming languages bring their <em>own</em> GUI framework for writing GUI applications, for example Tcl, Newspeak, Dolphin Smalltalk, Squeak Smalltalk, Delphi, Rebol.</li> </ul> <p>And that's just the ones that I could think of off the top of my head.</p> http://stackoverflow.com/questions/1845065/pathfinding-conditions-def/1845703#1845703 0 Answer by Jörg W Mittag for pathfinding conditions def Jörg W Mittag 2009-12-04T08:52:20Z 2009-12-04T08:52:20Z <p>Here's a couple of hints regarding your code:</p> <ul> <li><code>solve_maze</code> takes four parameters, but you are only passing one in the initial invocation (<code>solve_maze(maze)</code>)</li> <li>All your objects are either strings or arrays of strings, but you are constantly doing integer math with them</li> <li>You are constantly using <code>self</code> to refer to the current object, but you don't even <em>have</em> a current object, since you are writing in a procedural style, not an object-oriented one. [Note: I know that in Ruby, you <em>always</em> have a current object, which in this case is the anonymous top-level object.]</li> </ul> <p>Here's a couple of more hints regarding your workflow:</p> <ul> <li>Forget about the while loop. Why would you want the possibility of solving multiple mazes when you cannot even solve one at the momen? You can always add that in later.</li> <li>Forget about reading the maze from a file, just hardcode it in a string. You can always add that in later.</li> <li>In fact, forget about parsing the string altogether, just hardcode the maze in a datastructure that is convenient for you to deal with. I'd suggest a two-dimensional array of Booleans. You can always ... well, you get the drift.</li> <li>Start with a simple maze. Like, <em>really</em> simple. Like, one tile where you already start up at the destination. Then move on to a maze with two tiles where the destination is right next to the start.</li> </ul> <p>Examples:</p> <pre><code>solvable = [ [false, false, false, false, false, false, false, false, false, false], [false, true, true, true, true, true, true, true, true, false], [false, false, false, false, false, false, true, true, true, false], [false, true, true, true, true, true, true, true, true, false], [false, false, false, false, false, false, false, false, false, false] ] unsolvable = [ [false, false, false, false, false, false, false, false, false, false], [false, true, true, true, true, true, true, true, true, false], [false, false, false, false, false, false, false, false, false, false], [false, true, true, true, true, true, true, true, true, false], [false, false, false, false, false, false, false, false, false, false] ] start = [1, 1] finish = [3, 1] </code></pre> <p>This way, you can simply use <code>if</code> to check whether the path is free or not, since empty tiles are <code>true</code> and walls are <code>false</code></p> <p>Here's a neat trick: in Ruby, everything which is not either <code>false</code> or <code>nil</code> is true. This means, you can put everything you want (except <code>false</code> or <code>nil</code>, of course) in there instead of <code>true</code> and the <code>if</code> trick will still work. For example, you can encode the distance information that the algorithm needs directly in the maze itself. Just put some <em>really</em> big number instead of <code>true</code> in there, and <code>0</code> into the finish:</p> <pre><code>infin = 1.0/0.0 solvable = [ [false, false, false, false, false, false, false, false, false, false], [false, infin, infin, infin, infin, infin, infin, infin, infin, false], [false, false, false, false, false, false, infin, infin, infin, false], [false, 0 , infin, infin, infin, infin, infin, infin, infin, false], [false, false, false, false, false, false, false, false, false, false] ] unsolvable = [ [false, false, false, false, false, false, false, false, false, false], [false, infin, infin, infin, infin, infin, infin, infin, infin, false], [false, false, false, false, false, false, false, false, false, false], [false, 0 , infin, infin, infin, infin, infin, infin, infin, false], [false, false, false, false, false, false, false, false, false, false] ] start = [1, 1] finish = [3, 1] </code></pre> <p>However, start simple:</p> <pre><code>maze = [[0]] start = [0, 0] finish = [0, 0] maze = [[0, infin]] start = [0, 1] finish = [0, 0] maze = [ [false, false, false], [false, infin, false], [false, 0 , false], [false, false, false] ] start = [1, 1] finish = [2, 1] maze = [ [false, false, false], [false, infin, false], [false, infin, false], [false, 0 , false], [false, false, false] ] start = [1, 1] finish = [3, 1] </code></pre> http://stackoverflow.com/questions/1842738/ruby-threading-deadlocks/1843628#1843628 1 Answer by Jörg W Mittag for Ruby threading deadlocks Jörg W Mittag 2009-12-03T22:55:14Z 2009-12-03T23:16:38Z <p>Which Ruby 1.9 implementation are you using? YARV cannot run Ruby Threads in parallel. At the moment, there is no production-ready implementation of Ruby 1.9 which can run threads in parallel. JRuby can threads in parallel, but its Ruby 1.9 implementation is not quite complete yet. (Although it <em>is</em> stable, so if all the features you need are there, you can use it.)</p> http://stackoverflow.com/questions/1843442/lamson-in-google-app-engine/1843754#1843754 1 Answer by Jörg W Mittag for Lamson in Google App Engine? Jörg W Mittag 2009-12-03T23:15:44Z 2009-12-03T23:15:44Z <p>I have no experience in using Lamson on GAE. However, one important difference between GAE and traditional LAMP hosting is the storage backend and since Lamson <em>already</em> has support for a dozen different storage backends, the interfaces should be well-defined and narrow, so that adding a GAE backend should be rather trivial. (More precisely, Lamson simply doesn't <em>care</em> about the storage backend.)</p> http://stackoverflow.com/questions/1842504/complete-a-ruby-array/1843288#1843288 0 Answer by Jörg W Mittag for Complete a Ruby Array Jörg W Mittag 2009-12-03T22:06:41Z 2009-12-03T22:06:41Z <p>This is a variant of <a href="http://stackoverflow.com/questions/1842504/#1842728">Teh486's solution</a>:</p> <pre><code>ary.zip([nil]+ary.take(ary.length-1), ary.drop(1)).map {|triple| triple.compact.first } </code></pre> http://stackoverflow.com/questions/1840979/given-disk-is-slow-and-multiple-cores-does-on-the-fly-decompression-make-sense-fo/1841549#1841549 3 Answer by Jörg W Mittag for Given disk is slow and multiple cores does on the fly decompression make sense for performance? Jörg W Mittag 2009-12-03T17:32:56Z 2009-12-03T17:32:56Z <p>Yes! In fact, processors are so ridiculously fast now that it even makes sense for memory. (IBM does this, I believe.) I believe, some of the current big iron machines even do compression on the CPU cache.</p> http://stackoverflow.com/questions/1840488/ruby-operator-precedence-and/1840995#1840995 2 Answer by Jörg W Mittag for Ruby - Operator precedence ? And/&& Jörg W Mittag 2009-12-03T16:15:25Z 2009-12-03T16:15:25Z <p>I don't quite understand the question you are asking. I mean, you have <em>already</em> given the answer yourself, <em>before</em> even asking the question: <code>&amp;&amp;</code> binds tighter than <code>=</code> while <code>and</code> binds less tightly than <code>=</code>.</p> <p>So, in the first case, the expression is evaluated as follows:</p> <pre><code>( a=f(2) ) and ( b=f(4) ) ( a= 2 ) and ( b=f(4) ) 2 and ( b=f(4) ) # a=2 2 and ( b= 4 ) # a=2 2 and 4 # a=2; b=4 4 # a=2; b=4 </code></pre> <p>In the second case, the evaluation is as follows:</p> <pre><code>a = ( f(2) &amp;&amp; ( b=f(4) ) ) a = ( 2 &amp;&amp; ( b=f(4) ) ) a = ( 2 &amp;&amp; ( b= 4 ) ) a = ( 2 &amp;&amp; 4 ) # b=4 a = 4 # b=4 4 # b=4; a=4 </code></pre> http://stackoverflow.com/questions/1830420/is-it-possible-to-compare-private-attributes-in-ruby/1832634#1832634 7 Answer by Jörg W Mittag for Is it possible to compare private attributes in Ruby? Jörg W Mittag 2009-12-02T12:31:40Z 2009-12-02T12:31:40Z <p>There have already been several good answers to your immediate problem, but I have noticed some other pieces of your code that warrant a comment. (Most of them trivial, though.)</p> <p>Here's four trivial ones, all of them related to coding style:</p> <ol> <li>Indentation: you are mixing 4 spaces for indentation and 5 spaces. It is generally better to stick to just <em>one</em> style of indentation, and in Ruby that is generally 2 spaces.</li> <li>If a method doesn't take any parameters, it is customary to leave off the parantheses in the method definition.</li> <li>Likewise, if you send a message without arguments, the parantheses are left off.</li> <li>No whitespace after an opening paranthesis and before a closing one, except in blocks.</li> </ol> <p>Anyway, that's just the small stuff. The big stuff is this:</p> <pre><code>def new @a = 1 end </code></pre> <p>This does <em>not</em> do what you think it does! This defines an <em>instance</em> method called <code>X#new</code> and <em>not</em> a class method called <code>X.new</code>!</p> <p>What you are calling here:</p> <pre><code>x = X.new </code></pre> <p>is a <em>class</em> method called <code>new</code>, which you have inherited from the <code>Class</code> class. So, you never call your new method, which means <code>@a = 1</code> never gets executed, which means <code>@a</code> is always undefined, which means it will always evaluate to <code>nil</code> which means the <code>@a</code> of <code>self</code> and the <code>@a</code> of <code>other</code> will always be the same which means <code>m</code> will always be <code>true</code>!</p> <p>What you probably want to do is provide a constructor, except Ruby doesn't <em>have</em> constructors. Ruby only uses factory methods.</p> <p>The method you <em>really</em> wanted to override is the <em>instance</em> method <code>initialize</code>. Now you are probably asking yourself: "why do I have to override an <em>instance</em> method called <code>initialize</code> when I'm actually calling a <em>class</em> method called <code>new</code>?"</p> <p>Well, object construction in Ruby works like this: object construction is split into two phases, <em>allocation</em> and <em>initialization</em>. Allocation is done by a public class method called <code>allocate</code>, which is defined as an instance method of class <code>Class</code> and is generally <em>never</em> overriden. It just allocates the memory space for the object and sets up a few pointers, however, the object is not really usable at this point.</p> <p>That's where the initializer comes in: it is an instance method called <code>initialize</code>, which sets up the object's internal state and brings it into a consistent, fully defined state which can be used by other objects.</p> <p>So, in order to fully create a new object, what you need to do is this:</p> <pre><code>x = X.allocate x.initialize </code></pre> <p>[Note: Objective-C programmers may recognize this.]</p> <p>However, because it is too easy to forget to call <code>initialize</code> and as a general rule an object should be fully valid after construction, there is a convenience factory method called <code>Class#new</code>, which does all that work for you and looks something like this:</p> <pre><code>class Class def new(*args, &amp;block) obj = alloc obj.initialize(*args, &amp;block) return obj end end </code></pre> <p>[Note: actually, <code>initialize</code> is private, so reflection has to be used to circumvent the access restrictions like this: <code>obj.send(:initialize, *args, &amp;block)</code>]</p> <p>Lastly, let me explain what's going wrong in your <code>m</code> method. (The others have already explained how to solve it.)</p> <p>In Ruby, there is no way (note: in Ruby, "there is no way" actually translates to "there is always a way involving reflection") to access an instance variable from outside the instance. That's why it's called an instance variable after all, because it belongs to the instance. This is a legacy from Smalltalk: in Smalltalk there are no visibility restrictions, <em>all</em> methods are public. Thus, instance variables are the <em>only</em> way to do encapsulation in Smalltalk, and, after all, encapsulation is one of the pillars of OO. In Ruby, there <em>are</em> visibility restrictions (as we have seen above, for example), so it is not strictly necessary to hide instance variables for that reason. There is another reason, however: the Uniform Access Principle.</p> <p>The UAP states that how to <em>use</em> a feature should be independent from how the feature is <em>implemented</em>. So, accessing a feature should always be the same, i.e. uniform. The reason for this is that the author of the feature is free to change how the feature works internally, without breaking the users of the feature. In other words, it's basic modularity.</p> <p>This means for example that getting the size of a collection should always be the same, regardless of whether the size is stored in a variable, computed dynamically every time, lazily computed the first time and then stored in a variable, memoized or whatever. Sounds obvious, but e.g. Java gets this wrong:</p> <pre><code>obj.size # stored in a field </code></pre> <p>vs.</p> <pre><code>obj.getSize() # computed </code></pre> <p>Ruby takes the easy way out. In Ruby, there is only <em>one</em> way to use a feature: sending a message. Since there is only one way, access is trivially uniform.</p> <p>So, to make a long story short: you simply can't access another instance's instance variable. you can only interact with that instance via message sending. Which means that the other object has to either provide you with a method (in this case at least of <code>protected</code> visibility) to access its instance variable, or you have to violate that object's encapsulation (and thus lose Uniform Access, increase coupling and risk future breakage) by using reflection (in this case <code>instance_variable_get</code>).</p> <p>Here it is, in all its glory:</p> <pre><code>#!/usr/bin/env ruby class X def initialize(a=1) @a = a end def m(other) @a == other.a end protected attr_reader :a end x, y = X.new, X.new require 'minitest/spec' require 'minitest/autorun' describe 'X#m' do it 'evaluates to true, if the ivars @a of self and other are equal' do x.m(y).must_equal true X.new('foo').m(X.new('foo')).must_equal true end end </code></pre> <p>Or alternatively:</p> <pre><code>class X def m(other) @a == other.instance_variable_get(:@a) end end </code></pre> <p>Which one of those two you chose is a matter of personly taste, I would say. The <code>Set</code> class in the standard library uses the reflection version, although <em>it</em> uses <code>instance_eval</code> instead:</p> <pre><code>class X def m(other) @a == other.instance_eval { @a } end end </code></pre> <p>(I have no idea why. Maybe <code>instance_variable_get</code> simply didn't exist when <code>Set</code> was written. Ruby is going to be 17 years old in February, some of the stuff in the stdlib is from the very early days.)</p> http://stackoverflow.com/questions/1810028/how-to-print-1-to-100-without-any-looping-using-c/1810722#1810722 3 Answer by Jörg W Mittag for How to print 1 to 100 without any looping using C# Jörg W Mittag 2009-11-27T21:42:50Z 2009-11-27T21:59:41Z <pre><code>using IronRuby; class Print1To100WithoutLoopsDemo { static void Main() { Ruby.CreateEngine().Execute("(1..100).each {|i| puts i}"); } } </code></pre> <p>Hey, why not?</p> http://stackoverflow.com/questions/1807056/why-cucumber-hook-methods-arent-lowercase/1807331#1807331 3 Answer by Jörg W Mittag for Why Cucumber hook methods aren't lowercase? Jörg W Mittag 2009-11-27T08:04:48Z 2009-11-27T08:04:48Z <ol> <li>The <code>Before</code>, <code>After</code>, <code>AfterStep</code>, <code>World</code> etc. Ruby hooks are uppercase because the <code>Given</code>, <code>When</code>, <code>Then</code> Ruby hooks are uppercase.</li> <li>The <code>Given</code>, <code>When</code>, <code>Then</code> Ruby hooks are uppercase because the <code>Given</code>, <code>When</code>, <code>Then</code> Gherkin keywords are uppercase.</li> <li>The <code>Given</code>, <code>When</code>, <code>Then</code> Gherkin keywords are uppercase because the Gherkin language is intended to match the standard template for <a href="http://DanNorth.Net/introducing-bdd/" rel="nofollow">BDD User Stories</a>.</li> </ol> http://stackoverflow.com/questions/1798817/why-is-the-center-tag-deprecated-in-html/1800763#1800763 1 Answer by Jörg W Mittag for Why is the <center> tag deprecated in HTML? Jörg W Mittag 2009-11-25T23:52:34Z 2009-11-25T23:52:34Z <p>Food for thought: what would a text-to-speech synthesizer do with <code>&lt;center&gt;</code>?</p> http://stackoverflow.com/questions/1793511/is-there-a-programming-language-with-built-in-state-machine-construct/1795204#1795204 1 Answer by Jörg W Mittag for Is there a programming language with built-in state machine construct? Jörg W Mittag 2009-11-25T07:23:23Z 2009-11-25T07:23:23Z <p><a href="http://CompLang.Org/ragel/" rel="nofollow">Ragel</a> is a state machine language. IOW, it's not a language that <em>also</em> supports state machines, it's a language that <em>only</em> supports state machines. Which obviously means that it's not Turing-complete, but who needs that?</p> <p>More precisely, Ragel is a state machine compiler, which takes a description of a state machine in a regexp-like language and generates an implementation of that state machine in C, C++, Objective-C, D, Java or Ruby. (Think <code>yacc</code> but for state machines instead of LALR(1) table parsers.) The primary purpose of Ragel is parsing binary protocols (such as networking protocols or also on-disk file formats), but it can just as well be used for text.</p> <p>One famous example of using Ragel is the Mongrel webserver for Ruby: its HTTP kernel is written in Ragel, which makes it <em>extremely</em> fast and secure. The HTTP kernel is so good in fact, that it has been reused a number of times in different applications: Thin, Unicorn and Rainbows are also webservers, and in fact direct competitors to Mongrel. Ebb is a reverse HTTP proxy. RFuzz is a fuzz testing tool for web applications. Also, some security tools use it.</p> <p>Ragel also allows embedding code in the host language into the state machine, thus making it Turing-complete, and able to not only <em>recognize</em> but also <em>interpret</em> protocols.</p> <p>In general, <em>every</em> language with support for advanced user-defined control-flow via either coroutines (e.g. Lua) or continuations (e.g. Scala) or <code>GOTO</code> (e.g. PHP) or proper tail calls (e.g. Scheme) can be used to easily <em>implement</em> state machines. (Generators (Python) aka iterators (C#), which are basically "crappy coroutines" might or might not work, depending on your definition of "work".) And any language which has flexible syntax (e.g. Ruby) or supports metasyntactic abstraction (e.g. Clojure) can be used to <em>describe</em> state machines. (Support for non-ASCII identifiers helps, too, so that you can use actual arrows for your state machine.)</p> <p>Which means that if you <em>combine</em> the two, and use a language that supports <em>both</em> tail calls <em>and</em> metasyntactic abstraction, you get very nice state machines, <em>without</em> requiring native language support. Shriram Krishnamurthi gave a now (in)famous talk titled "The Swine before Perl" at the inaugural Lightweight Languages Conference, in which he demonstrated an FSM implementation in Scheme. (Here are the <a href="http://www.ai.mit.edu/projects/dynlangs/ll1/shriram-talk.ppt" rel="nofollow">slides</a>, an <a href="http://www.cs.brown.edu/~sk/Publications/Talks/SwineBeforePerl/audio.mp3" rel="nofollow">audio recording</a> and a <a href="http://www.cs.brown.edu/~sk/Publications/Papers/Published/sk-automata-macros/" rel="nofollow">paper explaining the code</a>). The code itself is a 26 line (very short lines, actually) macro, that allows you to write code like this:</p> <pre><code>(define my-regex (automaton init [init : (c → more)] [more : (a → more) (d → more) (r → end)] [end : accept])) </code></pre> <p>This is a specification of the state machine corresponding to the regular expression <code>c(a|d)*r</code>. And it is not only a specification, but also a runnable program <em>implementing</em> that state machine.</p> <p>I can call it like this:</p> <pre><code>(my-regex '(c a d a d d r)) </code></pre> <p>And in this case get the result <code>#t</code> (which is Scheme-speak for <code>true</code>).</p> http://stackoverflow.com/questions/1794448/alternative-to-svn-merge/1794658#1794658 1 Answer by Jörg W Mittag for alternative to SVN Merge Jörg W Mittag 2009-11-25T04:36:36Z 2009-11-25T04:36:36Z <p>So, doing it manually is too hard. And you don't want to use software.</p> <p>Then ...</p> <ol> <li>what <em>do</em> you want to use?</li> <li>If you don't want to use software, why are you asking on a programming website?</li> </ol> http://stackoverflow.com/questions/1921638/a-z2-4-not-limiting-to-between-2-4-characters/1921651#1921651 Comment by Jörg W Mittag on [A-Z]{2,4} not limiting to between 2 & 4 characters Jörg W Mittag 2009-12-17T14:00:23Z 2009-12-17T14:00:23Z No. Ruby doesn't have Perl Regexps, it has Ruby Regexps. More precisely: Ruby 1.8 has Ruby 1.8 Regexps, and Ruby 1.9 has Ruby 1.9 Regexps, and the two are quite different. (Ruby 1.9 is much more powerful.) Ruby 1.8's Regexps are a totally independent implementation, Ruby 1.9's is based on a heavily modified fork of the Oniguruma Regexp engine. Neither Ruby 1.8 nor Oniguruma are based on anything, except of course that their respective authors know the Friedl book (Mastering Regular Expressions), PCRE, Perl, POSIX BRE and ERE and so on. http://stackoverflow.com/questions/1920805/python-ruby-haskell-do-they-provide-true-multithreading Comment by Jörg W Mittag on Python, Ruby, Haskell - Do they provide true multithreading? Jörg W Mittag 2009-12-17T13:51:08Z 2009-12-17T13:51:08Z The <i>whole reason</i> why BEAM is so incredibly scalable, is because it does not rely on the heavyweight, bloated, slow OS threads but implements its own. For example, Linux threads are 4 or 8 KiBytes on 32 Bit machines and 8 or 16 KiBytes on 64 Bit machines. Windows NT threads are 12 KiBytes, I believe. BEAM's are around 300 Bytes. 32 Bit Linux can comfortably handle tens of thousands of threads. Around 800000 it would simply run out of memory, at least on a 32 Bit system. I've seen BEAM running on Linux handle 1 million threads on a not very beefy netbook, while giving a presentation. http://stackoverflow.com/questions/1920805/python-ruby-haskell-do-they-provide-true-multithreading Comment by Jörg W Mittag on Python, Ruby, Haskell - Do they provide true multithreading? Jörg W Mittag 2009-12-17T13:45:32Z 2009-12-17T13:45:32Z Now that you have updated your question, I am even <i>more</i> confused by your distinction between &quot;true&quot; and &quot;false&quot; multithreading. The BEAM Erlang VM, for example, schedules Erlang threads across multiple CPUs and multiple cores. So, according to your definition, BEAM supports true multithreading. But, BEAM <i>does not</i> rely on native OS capabilities in any way; in fact, it can actually run without any OS at all, on the bare hardware. Thus, according to your definition, BEAM <i>does not</i> support true multithreading, rather it has false multithreading. Which is it? That definition is useless. http://stackoverflow.com/questions/1920805/python-ruby-haskell-do-they-provide-true-multithreading/1921244#1921244 Comment by Jörg W Mittag on Python, Ruby, Haskell - Do they provide true multithreading? Jörg W Mittag 2009-12-17T13:06:46Z 2009-12-17T13:06:46Z Erlang is dynamically typed. http://stackoverflow.com/questions/1920805/python-ruby-haskell-do-they-provide-true-multithreading/1920843#1920843 Comment by Jörg W Mittag on Python, Ruby, Haskell - Do they provide true multithreading? Jörg W Mittag 2009-12-17T13:04:55Z 2009-12-17T13:04:55Z What does that Wikipedia quote have to do with true multithreading? http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910322#1910322 Comment by Jörg W Mittag on Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-16T01:03:58Z 2009-12-16T01:03:58Z Ulterior Reference Counting was designed in 2003 by the same people who designed Immix in 2007, so I guess that the latter probably superseded the former. URC was specifically designed so that it can be combined with other strategies, and in fact the URC paper explicitly mentions that URC is only a stepping stone towards a collector that combines the advantages of tracing and reference counting. I guess Immix is that collector. Anyway, the Recycler is a <i>pure</i> reference counting collector, which nonetheless can detect and collect cycles: <a href="http://WWW.Research.IBM.Com/people/d/dfb/recycler.html" rel="nofollow">WWW.Research.IBM.Com/people/d/&hellip;</a> http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910322#1910322 Comment by Jörg W Mittag on Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-16T00:52:15Z 2009-12-16T00:52:15Z I got mixed up a bit: the Recycler is (was?) implemented in Jalapeno, the algorithm I was thinking about, which is (was?) implemented in Jikes is <i>Ulterior Reference Counting</i>. Atlhough, of course, saying that Jikes uses this or that garbage collector is quite futile, given that Jikes and especially MMtk are specifically designed to rapidly develop and test different garbage collectors within the same JVM. http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910322#1910322 Comment by Jörg W Mittag on Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-16T00:06:13Z 2009-12-16T00:06:13Z The Jikes RVM has a reference counting garbage collector, for example. Although that particular algorithm (cleverly named <i>The Recycler</i>) <i>can</i> detect and collect cycles. http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910228#1910228 Comment by Jörg W Mittag on Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-15T23:21:15Z 2009-12-15T23:21:15Z Reference counting <i>is</i> one of the two main implementation strategies for garbage collection. (The other is tracing.) http://stackoverflow.com/questions/1910194/garbage-collection-in-java-and-circular-references/1910322#1910322 Comment by Jörg W Mittag on Garbage Collection in Java and Circular References Jörg W Mittag 2009-12-15T23:20:31Z 2009-12-15T23:20:31Z What you are describing is a tracing collector. There are other kinds of collectors. Of particular interest for this discussion are reference counting collectors, which <i>do</i> tend to have trouble with cycles. http://stackoverflow.com/questions/1896555/how-to-open-a-file-and-search-for-a-word-ruby Comment by Jörg W Mittag on How to open a file and search for a word [Ruby]? Jörg W Mittag 2009-12-13T14:40:53Z 2009-12-13T14:40:53Z @Mitch: He doesn't need to do a search, because he has actually asked esentially the exact same question twice before. http://stackoverflow.com/questions/1896237/how-to-open-a-web-page-and-search-for-a-word-in-ruby Comment by Jörg W Mittag on How to open a web page and search for a word in ruby Jörg W Mittag 2009-12-13T14:37:02Z 2009-12-13T14:37:02Z You asked that exact same question three days ago. Unless you tell us why the answers of that question don't satisfy your requirements, chances are you will get the exact same answers. http://stackoverflow.com/questions/1896366/javascript-2-0-classes/1896387#1896387 Comment by Jörg W Mittag on Javascript 2.0 classes Jörg W Mittag 2009-12-13T14:33:35Z 2009-12-13T14:33:35Z There were some good ideas in it. But it had 3 major problems: 1) it simply wasn't JavaScript. It might have been an nice <i>new</i> language, but it wasn't JavaScript. 2) Simply grabbing every single feature ever invented from every language ever created and dumping them into one language is <i>not</i> how you design a good language. 3) You don't do original research in an industry standards body. Gradual typing is cool, but it is <i>still</i> an open research problem in 2010. You simply don't put an open research problem into the most widely used programming language on the planet. http://stackoverflow.com/questions/1896128/comparing-two-inherited-objects-ruby/1896160#1896160 Comment by Jörg W Mittag on Comparing two inherited objects Ruby Jörg W Mittag 2009-12-13T12:00:03Z 2009-12-13T12:00:03Z <code>super</code> without arguments supplies the same arguments as the original method was called with. There is not need to explicitly call <code>super(other)</code>, just plain <code>super</code> is enough. http://stackoverflow.com/questions/1896128/comparing-two-inherited-objects-ruby Comment by Jörg W Mittag on Comparing two inherited objects Ruby Jörg W Mittag 2009-12-13T11:58:54Z 2009-12-13T11:58:54Z I provided a very detailed answer to that particular question here: <a href="http://StackOverflow.Com/questions/1830420/is-it-possible-to-compare-private-attributes-in-ruby/1832634/#1832634" rel="nofollow" title="is it possible to compare private attributes in ruby">StackOverflow.Com/questions/1830420/&hellip;</a> . It also applies to your question.