#needs root access, remove the backdoored curve hostkeys that infect everything now and revert to safe rsa | |
rm -v /etc/ssh/*ed25519* | |
sed -i 's/#HostKey\ \/etc\/ssh\/ssh_host_rsa_key/HostKey\ \/etc\/ssh\/ssh_host_rsa_key/g' /etc/ssh/sshd_config | |
systemctl restart ssh |
#https://llm.datasette.io/en/stable/index.html | |
#https://github.com/simonw/llm | |
llm '### Instruction: $input\n###Response: ' -s 'You are a helpful AI assistant.' --save orca | |
llm chat -o stop '###' -t orca |
function matrixRain() { | |
const canvas = document.createElement("canvas"); | |
canvas.width = window.innerWidth; | |
canvas.height = window.innerHeight; | |
canvas.style.position = "fixed"; | |
canvas.style.top = 0; | |
canvas.style.left = 0; | |
canvas.style.zIndex = -1; | |
document.body.appendChild(canvas); |
#!/usr/bin/sh | |
# WARNING: Might brick your TV | |
set -e | |
TEMP_DIR=tmp-tcl-debloater | |
KODI_URL=https://mirrors.kodi.tv/releases/android/arm/kodi-20.1-Nexus-armeabi-v7a.apk | |
FLAUNCHER_URL=https://gitlab.com/flauncher/flauncher/-/releases/0.18.0/downloads/flauncher-0.18.0.apk | |
MATERIALFILES_URL=https://f-droid.org/repo/me.zhanghai.android.files_31.apk | |
BLOAT=$(cat <<EOF | |
com.tcl.partnercustomizer | |
com.tcl.smartalexa |
Hello. In this document, we will walk through the steps of building and hosting your own Monero node from source on a Debian-based Linux system. These systems include Raspbian, Debian (9 and above), and Ubuntu (18.04 and above). This tutorial assumes that you are capable of accessing the ROOT terminal of your Debian-based system, and are capable of getting your system online if necessary. You may plan on using an external storage device to store the blockchain, this tutorial will include the optional steps to support external storage. Alternatively, this setup procedure can also accomodate users looking to host a pruned blockchain with restricted storage space.
Here are some useful links for reaching this prerequisite if you do not currently have access to a Debian-based system that meets the recommended system requirements.
-
[How to spawn a VP
// See: https://apple.stackexchange.com/questions/328329/is-there-a-way-via-the-command-line-to-cause-icloud-files-to-download | |
import Foundation | |
func main() { | |
let fm = FileManager.default | |
for path in CommandLine.arguments[1...] { | |
let url = NSURL.fileURL(withPath: path) | |
guard fm.fileExists(atPath: url.path) else { |
[disk]:\Users\[user]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup |
#!/bin/bash | |
export TARGET=amd64-marcel-freebsd9.2 | |
export PREFIX=/usr/cross-build | |
export TARGET_PREFIX=$PREFIX/$TARGET | |
export PATH=$PATH:$PREFIX/bin | |
mkdir -p $TARGET_PREFIX{,/lib,/include} | |
mkdir build-{binutils,gmp,mpfr,mpci,gcc} |
#!/bin/bash | |
user="CHANGEME" | |
pages=$(curl -I https://api.github.com/users/$user/starred | sed -nr 's/^Link:.*page=([0-9]+).*/\1/p') | |
for page in $(seq 0 $pages); do | |
curl "https://api.github.com/users/$user/starred?page=$page&per_page=100" | jq -r '.[].html_url' | | |
while read rp; do | |
git clone $rp | |
done |