[#4341] DRY and embedded docs. — Hugh Sasse Staff Elec Eng <hgs@...>
If I have a here document in some ruby program:
[#4347] Re: DATA and rewind. — ts <decoux@...>
>>>>> "H" == Hugh Sasse Staff Elec Eng <hgs@dmu.ac.uk> writes:
[#4350] Re: Thirty-seven Reasons [Hal Fulton] Love[s] Ruby — "David Douthitt" <DDouthitt@...>
[#4396] Re: New Require (was: RAA development ideas (was: RE: Looking for inp ut on a 'links' page)) — Hugh Sasse Staff Elec Eng <hgs@...>
On 9 Aug 2000, Dave Thomas wrote:
[#4411] Re: RAA development ideas (was: RE: Lookin g for inp ut on a 'links' page) — Aleksi Niemel<aleksi.niemela@...>
Me:
On Thu, 10 Aug 2000, [iso-8859-1] Aleksi Niemelwrote:
[#4465] More RubyUnit questions. — Hugh Sasse Staff Elec Eng <hgs@...>
I am beginning to get a feel for this, but I still have a few more
[#4478] Re: RubyUnit. Warnings to be expected? — ts <decoux@...>
>>>>> "H" == Hugh Sasse Staff Elec Eng <hgs@dmu.ac.uk> writes:
[#4481] Invoking an extension after compilation — Dave Thomas <Dave@...>
Hi,
[#4501] What's the biggest Ruby development? — Dave Thomas <Dave@...>
[#4502] methods w/ ! giving nil — Hugh Sasse Staff Elec Eng <hgs@...>
I have got used to the idea that methods that end in '!' return nil if
[#4503] RubyUnit and encapsulation. — Hugh Sasse Staff Elec Eng <hgs@...>
My_class's instance variables are not all "attr :<name>" type variables,
[#4537] Process.wait bug + fix — Brian Fundakowski Feldman <green@...>
If your system uses the rb_waitpid() codepath of rb_f_wait(),
[#4567] Re: What's the biggest Ruby development? — Aleksi Niemel<aleksi.niemela@...>
Dave said:
Robert Feldt <feldt@ce.chalmers.se> writes:
On Sat, 26 Aug 2000, Dave Thomas wrote:
Robert Feldt <feldt@ce.chalmers.se> writes:
On Mon, 28 Aug 2000, Dave Thomas wrote:
Robert Feldt <feldt@ce.chalmers.se> writes:
[#4591] Can't get Tcl/Tk working — Stephen White <steve@...>
I can't get any of the samples in the ext/tk/sample directory working. All
I'm sure looking forwards to buying the book. :)
Stephen White <steve@deaf.org> writes:
On Sun, 27 Aug 2000, Dave Thomas wrote:
Stephen White <steve@deaf.org> writes:
[#4608] Class methods — Mark Slagell <ms@...>
Reading the thread about regexp matches made me wonder about this:
[#4611] mod_ruby 0.1.19 — shreeve@...2s.org (Steve Shreeve)
Shugo (and others),
[#4633] Printing tables — DaVinci <bombadil@...>
Hi.
[#4647] Function argument lists in parentheses? — Toby Hutton <thutton@...>
Hello,
[#4652] Andy and Dave's European Tour 2000 — Dave Thomas <Dave@...>
Hi,
[#4672] calling super from c — Robert Feldt <feldt@...>
[#4699] Double parenthesis — Klaus Spreckelsen <ks@...1.ruhr-uni-bochum.de>
Why is the first line ok, but the second line is not?
[ruby-talk:4551] Re: RFC: Ruby extension for Random numbers
Brian Fundakowski Feldman writes: >I'd like to ask that you provide a class that uses /dev/random, too! >FreeBSD's /dev/random in 5.0 uses Yarrow, so it can be used as just >about the highest-quality RNG you could think of :) > Sorry but /dev/random is OS-specific. We plan on implementing Yarrow though... >Also, how about one that uses the arc4random.c-type generator? That >is quite fast, and is pretty darn good if you add some real entropy >every once in a while ;) > We don't plan to add many different RNG's in the first version but we've been contemplating R250 since it's known to be fast and good. Have you got any info/data/papers/links relating arc4random.c to R250 and/or MT19937? >I'd like it if there was a RandBest (or something) class that would >use whatever the highest quality RNG you have on your system is. > Difficult to say what is highest quality (speed, "randomness", "randomness"/speeed etc). However we will supply one Rng or Prng alias for the default or recommended RNG. rand() and srand() might delegate to this object?! Anyone strongly against using the mersenne twister as the default one? If it's to slow for some application we might have an alias RngFast for a fast (but still reasonably good) one. >Count me as supportive of a good RNG for the base Ruby (or even just >RAA, too :) The most important features for me are that it's of higher >quality than rand() or random() and can read an arbitrary number of >bytes into a buffer. Being of cryptographically strong quality is a >major plus! > We will add at least one crypto-strength RNG (probably Yarrow or have you got any other ones we should consider?). How would you like the byte filling method? Should it return an Array (of what)? Array of Fixnums => only 31 bit? etc... Please be concrete and you might get exactly what you want. 8-) /Robert