This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Note: This is backed by degraded md-raid6 PV | |
| Using uid:1000, gid:1000. | |
| Writing a byte at a time...done | |
| Writing intelligently...done | |
| Rewriting...done | |
| Reading a byte at a time...done | |
| Reading intelligently...done | |
| start 'em...done...done...done...done...done... | |
| Create files in sequential order...done. | |
| Stat files in sequential order...done. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'csv' | |
| require 'zip' | |
| require 'pp' | |
| Zip.force_entry_names_encoding = 'ISO-8859-1' | |
| entries = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Yksinkertainen Long Playn epubien noutovempele. | |
| Tarvitaan Python, Selenium, Firefox ja Geckodriver | |
| Testatut versiot: | |
| - Python 3.11.2 | |
| - Selenium 4.8.3 | |
| - Geckodriver 0.32.2 (https://github.com/mozilla/geckodriver) | |
| - Firefox 111.0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Use with kcat -f "%p,%o,%T\n" to parse message timestamps | |
| from sys import argv | |
| from datetime import datetime | |
| import csv | |
| for row in csv.reader(open(argv[1], 'r'), delimiter=','): | |
| print(f"Partition {row[0]} offset {row[1]}: {datetime.fromtimestamp(int(row[2])/1000)}") |
OlderNewer