Verifying that I control the following Nostr public key: npub1wprtv89px7z2ut04vvquscpmyfuzvcxttwy2csvla5lvwyj807qqz5aqle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Compile RetroArch using DietPi v9.12.1 on Raspberry Pi Zero W. | |
# Use a microSD of at the very least 8GB. | |
# | |
# Workflow | |
# 1. Enable strict error handling (errexit, nounset, pipefail). | |
# 2. Declare readonly variables for RetroArch user, home directory, and groups. | |
# 3. Create `retro` user (with home directory and locked password) if it doesn't exist. | |
# 4. Define and install all required build dependencies via apt. | |
# 5. Clone RetroArch repository at the specified tag if not already present, and measure clone time. |
$argon2id$v=19$m=64,t=512,p=2$jMCc0BRRtPwLT8NahLB1Fw$2/bQDncskeMW4HKA5Oq3cA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs in Nushell. https://www.nushell.sh/ | |
# Replace `/dev/sda` with whatever drive you want to inspect. | |
# The `-d sat` option might vary in your case. | |
# Most of the time, you do not need this option, at all. | |
smartctl -ajd sat /dev/sda | from json | |
| get ata_smart_attributes.table | |
| select name raw | |
| rename -c [ raw count ] | |
| update cells -c [ count ] { |value| $value.value } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-08-21T12:29:34.126Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
######################################################################### | |
# Copyright (C) 2020 Akito <[email protected]> # | |
# # | |
# This program is free software: you can redistribute it and/or modify # | |
# it under the terms of the GNU General Public License as published by # | |
# the Free Software Foundation, either version 3 of the License, or # | |
# (at your option) any later version. # | |
# # | |
# This program is distributed in the hope that it will be useful, # |