This file contains hidden or 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
| import requests | |
| def verify_result(response: requests.Response): | |
| return 'REDACTED.jpeg' not in response.text | |
| def send_request(port: int): | |
| response = requests.post( | |
| 'http://REDACTED/upload-cover', | |
| files = { |
This file contains hidden or 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
| local last_used_index = 0 | |
| theme.wallpapers = { | |
| themes_path.."THEME_NAME/wallpapers/1.png", | |
| themes_path.."THEME_NAME/wallpapers/2.png", | |
| themes_path.."THEME_NAME/wallpapers/3.png", | |
| themes_path.."THEME_NAME/wallpapers/4.png", | |
| } | |
| theme.wallpaper = function( s ) | |
| math.randomseed(os.time()) |
This file contains hidden or 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
| /* Copyright B1TC0R3 - b1tc0r3@proton.me */ | |
| :root { | |
| --gray : #928374; | |
| --shadow: #111111; | |
| --dark0_hard : #1d2021; | |
| --dark0 : #282828; | |
| --dark0_soft : #32302f; | |
| --dark1 : #3c3836; | |
| --dark2 : #504945; |
This file contains hidden or 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
| /* Copyright B1TC0R3 - b1tc0r3@proton.me */ | |
| .fg_gray { color : #928374; } | |
| .fg_dark0_hard { color : #1d2021; } | |
| .fg_dark0 { color : #282828; } | |
| .fg_dark0_soft { color : #32302f; } | |
| .fg_dark1 { color : #3c3836; } | |
| .fg_dark2 { color : #504945; } | |
| .fg_dark3 { color : #665c54; } | |
| .fg_dark4 { color : #7c6f64; } |