When to use extended thinking across Claude models in the Claude App and Claude Code
Generated by Claude Opus 4.5 (with extended thinking)
This guide outlines the steps to set up an SSH server and Tailscale on a fresh Debian installation inside the Android Linux Terminal App. After completing these steps, you'll be able to securely SSH into the Linux environment running on your Android device from any remote machine over the internet using Tailscale.
Update package lists and upgrade installed packages to the latest versions:
sudo apt update && sudo apt upgrade -y
| #!/usr/bin/env python3 | |
| # TaskWarrior Hook for ActivityWatch | |
| # Author: Emir Herrera GonzΓ‘lez | |
| # Inserts a TaskWarrior activity when a Task is stopped | |
| # License: GNU GPLv3 | |
| from datetime import datetime, timezone | |
| from time import sleep |
Onyx tablets reportedly phone home and send "data" to some servers in China. The manufacturer apparently refuses to publish the source-code modifications to the OS and the open-source apps they are using and they even go as far as violating GPL.
Of course I learned all that after buying this tablet. To ease my mind, I spent some time debloating it and then blocked the outgoing traffic to
| const apiUrl = "http://api.quotable.io/random?tags="; | |
| async function start() { | |
| var quote; | |
| var cite; | |
| const response = await fetch(apiUrl); | |
| const data = await response.json(); | |
| if (response.ok) { | |
| // Update DOM elements |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
| # Inspired by Paul Fenwick (https://gist.github.com/pjf) | |
| # See https://gist.github.com/pjf/051aa4ef326d493beec950823f7edfd8#file-bashrc | |
| # Reset | |
| Color_Off='\[\e[0m\]' # Text Reset | |
| # Regular Colors | |
| Black='\[\e[0;30m\]' # Black | |
| Red='\[\e[0;31m\]' # Red | |
| Green='\[\e[0;32m\]' # Green | |
| Yellow='\[\e[0;33m\]' # Yellow |
Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
| #!/usr/bin/env python | |
| # | |
| # Adds the ability to add / modify tasks using a "blocks:" attribute, | |
| # the opposite of "depends:". | |
| # | |
| # This script acts as an on-modify, on-add and on-launch hook at the same time. | |
| # | |
| ### SETUP | |
| # Save this file as | |
| # ~/.task/hooks/on-modify.blocks_attr.py |