Created
January 13, 2014 20:16
-
-
Save pixeldesu/8407266 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desutime | |
========================================================== | |
the maybe most mind fucking way to measure time in history | |
Basics of desutime | |
------------------ | |
//in full 24h | |
1. remove the : of your current time. (for example 21:07, which will turn to 2107 as in full 24h time) | |
- with this, you can use the system as follows and normally, but with a little trick: | |
there is no 60 in your system, because 60 automatically ends up as 0, as a new hour. | |
example: 2160 == 2200 | |
but you can jump around with both values continuing calculation of time with either one of these values. | |
means that 2170 == 2210 | |
this can be continued until you reach, in this example, 2220, which is 20 minutes after 2200, but also | |
60 minutes after 2160, implying that it's 2300. | |
you now have 2 different time values. You successfully created a space inside time to choose where you | |
are. | |
//with 12h pm/am switch | |
1. do the same as stated above. | |
- now you can actually reset time to 0100 everytime you reach 1259. | |
1260 == 0100 | |
rest as upside. | |
Have fun reading this and enjoy your headache. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment