Archived from linux-mips.vger.kernel.org archive mirror with minor style fixes.
- From: Serge Semin
- Subject: linux: Goodbye from a Linux community volunteer
- Date: Thu, 24 Oct 2024 07:27:41 +0300
Hello Linux-kernel community,
| // ==UserScript== | |
| // @name GitHub info on Typst Universe | |
| // @name:zh-CN ε¨ Typst Universe δΈζΎη€Ί GitHub δΏ‘ζ― | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1.1 | |
| // @description Display information about the GitHub repository on typst.app/universe | |
| // @description:zh-CN ε¨ typst.app/universe δΈζΎη€Ί GitHub δ»εΊηδΏ‘ζ― | |
| // @author Y.D.X. | |
| // @match https://typst.app/universe/package/* | |
| // @icon https://simpleicons.org/icons/typst.svg |
Archived from linux-mips.vger.kernel.org archive mirror with minor style fixes.
Hello Linux-kernel community,
Extract chapters from an audio using ffprobe.
$ curl -LO https://static.thetype.cloud/typechat/typechat157.mp3
$ ffprobe typechat157.mp3
β¦
Metadata:
album : εθ°εη
| /// Make equations numbered by chapters (heading level 1) | |
| /// | |
| /// Only works if headings are numbered. | |
| /// | |
| /// # Usage | |
| /// | |
| /// ``` | |
| /// #show: equation-numbering-rules | |
| /// #set heading(numbering: "1.") | |
| /// |
This is a simple script to get changelog of an app in scoop. It fetches changelog from GitHub releases or CHANGELOG.md.
Add the following to your PowerShell $PROFILE, and try Get-Changelog <App>.
<#
.SYNOPSIS
Get changelog of an app in scoop
.NOTES
Prerequisites:| #!/usr/bin/env bash | |
| set -euo pipefail | |
| help() { | |
| cat <<'EOF' | |
| ζδΊ€δ½δΈε° course.educg.net | |
| Usage | |
| submit PROBLEM_ID ASSIGN_ID FOLDER |
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Serve", | |
| "command": "mkdocs", | |
| "type": "process", | |
| "args": [ | |
| "serve", | |
| ], |
| #!/bin/bash | |
| status=`bitsrun status --json | jq '.error' --raw-output` | |
| if [[ $status != 'ok' ]]; then | |
| echo "Status: $status. Reloginβ¦" | |
| bitsrun logout | |
| bitsrun login | |
| fi |
Help or see manual with bat.
Add the following to your PowerShell $PROFILE, and try batman pip install.
<#
.SYNOPSIS
Help or see manual with bat
.NOTES