2025-06-20 07:15:19 +00:00
|
|
|
# discord-timestamp
|
2025-06-20 09:39:10 +00:00
|
|
|
Reliably create timestamps for Discord entirely within the terminal!
|
|
|
|
|
Mainly made in mind with Linux (Although it will in the future work on Windows too)
|
2025-06-20 07:15:19 +00:00
|
|
|
|
2025-06-20 09:39:10 +00:00
|
|
|
## plan
|
|
|
|
|
The program should run purely in the terminal, working on Windows and Linux.
|
|
|
|
|
It should take a couple of commandline arguments based on
|
|
|
|
|
|
2025-06-25 10:40:42 +00:00
|
|
|
1. What time format (By default 'f')
|
2025-06-20 09:39:10 +00:00
|
|
|
2. Short format (HH MM SS) or long format (DD MM YY HH MM SS)
|
2025-06-25 10:40:42 +00:00
|
|
|
3. A help command for giving information on the time stamps
|
2025-06-20 09:39:10 +00:00
|
|
|
|
|
|
|
|
It start the output as:
|
|
|
|
|
- Current time
|
|
|
|
|
- Information on what to input
|
|
|
|
|
- User input
|
|
|
|
|
|
|
|
|
|
Do input validation, then output as a copyable format whilst waiting for input before
|
|
|
|
|
continuing.
|
|
|
|
|
|
|
|
|
|
### Possible additions
|
|
|
|
|
Allow for the user to pass the output into a file for use in the longer term.
|
|
|
|
|
|
|
|
|
|
Directly allow input using the parser alone.
|
|
|
|
|
## progress
|
2025-06-27 08:20:24 +00:00
|
|
|
- [x] Set up the startup sequence & basic input (and output)
|
2025-06-20 09:39:10 +00:00
|
|
|
- [ ] Add a basic system for inputting time and outputting (correct) epoch time
|
|
|
|
|
- [ ] Properly implement commandline parsing as stated in the plan
|