Please disregard. There's nothing to see here, move along....
Some links:
- http://alexgorbatchev.com/SyntaxHighlighter/
- http://www.cyberack.com/2007/07/adding-syntax-highlighter-to-blogger.html
- http://accessify.com/tools-and-wizards/developer-tools/quick-escape/
#!/usr/bin/env ruby
class SyntaxHighLighterTest
$max_column_chars = 4000
attr_accessor :numRecords
def initialize(numEach=1000)
@numRecords = numEach
end
def do_nothing
tstamp = Time.new
puts "The time is now #{tstamp}"
@numRecords.to_i.times do
puts "going...."
end
puts "gone"
end
end
if __FILE__ == $0
numRecs = ARGV.first
fn = SyntaxHighLighterTest.new numRecs
fn.do_nothing
end