Main Page
From PhysWiki
The current Bully Row (12 Digit Hex) is:
Count to next Bully Row:
( 1526 sec / 3055 sec ) = 49.951%
This page was loaded at:
2025-04-30 07:41:10 (UTC)
(Update page)
Javascript Clock
<!DOCTYPE html> <html>
<body onload="startTime()">
Bully Row Galactic Time:
<script> function startTime() {
const now = new Date(); const Jun_21_1998_noon_UTC = 898430400000; const TAI_leap_milliseconds = 37000; const anchor_byte3 = parseInt("8209", 16); const anchor_byte2 = parseInt("28E9", 16); const anchor_byte1 = parseInt("F800", 16);
let Tta = (now.getTime() - (Jun_21_1998_noon_UTC - TAI_leap_milliseconds)) / 30550; let Tta_dec = Tta % 100; Tta = ((Tta - Tta_dec) / 100) + anchor_byte1;
let Tta_hex3 = (Tta % 16**4); Tta = ((Tta - Tta_hex3) / 16**4) + anchor_byte2;
let Tta_hex2 = (Tta % 16**4); Tta = ((Tta - Tta_hex2) / 16**4) + anchor_byte3;
document.getElementById('txt').innerHTML = "
" + Tta.toString(16).toUpperCase().padStart(4, "0") + " " + Tta_hex2.toString(16).toUpperCase().padStart(4, "0") + " " + Tta_hex3.toString(16).toUpperCase().padStart(4, "0") + "
" + " + " + Tta_dec.toFixed(2) + "% (Tta)" + "
Local Time:
" + now + "
" + now.toUTCString();
setTimeout(startTime, 305);
}
</script>
</body> </html>