https://devices.ubuntu-touch.io/device/yggdrasil
Use the UBports installer: https://devices.ubuntu-touch.io/installer/. Current version 0.10.0 has dependency problems.
- Turn on the developer mode
- Install
fastboottool
| # /// script | |
| # requires-python = ">=3.11" | |
| # dependencies = [] | |
| # /// | |
| # uv run git_stats.py 2025 <optional author> | |
| import subprocess | |
| import sys | |
| from collections import defaultdict |
| FROM debian:testing | |
| ENV ZIG_VERSION="0.13.0" | |
| RUN apt-get update && \ | |
| apt-get install --yes --no-install-recommends --no-upgrade libgtk-3-dev libadwaita-1-dev git curl xz-utils ca-certificates | |
| ADD https://ziglang.org/download/$ZIG_VERSION/zig-linux-x86_64-$ZIG_VERSION.tar.xz / | |
| RUN tar -xf zig-linux-x86_64-$ZIG_VERSION.tar.xz && \ |
| { | |
| "createdBy": "Redirector v3.5.3", | |
| "createdAt": "2024-01-18T21:23:34.230Z", | |
| "redirects": [ | |
| { | |
| "description": "Twitter", | |
| "exampleUrl": "https://twitter.com/majek04/status/1334811330033946625", | |
| "exampleResult": "https://nitter.unixfox.eu/majek04/status/1334811330033946625", | |
| "error": null, | |
| "includePattern": "https://twitter.com/*", |
https://devices.ubuntu-touch.io/device/yggdrasil
Use the UBports installer: https://devices.ubuntu-touch.io/installer/. Current version 0.10.0 has dependency problems.
fastboottoolTo run terraform via a container while providing the aws-vault env variables:
docker run --rm \
-v `pwd`:/workspace \
-w /workspace/terraform \
--env-file <(aws-vault exec default -- env | grep AWS) \
--env TF_WORKSPACE=production \
hashicorp/terraform:1.1.6 \
init/plan/apply| FROM ubuntu:21.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update \ | |
| && apt-get install -y \ | |
| # Tools for the pyenv installer script | |
| curl \ | |
| git \ | |
| # Tools to build python from source |
| exiv2 -PXkyct $* |
| git log --pretty=oneline --abbrev-commit master..staging |
| # Option 1 | |
| find . -printf '%p\n' -name '*.pdf' -exec ocrmypdf '{}' '{}' \; | |
| # Option 2 | |
| for f in *; do echo $f; ocrmypdf -l fra $f $f; done |