My TrueNAS Scale server recently started throwing the following zfs module kernel panic on boot:
PANIC at space_map.c:405:space_map_load_callback()
What follows are the steps I took to retrieve the data from the corrupted zfs pool.
const beep = (date) => { | |
const context = new AudioContext(); | |
const oscillator = context.createOscillator(); | |
oscillator.type = "sawtooth"; | |
oscillator.frequency.value = 1200; | |
oscillator.connect(context.destination); | |
oscillator.start(); | |
if (confirm("Появилась запись")) { | |
oscillator.stop(); | |
document.location.href = 'https://q.midpass.ru/ru/Booking/Date?serviceId=54030d6a-e145-08e2-60fb-33344fac2455&date=' + date; |
➜ cat ~/.gnupg/gpg-agent.conf
pinentry-program /opt/homebrew/bin/pinentry-touchid
➜ ✗ cat ~/.config/gopass/gopass_wrapper.sh
const beep = () => { | |
const context = new AudioContext(); | |
const oscillator = context.createOscillator(); | |
oscillator.type = "sawtooth"; | |
oscillator.frequency.value = 1200; | |
oscillator.connect(context.destination); | |
oscillator.start(); | |
if (confirm("Появилась запись")) { | |
oscillator.stop(); | |
} |
#!/usr/bin/env bash | |
# Builds mpv & mpv.app on Apple silicon Macs. | |
# Run this script from the root directory of the mpv repo. | |
# if anything fails, gtfo | |
set -ex | |
meson setup build | |
meson compile -C build |
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim | |
#Install dependencies used by gdal and ora2pg | |
RUN apt-get update && apt-get install -y -q --no-install-recommends \ | |
libc-bin unzip ca-certificates libaio1 wget libtiff-dev libcurl4-openssl-dev \ | |
#Package manager for installing Oracle | |
alien \ | |
# Install postgresql | |
postgresql-client \ | |
# Used for the POSTGRES_HOME variable |
extract bookmarks:
$ gio info -a "metadata::evince::bookmarks" coq-art.pdf \
| sed -n '/metadata::/ s/^.*: //p' > coq-art.bookmarks
and restore its by:
gio set coq-art.pdf 'metadata::evince::bookmarks' "$(cat coq-art.bookmarks)"
{ | |
"title": "Change keyboard layout on cmd press", | |
"rules": [ | |
{ | |
"description": "Change input source to En Birman by left_command; Ru Birman by right_command.", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "left_command", |
From f3d652840f8dd959395065a1cf67ca40b04ec69b Mon Sep 17 00:00:00 2001 | |
From: Joan Bruguera <[email protected]> | |
Date: Tue, 13 Oct 2020 19:35:55 +0200 | |
Subject: [PATCH] Get rid of get_fs/set_fs calls in Broadcom WL driver. | |
Tentative patch for broadcom-wl 6.30.223.271 driver for Linux 5.10 (tested -rc1 up to 5.10.1) | |
Applies on top of all the patches applied to broadcom-wl-dkms 6.30.223.271-23 on Arch Linux. | |
NB: Some checks in wlc_ioctl_internal are likely superfluous, |