Advertisement
Nickname
backflash
Registered since:
May 8, 2003
Short bio:
 
Home page:
http://blog.ntecs.de/
Total posts:
66

Forum posts by Michael Neumann:

5 pages [ Previous 1 2 3 4 5 Next ]
Posted in All Buzz Forum, Oct 27, 2004, 12:04 AM
After another complete rewrite of my initial prototype, and after trying out several different design choices (and asking Avi Bryant lots of questions), my web framework is now in a very good shape. And it's got a name: Wee. The core is now around 600 lines of code. The HTML related libraries put another 500 lines of code. The trickiest thing I...
Posted in Ruby Buzz Forum, Oct 27, 2004, 12:04 AM
After another complete rewrite of my initial prototype, and after trying out several different design choices (and asking Avi Bryant lots of questions), my web framework is now in a very good shape. And it's got a name: Wee. The core is now around 600 lines of code. The HTML related libraries put another 500 lines of code. The trickiest thing I...
Posted in All Buzz Forum, Oct 15, 2004, 2:20 PM
Yesterday evening, after my brother demonstrated me his good-looking Python WebWare application, I decided to write my own Web Framework in Ruby. The idea of this project is in my head for a very long time, it started to get more concrete in a thread of mine on ruby-talk of subject WebShare (;-) but then I lost it again for some time. Then...
Posted in All Buzz Forum, Oct 6, 2004, 2:07 AM
Today, I wrote a little application that parses a ChangeLog file and constructs a RSS news feed. The source is available here. The RSS feed for the Ruby ChangeLog is available here: www.ntecs.de/ruby-devel-cvs.rss?cnt=20 (20 entries) www.ntecs.de/ruby-devel-cvs.rss?full (all entries)
Posted in Ruby Buzz Forum, Oct 6, 2004, 2:07 AM
Today, I wrote a little application that parses a ChangeLog file and constructs a RSS news feed. The source is available here. The RSS feed for the Ruby ChangeLog is available here: www.ntecs.de/ruby-devel-cvs.rss?cnt=20 (20 entries) www.ntecs.de/ruby-devel-cvs.rss?full (all entries)
Posted in All Buzz Forum, Sep 22, 2004, 1:41 PM
Random Rollbacks From time to time our EuRuKo04 Wiki experienced strange and very annoying random rollbacks. After I installed the newest version of Instiki from CVS, which claims to fix this bug, I thought everything is now fine. But only a few days later matju told us that again a random rollback has happened! Now I decided to put an end to...
Posted in Ruby Buzz Forum, Sep 22, 2004, 1:41 PM
Random Rollbacks From time to time our EuRuKo04 Wiki experienced strange and very annoying random rollbacks. After I installed the newest version of Instiki from CVS, which claims to fix this bug, I thought everything is now fine. But only a few days later matju told us that again a random rollback has happened! Now I decided to put an end to...
Posted in All Buzz Forum, Aug 17, 2004, 1:39 PM
In Part I of the article, I hacked the Ruby interpreter and modified one single line to implement Python Decorators in Ruby. Now I'll show some more examples in both Python and Ruby. The examples are taken from the article Decorate this. Wrapping Let me show the Python example first. def wrapwith(obj): def decorator(f): def _wrapper(*args,...
Posted in Ruby Buzz Forum, Aug 17, 2004, 1:39 PM
In Part I of the article, I hacked the Ruby interpreter and modified one single line to implement Python Decorators in Ruby. Now I'll show some more examples in both Python and Ruby. The examples are taken from the article Decorate this. Wrapping Let me show the Python example first. def wrapwith(obj): def decorator(f): def _wrapper(*args,...
Posted in All Buzz Forum, Aug 16, 2004, 11:14 PM
Is Ruby human-understandable? Understandable by humans with absolutely no experience in computer programming? How can we as experienced programmers at all answer such a question? Well, we can't! The only way to determine whether a language is easily understood by novices is to actually ask them. To find an answer to this question I performed...
Posted in Ruby Buzz Forum, Aug 16, 2004, 11:14 PM
Is Ruby human-understandable? Understandable by humans with absolutely no experience in computer programming? How can we as experienced programmers at all answer such a question? Well, we can't! The only way to determine whether a language is easily understood by novices is to actually ask them. To find an answer to this question I performed...
Posted in All Buzz Forum, Aug 16, 2004, 9:15 PM
I read about Python Decorators on Lambda-the-Ultimate. They will be part of Python 2.4. But, was it really worth to add special syntax for something that can be done without problems in a different way? Isn't Python breaking it's own principle "There's only one way to do it"? Will Python become a second Perl? Which so-called "feature" will be...
Posted in Ruby Buzz Forum, Aug 16, 2004, 9:15 PM
I read about Python Decorators on Lambda-the-Ultimate. They will be part of Python 2.4. But, was it really worth to add special syntax for something that can be done without problems in a different way? Isn't Python breaking it's own principle "There's only one way to do it"? Will Python become a second Perl? Which so-called "feature" will be...
Posted in All Buzz Forum, Aug 16, 2004, 9:06 PM
I will show you in this article how to increase performance of an algorithm by a factor of 10^2086, simply by adding two single lines while not changing any existing code! Yeah, 10^2086 that's a one with 2086 zeros. Here is the "un-optimized" algorithm, the well known Fibonacci function: def fib(n) if (0..1).include? n 1 else fib(n-2) +...
Posted in Ruby Buzz Forum, Aug 16, 2004, 8:55 PM
I will show you in this article how to increase performance of an algorithm by a factor of 10^2086, simply by adding two single lines while not changing any existing code! Yeah, 10^2086 that's a one with 2086 zeros. Here is the "un-optimized" algorithm, the well known Fibonacci function: def fib(n) if (0..1).include? n 1 else fib(n-2) +...
5 pages [ Previous 1 2 3 4 5 Next ]
Advertisement