Basic HTML Structure
<!DOCTYPE html>
<html>
<head>
<title>title</title>
<meta> ... </meta>
<link> ... </link>
assets | |
business | |
accounts receivable | |
bank | |
personal | |
accounts receivable | |
bank | |
cash | |
gifts | |
online |
# OBJECTIVE: Install Arch Linux with encrypted root and swap filesystems with an ENCRYPTED BOOT and boot from UEFI. We will | |
also decrypt and mount our entire encrypted system using a single LUKS passphrase entry. | |
# Note: This method supports both dedicated Arch installs and those who wish to install Arch on a multi-OS-UEFI booting system. | |
# External USB HDD/SSD Installers Notes: Encrypted Arch installs can be booted and run from an external USB HDD or SSD, but | |
# only when the installation is correctly set up. There are several necessary changes to my standard procedure you'll want | |
# to make during the install process. Read my External USB HDD/SSD Installation section below before proceeding. |
module MultipleDispatch | |
export A, A1, A2, f | |
# Abstract type | |
abstract type A end | |
# Concrete types | |
struct A1 <: A end | |
struct A2 <: A end |
using PkgTemplates | |
template = Template(; | |
user="jaantollander", | |
authors="Jaan Tollander de Balsch", | |
julia=v"1.6", | |
dir=".", | |
plugins=[ | |
License(; name="MIT"), | |
GitHubActions(), | |
Documenter{GitHubActions}(), |
# https://unix.stackexchange.com/a/124447 | |
add_to_path() { | |
case ":${PATH:=$1}:" in *:"$1":*) ;; *) PATH="$1:$PATH" ;; esac; | |
} | |
# Example | |
add_to_path $HOME/bin/julia-1.6.1/bin |
# You can choose a Julia release from https://julialang.org/downloads/ | |
# Set URL for downloading Julia binaries | |
JULIA_URL="https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.2-linux-x86_64.tar.gz" | |
# Set name for the downloaded archive | |
JULIA_ARCHIVE="~/julia.tar.gz" | |
# Download the Julia language binaries | |
curl -o ${JULIA_ARCHIVE} ${JULIA_URL} |
module ValueBasedDispatch | |
export MyType, A, B, C, f | |
abstract type MyType end | |
struct A <: MyType end | |
struct B <: MyType end | |
struct C <: MyType end | |
f(::Type{A}) = "Dispatch on argument A" |
# Unicode characters and corresponding LaTeX math mode commands | |
# ************************************************************* | |
# | |
# :Copyright: © 2011 Günter Milde | |
# :Date: Last revised 2011-11-08 | |
# :Licence: This work may be distributed and/or modified under the | |
# conditions of the `LaTeX Project Public License`_, | |
# either version 1.3 of this license or (at your option) | |
# any later version. | |
# |