PACKAGE=libuconfig
VERSION=0.8.2b1
PREFIX=${PACKAGE}_${VERSION}
create source archive:
// ==UserScript== | |
// @name dark mode - gist.github.com | |
// @namespace Violentmonkey Scripts | |
// @match https://gist.github.com/* | |
// @grant none | |
// @version 1.0 | |
// @author [email protected] | |
// @description 1/15/2021: Gist deserves the same dark mode as GitHub. | |
// ==/UserScript== | |
document.firstElementChild.setAttribute("data-color-mode", "dark"); |
#!/bin/bash | |
# $1 is the command to audit (it will be run) | |
echo "my pid: $$" | |
# Log all chidren of this shell | |
auditctl -a always,exit -S all -F ppid=$$ | |
$1 |
#!/bin/env -S deno -q run | |
import yargs from 'https://deno.land/x/yargs/deno.ts' | |
function readStdin(): AsyncIterable<string> { | |
return { | |
[Symbol.asyncIterator]: async function* () { | |
const buffer = new Uint8Array(1024); | |
const decoder = new TextDecoder(); |
PACKAGE=libuconfig
VERSION=0.8.2b1
PREFIX=${PACKAGE}_${VERSION}
create source archive:
In this example I'm installing Tails to the internal storage of an ASUS Chromebook C302 with mrchromebox's EFI firmware. The steps should be the same for any Tails-supported EFI computer.
My internal disk is mmcblk0
and its first partition is mmcblk0p1
and my Tails USB drive is sda
and its first partition is sda1
. Yours may differ, so substitue appropriately.
The Tails installer doesn't seem to want to install to internal storage even though mine's recognized as an SD card.
Boot Tails as normal but set a root password in "Additional Settings".
Launch "Root Terminal".
Create partitions on internal storage with the same geometry as the Tails partitions.
#!/bin/bash | |
# /usr/local/bin/autobacklight | |
BL_DARK=15 | |
BL_BRIGHT=187 | |
SOLAR_NOON=17:15Z | |
now_s=$(date +%s) | |
noon_s=$(date -d "${SOLAR_NOON}" +%s) |
import { AffineTransform } from "./math/2d/AffineTransform"; | |
import { M } from "./math/2d/M"; | |
import { V } from "./math/2d/V"; | |
const R = [ | |
M(1, 0, 0, 1), | |
M(0, 1, 1, 0), | |
M(0, 1, 1, 0), | |
M(-1, 0, 0, -1), | |
]; |
#!/usr/bin/bash | |
# Favor internal HiDPI | |
# 0: +*eDP-1 3200/293x1800/165+3840+600 eDP-1 | |
# 1: +DP-2 3840/546x2400/352+0+0 DP-2 | |
#xrandr \ | |
# --fb 7040x2400 \ | |
# --output eDP-1 --mode 3200x1800 --pos 3840x600 \ | |
# --output DP-2 --scale 2x2 --mode 1920x1200 --pos 0x0 |
/^\s*(-|\+)?\d*(\d|\.\d|\d\.)\d*(e(\+|-)?\d+)?\s*$/ |
[Desktop Entry] | |
Type=Application | |
Version=1.1 | |
Name=Firefox Quantum: Developer Edition | |
GenericName=Web Browser | |
Categories=Network;WebBrowser; | |
Icon=/home/m/.opt/firefox/browser/chrome/icons/default/default128.png | |
Exec=/home/m/.opt/firefox/firefox-bin %u | |
Terminal=false | |
# From firefox-esr.desktop |