Jörg W Mittag
|
Registered User
|
Not a software developer in the sense that I write software as part of my job or otherwise get paid to do so. Also, not a developer in the sense that I write software for others. I write software for myself, often for no other reason than that I want to. (What I call recreational programming.) My current go-to language is Ruby, but I'm interested in all sorts of other languages as well: Newspeak, Self, Io, Reia, Cobra, Fortress and Sapphire, and many more. |
|
14m |
revised |
Is it possible to compare private attributes in Ruby? Fixed syntax error (colon) and made code more idiomatic (using attr_reader) |
|
16m |
answered | Is it possible to compare private attributes in Ruby? |
|
Nov 28 |
accepted | Generating documentation for Ruby |
|
Nov 28 |
comment |
Closures in Java - syntax differences between the three major proposals? For example: the new closure proposal isn't even a closure! Isn't that much more important than whether an expression lambda is written #(int x, int y) x+y or #(int x, int y) (x+y) or #(int x, int y) {x+y}`or `function(int x, int y) {x+y}? |
|
Nov 28 |
comment |
Closures in Java - syntax differences between the three major proposals? Out of curiosity: why are you so interested in the syntactic differences between the proposals? Aren't the semantic differences more important? I mean, what benefits do you gain from, say, using square brackets vs. curly braces as closure delimiters when there is some semantic limitation that prohibits you from using using closures in the first place? |
|
Nov 27 |
revised |
How to print 1 to 100 without any looping using C# deleted 32 characters in body |
|
Nov 27 |
answered | How to print 1 to 100 without any looping using C# |
|
Nov 27 |
accepted | Why Cucumber hook methods aren’t lowercase? |
|
Nov 27 |
answered | Why Cucumber hook methods aren’t lowercase? |
|
Nov 25 |
answered | Why is the <center> tag deprecated in HTML? |
|
Nov 25 |
comment |
Closures in Java - syntax differences between the three major proposals? @Jason S: just this week Sun made a surprise announcement that Closures will be in Java 7, but it's gonna be a new version, not one of the three current proposals. |
|
Nov 25 |
accepted | Is there a programming language with built-in state machine construct? |
|
Nov 25 |
comment |
Concurrent debugging / unit testing alternitive to MS CHESS StackOverflow.Com/questions/394900/… might be the question you are looking for. |
|
Nov 25 |
answered | Is there a programming language with built-in state machine construct? |
|
Nov 25 |
comment |
Is there a programming language with built-in state machine construct? This is probably not what the OP is looking for. He was asking about FSMs not ASMs. ASMs are a completely different beast, they are a formal specification mechanism for proving theorems about programs. And, BTW, Microsoft employs several of the leading scientists in program verification, including Tony Hoare. (Which is not surprising considering that one bug in Windows could basically bring down the world economy.) So, it's not actually that surprising that this comes out of Microsoft. Also note that this is Microsoft Research, not Microsoft Corp, which is a completely different animal. |
|
Nov 25 |
answered | alternative to SVN Merge |
|
Nov 25 |
answered | Generating documentation for Ruby |
|
Nov 25 |
comment |
gem update sqlite3-ruby failed on Windows 7 No. gem install sqlite3-ruby installs the sqlite3-ruby RubyGem. The SQLite3-Ruby RubyGem provides access to SQLite3, but in order to do that, SQLite3 obviously has to be installed. |
|
Nov 25 |
answered | quick/fast integer multiplication in ruby? |
|
Nov 24 |
accepted | Regular expression in Ruby to convert uppercase title into lowercase |
|
Nov 24 |
answered | Regular expression in Ruby to convert uppercase title into lowercase |
|
Nov 24 |
accepted | Ruby bindings for a server-side javascript engine ? |
|
Nov 24 |
answered | gem update sqlite3-ruby failed on Windows 7 |
|
Nov 24 |
comment |
Is it okay to run for loops in functional test methods? Especially higher-level functional tests, which are not only supposed to be readable by developers but also by users, who might have absolutely no fricking clue what a "loop" is. |
|
Nov 24 |
answered | Ruby bindings for a server-side javascript engine ? |
|
Nov 24 |
answered | instance method.. in ruby module? |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming Re 4: I'm pretty sure, anybody who has ever used the Lisp Machine IDE in the 1990s would be amazed about how crappy Eclipse and Visual Studio still are, almost 20 years later. Anyway, this has nothing to do with functional programming. How good Visual Studio is is a feature of Visual Studio, not imperative programming. In fact, the F# Visual Studio plugin has pretty much the exact same features as the C# and VB.NET plugins. And where there is functionality missing, it has nothing to with functional programming and everything to do with the amount of money Microsoft has allocated for F# v C#. |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming Re 2 cont'd: the GHC Haskell compiler, ATS, Scala and O'Caml seem to consistently perform comparable to Java. The SISAL programming language was known to consistently perform within 20% of hand-optimized C and Fortran on single-processor machines and outperform them on multiprocessor Cray supercomputers, in one case, a FFT routine written in SISAL running on a Cray supercomputer outperformed the FFT routine shipped by Cray and hand-optimized by their engineers. |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming Re 2: Languages cannot be slower (or faster) than another language. Languages are just abstract rules, you cannot execute them. Only implementations can be slower or faster than other implementations, but then you are no longer talking about languages. In the end, to solve the same problem you need to take the same steps, therefore the performance is going to be the same. The Supero Haskell compiler for instance produces code that runs 10% faster than hand-optimized C code compiled by GCC. Well-implemented Scheme compilers produce code that is between half as fast and twice as fast as GCC. |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming Re 1: I don't think that's true. Excel is a functional programming language, and I haven't observed it being harder to understand than, say, C, BASIC, Pascal or Python. In fact, it's probably the other way around. |
|
Nov 24 |
comment |
pitfalls/disadvantages of functional programming This has been named the Expression Problem by none other than Philip Wadler. |
|
Nov 24 |
comment |
Where can I find the first version of linux operating system? It's spelled "Minix". And you are right: Minix was specifically created so that the entire operating system could be taught in one semester in an introductory operating systems course. But make sure to get version 2, because this does no longer apply to the current version 3. Minix3 is much more complex than Minix2, as it is not designed for teaching but rather industrial real-world use. |
|
Nov 24 |
answered | Where can I find the first version of linux operating system? |
|
Nov 23 |
answered | how to view file history in GIT? |
|
Nov 23 |
comment |
GREP - finding all occurences of a string I guess the question is what's more valuable to you: wasting an hour manually looking for possible false positives, or wasting an hour getting ripped a new one by your boss because your über-clever regexp missed some crazy convoluted corner case in the Java Language Specification. |
|
Nov 23 |
accepted | How to Git merge a branch that only contains a subfolder of trunk? |
|
Nov 23 |
answered | How to Git merge a branch that only contains a subfolder of trunk? |
|
Nov 23 |
comment |
when creating a git repo that will be on the server, can I convert it to a bare repo? Or just git init --bare myrepo.git |
|
Nov 23 |
comment |
How do I split a URL into 2 parts in Ruby? As a general rule: regular expressions are for parsing strings. URIs are not strings, they are URIs. Therefore, regular expressions should never be used to parse URIs. Ruby, just like pretty much every other language on the planet, already has a URI parsing library. Re-implementing that by hand is just plain stupid. (Well, actually, Ruby's URI is not standards-compliant, so re-implementing it actually does make sense, but somebody has already done that for us: Addressable.RubyForge.Org .) |
|
Nov 22 |
answered | Generate new models and schema at runtime |
|
Nov 20 |
accepted | Easy Ruby libraries to understand for beginner |
|
Nov 20 |
comment |
How does one start a thread in Clojure? What Clojure uses in its internal runtime to implement agents, futures and whatnot is Rich Hickey's business, not mine. The fact that today the JVM version of Clojure happens to use Thread pools is completely irrelevant to the language semantics. Tomorrow Rich might change his mind and implement them as Continuations, the .NET version of Clojure might implement them as `Task`s, ClojureScript (the JavaScript version of Clojure) might implement them as HTML5 Web Workers, and a hypothetical future Erlang-hosted version might implement them as Actors. As a Clojure user, I'll never know. |
|
Nov 20 |
answered | How does one start a thread in Clojure? |
|
Nov 20 |
comment |
Ruby Regexp to extract specific elements in an XML string Please, stop spreading this meme: parsing XML with a regular expression is not "notoriously difficult and error-prone", it is simply impossible. And not impossible in the sense of "impossible to get right", but provably mathematically impossible. In fact, pretty much every CS student on the entire planet will at one time during his/her career have proven this impossibility in some homework assignment or other. |
|
Nov 20 |
answered | Easy Ruby libraries to understand for beginner |
|
Nov 19 |
revised |
Replacing characters in Ruby string according to some rule Added tests. |
|
Nov 19 |
revised |
How to get the day of year in ruby? Added example. |
|
Nov 19 |
answered | How to get the day of year in ruby? |
|
Nov 19 |
answered | Replacing characters in Ruby string according to some rule |
|
Nov 18 |
answered | What is “p” in Ruby? |
