MasPutraWae

Notes

Python - Error KeyboardInterrupt

Ctrl+C di terminal jika program python sedang berjalan maka akan menghasilkan error, untuk mencoba bisa buat seperti ini def main(): while True: input("===== Coba Tekan CTRL + C") try: main() except KeyboardInterrupt as e: print(e) Atau jika ingin menangkap KeyboardInterrupt tapi dengan hasil yang lebih bersih agar saat keluar dari program tidak benar-benar memaksa, coba buat seperti ini import time def long_running_process(): try: print("Performing a long-running process. Press Ctrl+C to …

JavaScript - Membuat Fungsi Id Timestamp

function generateTimestampId() { const now = new Date(); const year = now.getFullYear().toString().padStart(4, '0'); // +1 karena getMonth() mulai dari 0 const month = (now.getMonth() + 1).toString().padStart(2, '0'); const day = now.getDate().toString().padStart(2, '0'); const hours = now.getHours().toString().padStart(2, '0'); const minutes = now.getMinutes().toString().padStart(2, '0'); const seconds = now.getSeconds().toString().padStart(2, '0'); return …