$ cat /etc/alpine-release
3.13.5
- It can start urbit automatically in the background each time you login to windows
- Has a gui to turn urbit on/off if you don't want it running all the time
- Sets up port forwarding to your host device's ip, which plain wsl makes difficult. So you can access landscape from other devices on your lan, or forward ports to your router to get external access
- Automatic updates to the urbit binary
See https://subject.network/posts/urbit-windows-docker/ for an enhanced take on this guide, with screenshots and more.
| /* | |
| * This document is provided to the public domain under the | |
| * terms of the Creative Commons CC0 public domain license | |
| */ | |
| How to boot Arch Linux ARM in QEMU (patched for M1) | |
| Prerequisites: | |
| QEMU - patched for M1 processors - patches: https://github.com/utmapp/qemu |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| ### extract videos as mp3 files | |
| youtube-dl -x --audio-format mp3 <video link> | |
| ### get highest resolution audio & video | |
| To download a video, you type the URL after the command like so: | |
| youtube-dl <video link> | |
| To select the video quality, first use the -F option to list the available formats, here’s an example, |
| library(dplyr) | |
| library(reshape2) | |
| library(ggplot2) | |
| DataPath="." # you may need to update this if not working from same path | |
| setwd(DataPath) | |
| # Data from version 2.0 of covariates and pooled score estimates from SEDA | |
| # https://cepa.stanford.edu/seda/data-archive |
Nix is a powerful package manager that makes package management reliable and reproducible. It provides atomic upgrades and rollbacks, side-by-side installation of multiple versions of a package, multi-user package management and easy setup of build environments.
- The official manual
- Unofficial user wiki
- Nix Pills – an in depth introduction
| #!/usr/bin/env python3 | |
| import sys | |
| import subprocess as sp | |
| from pathlib import Path | |
| from argparse import ArgumentParser | |
| from configparser import ConfigParser | |
| def ssh(host, cmd): | |
| return sp.check_output(['ssh', host, cmd]).strip().decode() |
| #!/usr/bin/env python3 | |
| from argparse import ArgumentParser | |
| from pathlib import Path | |
| from datetime import datetime, timedelta | |
| import subprocess | |
| from math import log10, sqrt | |
| def prune(seq, key, dist): | |
| pruned = [] |
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.