Skip to content

Instantly share code, notes, and snippets.

View TK50P's full-sized avatar

TK50P

View GitHub Profile
@TK50P
TK50P / discord_timestamp_generator.ps1
Last active March 30, 2026 14:30
Generate Discord Timestamps locally on your PC
# Discord Timestamp Generator for Windows PowerShell
# Save this as 'discord_ts.ps1'
# You might required to run 'Set-ExecutionPolicy Unrestricted' then press A to use this script
function Get-DiscordTimestamp {
$d = Read-Host "Enter specific date you want (YYYY-MM-DD)"
$t = Read-Host "Enter the time you want, 24-hour format (HH:MM:SS)"
try {
$dt = [datetime]::ParseExact("$d $t", "yyyy-MM-dd HH:mm:ss", $null)