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
| <?php | |
| /** | |
| * Server Dashboard - Simplified System Information Display | |
| * This file contains functions to retrieve system information and display it in a server dashboard. | |
| * The functions include getting basic server info, CPU info, memory usage, disk usage, uptime, load average, | |
| * network interfaces, and process list. | |
| * | |
| * @author Zxce3 | |
| * @version 2.0 |
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 python | |
| ''' | |
| Simple script to convert ZOOM chat log to SRT subtitle | |
| USAGE: conver.py FILE | |
| Outputs subtitle data to stdout | |
| ''' | |
| import datetime | |
| import sys |