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
/* Theme park css , moded */ | |
@import url(https://gilbn.github.io/theme.park/CSS/themes/jellyfin/jellyfin-base.css); | |
:root { | |
--main-bg-color: radial-gradient(circle, #3a3a3a, #000000) center center/cover no-repeat fixed; | |
--modal-bg-color: radial-gradient(circle , #3a3a3a, #000000) center center/cover no-repeat fixed; | |
--button-color: #E50914; | |
--button-color-hover: #CF1A2B; | |
--accent-color: #E50914; | |
--accent-color-hover: #CF1A2B; | |
} |
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
Dir | Rename-Item -NewName {$_.name -replace "tower","building"} |
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
__author__ = 'sage' | |
class Security: | |
def checkkey(self, username, cdkey): | |
total = 0 | |
for letter in username.lower(): | |
total += ord(letter)*1.03 | |
gemiddeldeUsername = round(total/username.__len__(), 0) |