Gnus development mailing list
 help / color / mirror / Atom feed
* Re: real programmers(TM)
       [not found]                               ` <mit.lcs.mail.ding/x3ritw6oxax.fsf_-_@lyell.csse.monash.edu.au>
@ 2000-05-26  3:01                                 ` Aaron M. Ucko
  2000-05-26 10:01                                   ` Toby Speight
  0 siblings, 1 reply; 9+ messages in thread
From: Aaron M. Ucko @ 2000-05-26  3:01 UTC (permalink / raw)


Brian May <bmay@csse.monash.edu.au> writes:

> cat > a.out

Bah, that's for wimps.

        cat /dev/audio > a.out

and whistle into the microphone. ;-)

> (then again, not sure what adb is...)

A traditional Unix debugger, still found on Solaris and maybe other
platforms.

-- 
Aaron M. Ucko, KB1CJC <amu@mit.edu> (finger amu@monk.mit.edu)



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26  3:01                                 ` real programmers(TM) Aaron M. Ucko
@ 2000-05-26 10:01                                   ` Toby Speight
  2000-05-26 11:10                                     ` Norman Walsh
  0 siblings, 1 reply; 9+ messages in thread
From: Toby Speight @ 2000-05-26 10:01 UTC (permalink / raw)
  Cc: ding

Aaron> Aaron M. Ucko <URL:mailto:amu@MIT.EDU>

0> In article <udlwvkixbdp.fsf@quiche-lorraine.mit.edu>, Aaron wrote:

Aaron> Bah, that's for wimps.
Aaron>
Aaron>         cat /dev/audio > a.out
Aaron>
Aaron> and whistle into the microphone. ;-)

cat /dev/random >a.out

If you've seeded the RNG correctly, nothing more to do.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26 10:01                                   ` Toby Speight
@ 2000-05-26 11:10                                     ` Norman Walsh
  2000-05-26 11:28                                       ` Kai Großjohann
  2000-05-26 19:26                                       ` Stainless Steel Rat
  0 siblings, 2 replies; 9+ messages in thread
From: Norman Walsh @ 2000-05-26 11:10 UTC (permalink / raw)


/ Toby Speight <streapadair@gmx.net> was heard to say:
| cat /dev/random >a.out
| 
| If you've seeded the RNG correctly, nothing more to do.

I fear that's an incomplete solution. There are only a finite
number of seed values.

                                        Be seeing you,
                                          norm

-- 
Norman Walsh <ndw@nwalsh.com> | Internet connection, $19.95 a month.
http://nwalsh.com/            | Computer, $799.95. Modem, $149.95.
                              | Telephone line, $24.95 a month.
                              | Software, free. USENET transmission,
                              | hundreds if not thousands of dollars.
                              | Thinking before posting, priceless.
                              | Somethings in life you can't buy. For
                              | everything else, there's
                              | MasterCard.--Graham Reed, in the Scary
                              | Devil Monastery



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26 11:10                                     ` Norman Walsh
@ 2000-05-26 11:28                                       ` Kai Großjohann
  2000-05-26 12:09                                         ` Jaap-Henk Hoepman
  2000-05-26 19:26                                       ` Stainless Steel Rat
  1 sibling, 1 reply; 9+ messages in thread
From: Kai Großjohann @ 2000-05-26 11:28 UTC (permalink / raw)
  Cc: ding

Norman Walsh <ndw@nwalsh.com> writes:

> I fear that's an incomplete solution. There are only a finite
> number of seed values.

IIRC, /dev/random is a real random number generator, not a pseudo
random number generator.  So no problem there.

kai
-- 
I like BOTH kinds of music.



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26 11:28                                       ` Kai Großjohann
@ 2000-05-26 12:09                                         ` Jaap-Henk Hoepman
  2000-05-26 12:54                                           ` William M. Perry
  0 siblings, 1 reply; 9+ messages in thread
From: Jaap-Henk Hoepman @ 2000-05-26 12:09 UTC (permalink / raw)
  Cc: Norman Walsh, ding

