[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby/DL translation

bjsp123

11/28/2004 10:10:00 PM

Hi,
For those that want it, I have made a rough translation of the
Ruby/DL tutorial, at http://raa.ruby-lang.org/proje...

If there is anything else that needs translating (in an approximate
fashion) I might have time to do it.

Benjamin
9 Answers

Richard Lyman

11/29/2004 1:47:00 AM

0

Wonderful! Thank you!!

-Rich


On Mon, 29 Nov 2004 07:12:51 +0900, Benjamin Peterson <bjsp123@imap.cc> wrote:
> Hi,
> For those that want it, I have made a rough translation of the
> Ruby/DL tutorial, at http://raa.ruby-lang.org/proje...
>
> If there is anything else that needs translating (in an approximate
> fashion) I might have time to do it.
>
> Benjamin
>
>


Anders Engström

11/29/2004 12:17:00 PM

0

On Mon, Nov 29, 2004 at 07:12:51AM +0900, Benjamin Peterson wrote:
> Hi,
> For those that want it, I have made a rough translation of the
> Ruby/DL tutorial, at http://raa.ruby-lang.org/proje...
>
> If there is anything else that needs translating (in an approximate
> fashion) I might have time to do it.
>

I've been trying to access http://www.jbrowse.com/text/r... - but
the connection times out.

//Anders

--
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Anders Engström aengstrom@gnejs.net
http://www... PGP-Key: ED010E7F
[Your mind is like an umbrella. It doesn't work unless you open it.]




Robert McGovern

11/29/2004 1:20:00 PM

0

> I've been trying to access http://www.jbrowse.com/text/r... - but
> the connection times out.

Same here Anders


bjsp123

11/30/2004 1:24:00 AM

0

Hi,

Well, it seems my web hosts decided to unilaterally stop doing
business a couple of minutes after I put up the Ruby/DL tutorial. How
nice.

I have posted it again on geocities, so the link at

http://raa.ruby-lang.org/proje...

is now working. So _now_ you can read it.

Sorry for the mix up,
Benjamin

Martin DeMello

11/30/2004 6:34:00 AM

0

Benjamin Peterson <bjsp123@imap.cc> wrote:
>
> I have posted it again on geocities, so the link at
>
> http://raa.ruby-lang.org/proje...
>
> is now working. So _now_ you can read it.

Nice work!

martin

Michael DeHaan

11/30/2004 7:24:00 PM

0

This will be a great way to rapidly bump up the # of Ruby modules out
there... glad to see English docs!


On Tue, 30 Nov 2004 15:37:47 +0900, Martin DeMello
<martindemello@yahoo.com> wrote:
> Benjamin Peterson <bjsp123@imap.cc> wrote:
> >
> > I have posted it again on geocities, so the link at
> >
> > http://raa.ruby-lang.org/proje...
> >
> > is now working. So _now_ you can read it.
>
> Nice work!
>
> martin
>
>


coke

11/30/2004 8:24:00 PM

0

Thanks,I've been looking for tutorials.If you want to save on
bandwidth I can mirror it.


On Wed, 1 Dec 2004 04:23:56 +0900, Michael DeHaan
<michael.dehaan@gmail.com> wrote:
> This will be a great way to rapidly bump up the # of Ruby modules out
> there... glad to see English docs!
>
> On Tue, 30 Nov 2004 15:37:47 +0900, Martin DeMello
> <martindemello@yahoo.com> wrote:
> > Benjamin Peterson <bjsp123@imap.cc> wrote:
> > >
> > > I have posted it again on geocities, so the link at
> > >
> > > http://raa.ruby-lang.org/proje...
> > >
> > > is now working. So _now_ you can read it.
> >
> > Nice work!
> >
> > martin
> >
> >
>
>


Wayne Chin

12/1/2004 2:01:00 AM

0

Thank you!

tad.bochan

7/1/2005 11:59:00 AM

0


Hi,
I'm using the latest stable release of ruby (ruby182-15) on Windows XP
and am having problems with trying to run some example code.
Could someone please tell me what I'm doing wrong here ?
Or is 'generator.rb' broken ?

I'm baffled.

Example:
require 'generator'
# Generator from an Enumerable object
g = Generator.new(['A', 'B', 'C', 'Z'])

Result:
================ RuntimeError =====================
c:\ruby\lib\ruby\1.8/generator.rb:96:in `call'
@cont_next.call(nil)
c:\ruby\lib\ruby\1.8/generator.rb:96:in `yield'
@cont_next.call(nil)
c:\ruby\lib\ruby\1.8/generator.rb:72:in `initialize'
enum.each { |x| g.yield x }
c:\ruby\lib\ruby\1.8/generator.rb:72:in `each'
enum.each { |x| g.yield x }
c:\ruby\lib\ruby\1.8/generator.rb:72:in `initialize'
enum.each { |x| g.yield x }
c:\ruby\lib\ruby\1.8/generator.rb:71:in `call'
@block = proc { |g|
c:\ruby\lib\ruby\1.8/generator.rb:83:in `initialize'
@block.call(self)
C:\Tad\RB\gen01.rb:4:in `new'
g = Generator.new(['A', 'B', 'C', 'Z'])
C:\Tad\RB\gen01.rb:4
g = Generator.new(['A', 'B', 'C', 'Z'])
c:\ruby\lib\ruby\site_ruby\1.8/rubygems/custom_require.rb:18:in `require__'
require__ path
c:\ruby\lib\ruby\site_ruby\1.8/rubygems/custom_require.rb:18:in `require'
require__ path

=============================================
Exception: continuation called across trap

Program exited with code 101

------------------------------------------------------------------------------------
Breaks in generator.rb: