in reply to How to burn 100 megabytes in one line and still get the wrong answer

Neat.
0x0x0x0 eq 00x00 # Must come in handy some time.

Abigail

  • Comment on Re: How to burn 100 megabytes in one line and still get the wrong answer
  • Download Code

Replies are listed 'Best First'.
Re: Re: How to burn 100 megabytes in one line and still get the wrong answer
by zude (Scribe) on May 14, 2004 at 15:47 UTC
    Urk. How to (try to) burn 4 gigabytes:
    $number &= 0x0xFFFFFFFF;
    Candidate for Most Lethal Typo award. Note: untested

    Update: OK so I tested it and it doesn't compile. Award rescinded.

      Even if it did compile, it isn't that lethal. In fact, even if you type:
      $_ = 0x0x0xFFFFFFFF
      perl will try to allocate a large piece of memory, and unless you have the memory for it, the malloc will fail, causing Perl to quickly segfault. And even if you do have the memory, at worst you have a temporary slowdown of your system. Big deal. Far more lethal are mistypings in open:
      open my $fh => ">" => "/etc/passwd" or die; # Oops, mistyped '<'
      (assuming you're running this as root).

      Abigail