Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
swatch_time [2025/05/11 18:03] – created gardenia | swatch_time [2025/06/17 20:58] (current) – old revision restored (2025/06/17 20:57) GlitchyZorua | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | < | + | ====== |
- | < | + | <fs xx-large># |
- | <html lang=" | + | |
- | < | + | |
- | <meta charset=" | + | |
- | <meta name=" | + | |
- | < | + | ===== Introduction ===== |
- | <link rel=" | + | Swatch time is a universal standard time for the entire internet! It lets you plan events or meetups with your friends from anywhere in the world and not have to worry about timezones or other annoyances! Its also hella hacker and very cool to use :^) |
- | <link href=" | + | It was originally invented by the Swatch Company in 1998 (Sorta since they copied it from a time format used in the French Revolution) although it did not gain much widespread popularity - however, it's used on MelonLand and many other web revival sites as a standard means of organisation and planning! |
- | <link rel=" | + | |
- | <link href=" | + | |
- | </ | + | |
- | < | + | |
- | <!-- The header image is 700 x 480 pixels. You can change the size in CSS, and change the image itself here. --> | + | ===== How does it work? ===== |
- | <div id=" | + | |
- | < | + | It divides the day into 1000 “**beats**”. Instead of using hours, minutes, and seconds to represent time, Swatch Internet Time uses a single decimal number ranging from 000 to 999. Each beat is equivalent to 1 minute and 26.4 seconds. Sometimes you'll also see some extra numbers like " |
- | <div class=" | + | Swatch time is usually preceded by an **@** symbol; this helps you know it's swatch time and not some random number! For example **@123** or **@542.69** |
- | <!-- This is the left sidebar! --> | + | 000 in Swatch time is the same as Midnight UTC+1; but because swatch time does not use timezones, midnight will be different for everyone. The goal of swatch time is not to provide the relative time you can use in your daily life; it's for worldwide events that all need to happen at the same time! |
- | <div class=" | + | |
- | < | + | ===== How can I use swatch time in my life? ===== |
- | <div class=" | + | |
- | <img src=" | + | |
- | <p> | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | </ | + | |
- | < | + | Easy; just use swatch time when you are planning your events or meetups and get your friends to do the same! There are even some apps that can help you! |
- | <div class=" | + | |
- | < | + | |
- | <img src=" | + | |
- | </ | + | |
- | </ | + | |
- | < | + | **Swatch Time Apps for various platforms: |
- | <div class=" | + | * All Apple devices, including Apple Watch - [[https:// |
+ | * Android Phones - [[https:// | ||
+ | * Pebble Smart Watches - [[https:// | ||
+ | * macOS Menubar - [[https:// | ||
+ | * GNOME Extension - [[https:// | ||
+ | * Cinnamon Applet - [[https:// | ||
+ | * Win 95/XP - [[https:// | ||
+ | * Winamp & WaCUP - [[https:// | ||
+ | * iPad - [[https:// | ||
+ | * Color - [[rgbeat|RGBeat]], | ||
- | < | + | ===== Other useful links! ===== |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | </ul> | + | |
- | </div> | + | * Swatch time [[https:// |
+ | * The Swatch [[https:// | ||
+ | * Swatch Time History on [[https:// | ||
+ | * Decimal Time on Wikipedia [[https:// | ||
- | < | + | ---- |
- | <!-- Start of CuterCounter Code --> | + | |
- | <a href=" | + | |
- | <!-- End of CuterCounter Code --> | + | |
- | </ | + | |
- | <!-- That's the end of the left sidebar.--> | + | |
- | <!-- This is the main middle box! --> | + | ===== Code Snippets ===== |
- | <div class=" | + | You can also include a swatch clock on your website; here are some premade code snippets you can use! |
- | < | + | |
- | < | + | ==== JavaScript: ==== |
- | < | + | |
- | < | + | **JavaScript - Easy Option** |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | < | + | |
- | </ | + | |
- | < | + | |
- | </ul> | + | |
- | < | + | Here is a premade JavaScript clock for your website! Just paste this code onto your page wherever you want your clock to be and it will work! |
+ | <code> | ||
+ | <span id=" | ||
+ | <script defer src="https://melonking.net/ | ||
+ | </code> | ||
- | <h2>Notes</h2> | + | **JavaScript - Full Code** |
+ | <code> | ||
+ | // Returns the current Swatch beat | ||
+ | function GetSwatchTime(showDecimals = true) { | ||
+ | // get date in UTC/GMT | ||
+ | var date = new Date(); | ||
+ | var hours = date.getUTCHours(); | ||
+ | var minutes = date.getUTCMinutes(); | ||
+ | var seconds = date.getUTCSeconds(); | ||
+ | var milliseconds = date.getUTCMilliseconds(); | ||
+ | // add hour to get time in Switzerland | ||
+ | hours = hours == 23 ? 0 : hours + 1; | ||
+ | // time in seconds | ||
+ | var timeInMilliseconds = ((hours * 60 + minutes) * 60 + seconds) * 1000 + milliseconds; | ||
+ | // there are 86.4 seconds in a beat | ||
+ | var millisecondsInABeat = 86400; | ||
+ | // calculate beats to two decimal places | ||
+ | if (showDecimals) { | ||
+ | return Math.abs(timeInMilliseconds / millisecondsInABeat).toFixed(2); | ||
+ | } else { | ||
+ | return Math.floor(Math.abs(timeInMilliseconds / millisecondsInABeat)); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | If you want it to display on your webpage and auto-update here is an example - first, we make a **span** with an id, this is where the clock will appear on your page - then we get that span in a script, make a function that fills it with the swatch time, and finally, we set it to reload every microbeat. | ||
+ | < | ||
+ | <span id=" | ||
+ | < | ||
+ | var mySwatchClock = document.getElementById(' | ||
+ | function updateSwatchClock() { | ||
+ | mySwatchClock.innerHTML = ' | ||
+ | } | ||
+ | setInterval(updateSwatchClock, | ||
+ | </ | ||
+ | </code> | ||
- | < | + | ==== PHP: ==== |
- | </ | + | |
- | <!-- This is the right sidebar! --> | + | PHP has native support for Swatch time, you can get the latest beat using this snippet: |
- | <div class=" | + | < |
- | < | + | |
- | <!--This is the code for the calendar.--> | + | |
- | <div class=" | + | |
- | <header class=" | + | |
- | <p class=" | + | |
- | | + | |
- | | + | However if you would like a full function that also shows microbeats, we have that too! |
- | < | + | <code> |
- | | + | // Returns the current Swatch beat |
- | <script src=" | + | function GetSwatchTime($showDecimals |
- | </div> | + | { |
- | <!--Now the calendar is over.--> | + | // Get time in UTC+1 (Do not Change!) |
+ | $now = new DateTime("now", new DateTimeZone(" | ||
+ | $now->add(new DateInterval("PT1H" | ||
+ | // Calculate the seconds since midnight e.g. time of day in seconds | ||
+ | $midnight = clone $now; | ||
+ | $midnight->setTime(0, 0); | ||
+ | | ||
+ | // Swatch beats in seconds - DO NOT CHANGE | ||
+ | | ||
+ | | ||
+ | if ($showDecimals) { | ||
+ | return number_format(round(abs($seconds | ||
+ | } else { | ||
+ | return floor(abs($seconds / $swatchBeatInSeconds)); | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
- | < | + | ==== BASH: ==== |
- | <div class=" | + | (note that Etc timezones are inverted) |
- | <ul> | + | Calculating Beat Time in bash is simple: |
- | < | + | <code> |
- | <li><a href=""> | + | MIDNIGHT=$( TZ=' |
- | < | + | BTIME=$(( (($EPOCHSECONDS - $midnight) * 1000) |
- | < | + | echo @$BTIME |
- | < | + | </code> |
- | </ul> | + | However, you need to use an external program to calculate centibeats, since bash does not handle decimals well: |
- | </ | + | |
- | <h3> | + | (using dc, which is a rpn calculator) |
- | <div class="sidebarbox"> | + | <code> |
- | < | + | MIDNIGHT=$( TZ=' |
- | < | + | |
- | < | + | |
+ | printf @ | ||
+ | dc << EOF | ||
+ | # setting precision | ||
+ | 2 k | ||
+ | # subtracting midnight from the current epoch | ||
+ | $EPOCHREALTIME $MIDNIGHT - | ||
+ | # converting to ms | ||
+ | 1000 * | ||
+ | # divide by seconds in a day | ||
+ | 86400 / | ||
+ | # print it to screen | ||
+ | p | ||
+ | EOF | ||
+ | </ | ||
+ | To display it on your screen permanently, | ||
+ | < | ||
+ | while true | ||
+ | do | ||
+ | MIDNIGHT=$( TZ=' | ||
+ | BTIME=$(( (($EPOCHSECONDS - $midnight) * 1000) / 86400 )) | ||
+ | echo @$BTIME | ||
+ | done | lemonbar -bg 48+0+18 | ||
+ | </ | ||
+ | (you can replace the code between the do and done with the dc version too) | ||
- | < | ||
- | <div class=" | ||
- | < | ||
- | <img src=" | ||
- | </ | ||
- | |||
- | <!--If you want more sidebar boxes, just add more of these: | ||
- | < | ||
- | <div class=" | ||
- | |||
- | </ | ||
- | < | ||
- | |||
- | |||
- | </ | ||
- | <!--This is the end of the main " | ||
- | |||
- | < | ||
- | <div class=" | ||
- | < | ||
- | </ | ||
- | |||
- | </ | ||
- | </ |