The format defines a handful of reified properties that have special meaning:
| Property | Name | Description | Required? |
|---|---|---|---|
@t |
Timestamp | An ISO 8601 timestamp | Yes |
@m |
Message | A fully-rendered message describing the event |
The format defines a handful of reified properties that have special meaning:
| Property | Name | Description | Required? |
|---|---|---|---|
@t |
Timestamp | An ISO 8601 timestamp | Yes |
@m |
Message | A fully-rendered message describing the event |
| Usage: termux-saf-create [-t mime-type] folder-uri name | |
| Creates a file in a folder managed by Termux:API. | |
| Returns the URI you can use to read and write the file with termux-saf-read and termux-saf-write. | |
| You can specify the mime type explicitly or let it be guessed based on the file extension. | |
| As the folder URI you can use the URI of a directory listed by termux-saf-dirs or by termux-saf-ls. | |
| Android doesn't allow creating files with the same name, so the name may be changed if a file or folder with that name already exists. | |
| You can use termux-saf-stat with the returned URI to get the name it was really given. | |
| -h show this help | |
| -t specify the mime type of the file. The mime type is required for other apps to recognize the content as e.g. a video. If not specified, 'application/octet-stream' is assumed, that means raw binary data. |
| #!/usr/bin/env pwsh | |
| #dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
| #dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart | |
| #wsl.exe --update | |
| #wsl --set-default-version 2 | |
| #wsl --install FedoraLinux-42 | |
| Enable-WindowsOptionalFeature -FeatureName Containers-DisposableClientVM -All -Online | |
| Enable-WindowsOptionalFeature -FeatureName Microsoft-Windows-Subsystem-Linux,VirtualMachinePlatform -All -Online |
busctl --user --full introspect org.freedesktop.secrets /org/freedesktop/secrets
NAME TYPE SIGNATURE RESULT/VALUE FLAGS
org.freedesktop.DBus.Introspectable interface - - -
.Introspect method - s -
org.freedesktop.DBus.Peer interface - - -
.GetMachineId method - s -
.Ping method - - -
org.freedesktop.DBus.Properties interface - - -
| Set compute-core quota standard-a1-core-count to 4 in tenancy | |
| Set compute-core quota standard-a1-core-regional-count to 4 in tenancy | |
| Set compute-core quota standard-e2-micro-core-count to 2 in tenancy | |
| Set compute-memory quota standard-a1-memory-count to 24 in tenancy | |
| Set compute-memory quota standard-a1-memory-regional-count to 24 in tenancy | |
| Set block-storage quota backup-count to 5 in tenancy | |
| Set block-storage quota total-storage-gb to 200 in tenancy | |
| Set object-storage quota storage-bytes to 21474836480 in tenancy | |
| Set kms quota virtual-vault-count to 10 in tenancy | |
| Set kms quota virtual-vault-keyversion-count to 20 in tenancy |
| [00:00:05.000 --> 00:00:10.000] [music] | |
| [00:00:40.000 --> 00:00:45.000] You know, the world of English is a fun and exciting place to be. | |
| [00:00:45.000 --> 00:00:50.000] I'm so glad you could join me for another lesson. | |
| [00:00:50.000 --> 00:00:55.000] [music] | |
| [00:02:35.000 --> 00:02:40.000] A long time ago, in this sleepy rural idyll, a big change took place. | |
| [00:02:40.000 --> 00:02:46.000] One which would alter the course of our industrial development and go on to change the world forever. | |
| [00:02:46.000 --> 00:02:52.000] That change was made by one man. His name? Abraham Darby. | |
| [00:02:52.000 --> 00:02:57.000] [music] | |
| [00:03:07.000 --> 00:03:12.000] Abraham Darby was born in 1678 at Woodsetton near Sedgley, | |
| [00:03:12.000 --> 00:03:17.000] which at that time was part of the County of Staffordshire. |
| -- toy multipart/form-data parser for https://redbean.dev/ | |
| -- if you want something that actually works, check fullmoon: | |
| -- https://github.com/pkulchenko/fullmoon/blob/9d62cff189b106ddb540c98539861e27c418055f/fullmoon.lua#L267 | |
| Write('<!DOCTYPE html>') | |
| -- boundary -- | |
| local content_type = GetHeader('Content-Type') | |
| local boundary = content_type:match("boundary=(.+)") |
| #!/bin/bash | |
| # Cronic v4 - cron job report wrapper | |
| # Copyright 2007-2016 Chuck Houpt. No rights reserved, whatsoever. | |
| # Copyright 2025. No rights reserved, whatsoever. | |
| # Public Domain CC0: http://creativecommons.org/publicdomain/zero/1.0/ | |
| set -eu | |
| TMP=$(mktemp -d) |