Skip to content

Instantly share code, notes, and snippets.

View Baaaki's full-sized avatar
🏠
Working from home

Baki Baaaki

🏠
Working from home
  • İstanbul
View GitHub Profile
@Baaaki
Baaaki / three_digit_primes_starting_five.go
Created January 1, 2026 12:41
3-Digit Prime Numbers Starting with 5
package main
import (
"fmt"
"math"
)
// Try it online:
// Pre-loaded code: https://go.dev/play/p/k9_k81O4QHr
// Or paste the code yourself: https://go.dev/play/
@Baaaki
Baaaki / FinalCountdownCounter.py
Last active July 4, 2023 07:08
FinalCountdownCounter
import time
import webbrowser
countdown = int(input("Enter the countdown time in seconds: "))
for i in reversed(range(countdown)):
hour = i // 3600
minute = (i % 3600) // 60
second = i % 60
print(f"Remaining time {hour:02d} : {minute:02d} : {second:02d}")