This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
[ Update 2025-03-24: Commenting is disabled permanently. Previous comments are archived at web.archive.org. ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
# Installation on Dell XPS 9570 | |
# Connect to Internet | |
wifi-menu | |
# Sync clock | |
timedatectl set-ntp true | |
# Create three partitions: |
TypeScript 1 hr 8 mins βββββββββββββββββββββ 58.3% | |
Markdown 14 mins βββββββββββββββββββββ 12.4% | |
JavaScript 11 mins βββββββββββββββββββββ 10.0% | |
JSON 11 mins βββββββββββββββββββββ 9.7% | |
Go 9 mins βββββββββββββββββββββ 7.8% |
I can't take credit for much of the work here -- I adapted it from this blog post: https://tech.willhaben.at/mongodb-incremental-backups-dff4c8f54d58
My main contribution was to make it a little easier to use with docker as well as numerous little cleanup tasks. I also made it gzip the oplog backups and added support for SSL connections
Note that I havne't yet tested the point in time restore script; it likely needs work, particularly to make things work with the gzipped oplog files
/* | |
* Inspired by, but a nearly complete rewrite of: | |
* slowcat.c - slow down the display of a file | |
* copyright (c) 2001,2002,2007 dave w capella All Rights Reserved | |
* found here: | |
* https://grox.net/software/mine/slowcat/ | |
* in August 2020. | |
* | |
* Original license (unchanged): | |
* * distributed under the terms of the GNU Public license |
nothing = new Proxy(Object.freeze(Object.create(null)), { | |
get(target, property) { | |
if (property === Symbol.toPrimitive) return () => undefined | |
return nothing | |
}, | |
set() { | |
return nothing | |
} | |
}) |