adb devices
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
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 |
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
// ==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== |
poetry config --list
poetry config cache-dir
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
// ==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() { |
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
// ==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 |
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
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 |
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
@Composable | |
fun Screen0( | |
navController: NavController | |
){ | |
Column( | |
modifier = Modifier.fillMaxSize(), | |
verticalArrangement = Arrangement.Center, | |
horizontalAlignment = Alignment.CenterHorizontally | |
){ | |
Text(text = "0") |