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
| <div class="grid w-screen min-h-screen grid-cols-2 grid-rows-2"> | |
| <!-- Component Start --> | |
| <div class="flex items-center justify-center bg-gray-100"> | |
| <button class="flex items-center h-16 px-8 text-gray-500 transition duration-200 bg-gray-100 rounded-lg btn-light focus:outline-none"> | |
| <span>Squishy</span> | |
| </button> | |
| </div> | |
| <div class="flex items-center justify-center bg-gray-800"> | |
| <button class="flex items-center h-16 px-8 text-gray-400 transition duration-200 bg-gray-800 rounded-lg btn-dark focus:outline-none"> |
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
| #!/usr/bin/env python3 | |
| import json | |
| from random import choice | |
| class Headers: | |
| """Class to generate headers for requests | |
| Parameters: | |
| os (str): The operating system to use (iphone, android, windows, mac, chromeos) |
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 shlex | |
| import os | |
| import subprocess | |
| from glob import glob | |
| from pathlib import Path | |
| import json | |
| from datetime import datetime | |
| def get_system_info(header=None, outpath=None): | |
| """Gathers system information (OS, GPU, CPU, TPU, drivers) using bash commands.""" |
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
| from datetime import datetime | |
| import pytz | |
| from typing import Optional, Union | |
| import re | |
| class Time(datetime): | |
| """ | |
| Extended datetime class with enhanced timezone handling. | |
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 url('https://fonts.googleapis.com/css?family=Oswald'); | |
| @import url('https://fonts.googleapis.com/css?family=Lato'); | |
| * { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |