Main Page: Difference between revisions

From PhysWiki
No edit summary
No edit summary
 
(229 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The current 12 Digit Bully Row Hex is:
The following web pages were developed by Unitfreak at physWiki.eeyabo.


<span style="font-size:40px;justify:center">{{Hex12|{{#expr: (((({{CURRENTJULIANDAY}} - 2450986) * 86400) + 37 )/3055 round 0) + 686422016}}}}</span>
= Bully Metric =


Count to next Bully Row:
[https://physwiki.eeyabo.net/index.php/Bully_Metric Bully Metric (Development Page)]


( {{#expr: ((({{CURRENTJULIANDAY}} - 2450986) * 86400) + 37) mod 3055 }} sec / 3055 sec ) = {{#expr: (((({{CURRENTJULIANDAY}} - 2450986) * 86400) + 37) mod 3055) / 30.55 round 3}}%
[https://en.m.wikiversity.org/wiki/Bully_Metric Bully Metric (Wikiversity Page)]


= Bully Timestamps =


This page was loaded at:
[https://physwiki.eeyabo.net/index.php/Bully_Timestamps Bully Timestamps (Development Page)]
{{ #time:Y-m-d H:i:s|{{CURRENTTIMESTAMP}}}} (UTC)
[[Special:Purge/{{FULLPAGENAME}}|<span style="font-weight:bold;{{{textstyle|}}}"> {{#if:{{{label|}}}|{{{label}}}|(Update page)}}
</span>]]


== Javascript Bully Row Clock ==
[https://en.m.wikiversity.org/wiki/Bully_Timestamps Bully Timestamps (Wikiversity Page)]
 
<syntaxhighlight lang="javascript" start="1">
<!DOCTYPE html>
<html>
 
<body onload="startTime()">
 
<h2>Bully Row Galactic Time:</h2>
 
<div id="txt"></div>
 
<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 =  "<h1>" + Tta.toString(16).toUpperCase().padStart(4, "0") + " " + Tta_hex2.toString(16).toUpperCase().padStart(4, "0") + " " + Tta_hex3.toString(16).toUpperCase().padStart(4, "0") + "</h1>" + " + " + Tta_dec.toFixed(2) + "% (Tta)" + "<br /><br /><br />Your Local Time:<br />" + now;
 
  setTimeout(startTime, 305);
}
</script>
 
</body>
</html>
 
</syntaxhighlight>
 
[https://www.youtube.com/embed/wf-4vexIOqc?si=oyfaNLWsyD82zyZ_| The Bully Row Anthem (Alan Doyle Cover)]

Latest revision as of 19:22, 19 October 2024

The following web pages were developed by Unitfreak at physWiki.eeyabo.

Bully Metric

Bully Metric (Development Page)

Bully Metric (Wikiversity Page)

Bully Timestamps

Bully Timestamps (Development Page)

Bully Timestamps (Wikiversity Page)