ther (Damjan Rems)
- Login: ther
- Email: d_rems@yahoo.com
- Registered on: 03/30/2009
- Last sign in: 03/30/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/30/2009
-
03:12 PM Ruby Bug #1332 (Closed): Reading file on Windows is 500x slower then with previous Ruby version
- =begin
time = [Time.new]
c = ''
'aaaa'.upto('zzzz') {|e| c << e}
3.times { c << c }
time << Time.new
File.open('out.file','w') { |f| f.write(c) }
time << Time.new
c = File.open('out.file','r') { |f| f.read }
time << Time...