poetry config --listpoetry config cache-dir | @Composable | |
| fun Screen0( | |
| navController: NavController | |
| ){ | |
| Column( | |
| modifier = Modifier.fillMaxSize(), | |
| verticalArrangement = Arrangement.Center, | |
| horizontalAlignment = Alignment.CenterHorizontally | |
| ){ | |
| Text(text = "0") |
| apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev \ | |
| libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev -y | |
| wget https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tgz | |
| tar -xvf Python-3.9.7.tgz | |
| cd Python-3.9.7/ | |
| ./configure --enable-optimizations |
| // ==UserScript== | |
| // @name Hacker News Open Links in New Tab | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.1 | |
| // @description Open links on Hacker News in a new tab | |
| // @license GPL v3.0 | |
| // @author xdpirate | |
| // @match https://news.ycombinator.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=ycombinator.com | |
| // @grant none |
| // ==UserScript== | |
| // @name Reddit Redirect | |
| // @namespace https://www.reddit.com/ | |
| // @version 1.0 | |
| // @description Redirects old.reddit.com to old.reddit.com/hot | |
| // @include https://old.reddit.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
poetry config --listpoetry config cache-dir adb devices| // ==UserScript== | |
| // @name Always On Focus | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Prevent websites from detecting when you switch tabs or unfocus the window | |
| // @author You | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
| name: Pre-commit Auto-Update | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 1' # Every Monday at 00:00 UTC | |
| workflow_dispatch: # Manual trigger | |
| jobs: | |
| autoupdate: | |
| runs-on: ubuntu-latest |
| import androidx.compose.material3.windowsizeclass.WindowHeightSizeClass | |
| import androidx.compose.material3.windowsizeclass.WindowSizeClass | |
| import androidx.compose.material3.windowsizeclass.WindowWidthSizeClass | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.CompositionLocalProvider | |
| import androidx.compose.runtime.ProvidableCompositionLocal | |
| import androidx.compose.runtime.compositionLocalOf | |
| /** |
| import androidx.compose.runtime.Composable | |
| import org.jetbrains.compose.resources.PluralStringResource | |
| import org.jetbrains.compose.resources.StringResource | |
| import org.jetbrains.compose.resources.getPluralString | |
| import org.jetbrains.compose.resources.getString | |
| import org.jetbrains.compose.resources.pluralStringResource | |
| import org.jetbrains.compose.resources.stringResource | |
| /** | |
| * A sealed interface that abstracts compose component string resources, allowing them to be passed |