On Fri, 26 May 2000 13:28:42 +0200 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann) writes:
> Norman Walsh <ndw@nwalsh.com> writes:
> 
> > I fear that's an incomplete solution. There are only a finite
> > number of seed values.
> 
> IIRC, /dev/random is a real random number generator, not a pseudo
> random number generator.  So no problem there.

But it blocks as soon as the entropy pool is (estimated to be) empty. So the
problem remains :-)

Jaap-Henk

-- 
Jaap-Henk Hoepman             | Come sail your ships around me
Dept. of Computer Science     | And burn these bridges down
University of Twente          |       Nick Cave - "Ship Song"
Email: hoepman@cs.utwente.nl === WWW: www.cs.utwente.nl/~hoepman
Phone: +31 53 4893795 === Secr: +31 53 4893770 === Fax: +31 53 4894590
PGP ID: 0xF52E26DD  Fingerprint: 1AED DDEB C7F1 DBB3  0556 4732 4217 ABEF



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26 12:09                                         ` Jaap-Henk Hoepman
@ 2000-05-26 12:54                                           ` William M. Perry
  0 siblings, 0 replies; 9+ messages in thread
From: William M. Perry @ 2000-05-26 12:54 UTC (permalink / raw)
  Cc: Kai Großjohann, Norman Walsh, ding

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="", Size: 737 bytes --]

Jaap-Henk Hoepman <hoepman@cs.utwente.nl> writes:

> On Fri, 26 May 2000 13:28:42 +0200 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann) writes:
> > Norman Walsh <ndw@nwalsh.com> writes:
> > 
> > > I fear that's an incomplete solution. There are only a finite
> > > number of seed values.
> > 
> > IIRC, /dev/random is a real random number generator, not a pseudo
> > random number generator.  So no problem there.
> 
> But it blocks as soon as the entropy pool is (estimated to be) empty. So the
> problem remains :-)

But doesn't it seed it from interrupt timings, etc?  So just play a
bandwidth/keyboard/mouse intensive shoot-em-up game, and you write your
program while having fun at the same time. :)

-bp



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-26 11:10                                     ` Norman Walsh
  2000-05-26 11:28                                       ` Kai Großjohann
@ 2000-05-26 19:26                                       ` Stainless Steel Rat
  1 sibling, 0 replies; 9+ messages in thread
From: Stainless Steel Rat @ 2000-05-26 19:26 UTC (permalink / raw)


* Norman Walsh <ndw@nwalsh.com>  on Fri, 26 May 2000
| I fear that's an incomplete solution. There are only a finite
| number of seed values.

And modern /dev/random implementations are cryptographically secure.
-- 
Rat <ratinox@peorth.gweep.net>    \ When not in use, Happy Fun Ball should be
Minion of Nathan - Nathan says Hi! \ returned to its special container and
PGP Key: at a key server near you!  \ kept under refrigeration.




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-23  1:44                               ` real programmers(TM) Brian May
@ 2000-05-23  7:03                                 ` Hrvoje Niksic
  0 siblings, 0 replies; 9+ messages in thread
From: Hrvoje Niksic @ 2000-05-23  7:03 UTC (permalink / raw)


Brian May <bmay@csse.monash.edu.au> writes:

> (then again, not sure what adb is...)

`adb' is the thing you use for control characters that `ed' and `cat'
won't grok.  Linux wussies don't have adb.  Har har har har!



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: real programmers(TM)
  2000-05-23  1:29                             ` Lloyd Zusman
@ 2000-05-23  1:44                               ` Brian May
  2000-05-23  7:03                                 ` Hrvoje Niksic
  0 siblings, 1 reply; 9+ messages in thread
From: Brian May @ 2000-05-23  1:44 UTC (permalink / raw)


>>>>> "Lloyd" == Lloyd Zusman <ljz@asfast.com> writes:

    Lloyd> Nope, they use ...

    Lloyd>    adb a.out

I always thought that the proper tool was

cat > a.out

or

echo "[insert program string here]" > a.out

(then again, not sure what adb is...)
-- 
Brian May <bmay@csse.monash.edu.au>



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2000-05-26 19:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mit.lcs.mail.ding/rjk8h1l6yv.fsf@kolmogorov.dina.kvl.dk>
     [not found] ` <mit.lcs.mail.ding/dp66skvvfn.fsf@mraz.iskon.hr>
     [not found]   ` <mit.lcs.mail.ding/dpya5brm0e.fsf@mraz.iskon.hr>
     [not found]     ` <mit.lcs.mail.ding/oq1z32wvtr.fsf@titan.progiciels-bpi.ca>
     [not found]       ` <mit.lcs.mail.ding/kp1z31vav0.fsf_-_@utip202.cs.utwente.nl>
     [not found]         ` <mit.lcs.mail.ding/oqog65vt46.fsf@titan.progiciels-bpi.ca>
     [not found]           ` <mit.lcs.mail.ding/200005172027.WAA16517@marcy.cs.uni-dortmund.de>
     [not found]             ` <mit.lcs.mail.ding/00May17.163721edt.115620@gateway.intersys.com>
     [not found]               ` <mit.lcs.mail.ding/kpd7mjega1.fsf@utip202.cs.utwente.nl>
     [not found]                 ` <mit.lcs.mail.ding/00May19.104238edt.116445@gateway.intersys.com>
     [not found]                   ` <mit.lcs.mail.ding/kp1z2x6jud.fsf@utip202.cs.utwente.nl>
     [not found]                     ` <mit.lcs.mail.ding/vafvh08etc0.fsf@lucy.cs.uni-dortmund.de>
     [not found]                       ` <mit.lcs.mail.ding/8766s65dm0.fsf@ghidra.vail>
     [not found]                         ` <mit.lcs.mail.ding/m3g0raulgw.fsf@peorth.rgo.gweep.net>
     [not found]                           ` <mit.lcs.mail.ding/00e501bfc454$7dd10310$0500a8c0@rufus>
     [not found]                             ` <mit.lcs.mail.ding/ltzopicav8.fsf@asfast.com>
     [not found]                               ` <mit.lcs.mail.ding/x3ritw6oxax.fsf_-_@lyell.csse.monash.edu.au>
2000-05-26  3:01                                 ` real programmers(TM) Aaron M. Ucko
2000-05-26 10:01                                   ` Toby Speight
2000-05-26 11:10                                     ` Norman Walsh
2000-05-26 11:28                                       ` Kai Großjohann
2000-05-26 12:09                                         ` Jaap-Henk Hoepman
2000-05-26 12:54                                           ` William M. Perry
2000-05-26 19:26                                       ` Stainless Steel Rat
2000-05-11 10:24 The <word>.<word>.<word> rule Per Abrahamsen
2000-05-12 11:50 ` Hrvoje Niksic
2000-05-16  7:29   ` Hrvoje Niksic
2000-05-16 11:58     ` François Pinard
2000-05-17  8:28       ` Python Emacs (was Re: The <word>.<word>.<word> rule) Jaap-Henk Hoepman
2000-05-17 20:06         ` François Pinard
2000-05-17 20:27           ` Kai Großjohann
2000-05-17 20:37             ` Stainless Steel Rat
2000-05-18 20:48               ` Jaap-Henk Hoepman
2000-05-19 14:42                 ` Stainless Steel Rat
2000-05-20 20:35                   ` Jaap-Henk Hoepman
2000-05-20 22:43                     ` Kai Großjohann
2000-05-23  0:12                       ` Hal Snyder
     [not found]                         ` <m3g0raulgw.fsf@peorth.rgo.gweep.net>
2000-05-23  1:16                           ` Eric S. Johansson
2000-05-23  1:29                             ` Lloyd Zusman
2000-05-23  1:44                               ` real programmers(TM) Brian May
2000-05-23  7:03                                 ` Hrvoje Niksic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).