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
fastboot
tool
{ | |
"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.
fastboot
toolTo 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 |
package httpapi.authorization.project | |
import input | |
# Very important!, default to deny! | |
default allow_reading = false | |
default allow_editing = false | |
default allow_processing = false | |
role_allow_processing = {"MANAGER", "OWNER"} |
for i in $( ls *.JPG ); do exiv2 -v -r '%Y-%m-%d_%Hh%M%m%S' rename "$i"; done | |
for i in $( ls *.JPG ); do mv $i ${i%%.JPG}.jpg; done |