Skip to content

Instantly share code, notes, and snippets.

@aaronlauterer
aaronlauterer / Arch-ZFSRoot-on-dm-crypt-UEFI
Last active November 5, 2017 11:18
ZFSRoot installation over a dm-crypt volume for Arch Linux (UEFI)
# arch uefi dm-crypt zfsroot install (archiso)
# modified to work with current repos as of 2016-06-16 and with hints from
# comments by larskotthoff
# uses only one boot partition for EFI and initramfs
# partition disk
# start at 1MB (sector 2048)
512Mib EFI
@aaronlauterer
aaronlauterer / component-app.js
Created June 2, 2022 23:47 — forked from kesor/component-app.js
Vue.js 3.x with ES6 modules in the browser using import-map
import { defineAsyncComponent } from 'vue'
const Content = defineAsyncComponent(() => import('./component-content.js'))
export default {
name: 'App',
components: { Content },
template: /*html*/`
<Content />
`