$ cd ~
$ doas su
# vnconfig vnd0 backup.enc
# bioctl -c C -l vnd0a softraid0
Passphrase:
softraid0: CRYPTO volume attached as sd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>YOURDOMAIN.emacs</string> | |
<key>Disabled</key> | |
<false/> | |
<key>EnvironmentVariables</key> | |
<dict> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | |
PortSystem 1.0 | |
PortGroup compiler_blacklist_versions 1.0 | |
PortGroup meson 1.0 | |
PortGroup legacysupport 1.0 | |
name mpd | |
# note - versions 0.21.x and beyond require meson, and will require considerable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#titlebar { | |
-moz-box-ordinal-group: 2; | |
} | |
#TabsToolbar .toolbar-items { | |
background: linear-gradient(rgb(215,215,215), rgb(205,205,205)); | |
} | |
#PlacesToolbar .toolbarbutton-icon { | |
visibility: collapse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.screenplay { | |
font-family: Courier Prime; | |
font-size: 12pt; | |
line-height: 1; | |
max-width: 6in; | |
margin: 1em auto; | |
-webkit-text-size-adjust: none; | |
} | |
.screenplay h1, h2, h3, h4, h5, h6 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun toggle-hide-mode-line () | |
"Toggle mode-line visibility in current buffer." | |
(interactive) | |
(if mode-line-format | |
(setq-local mode-line-format nil) | |
(kill-local-variable 'mode-line-format))) | |
(defalias 'hml 'toggle-hide-mode-line) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For A Few Days More | |
written by | |
April Rider | |
April Rider | |
999 George Kaplan St NNW | |
Hitchcock, SD 57000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> | |
<FinalDraft DocumentType="Script" Template="No" Version="1"> | |
<Content> | |
<Paragraph Type="Action" StartsNewPage=""> | |
<Text>FADE IN:</Text> | |
</Paragraph> | |
<Paragraph Number="1" Type="Scene Heading" StartsNewPage=""> | |
<Text>INT. DRISKILL HOTEL SEMINAR ROOM - DAY</Text> | |
</Paragraph> | |
<Paragraph Type="Action" StartsNewPage=""> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:atom="http://www.w3.org/2005/Atom" | |
xmlns:blogChannel="http://backend.userland.com/blogChannelModule" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
xmlns:dcterms="http://purl.org/dc/terms/" | |
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
if [[ $(file "$1") =~ "PNG image data, 1024 x 1024" ]] | |
then echo -e "Input file:\t$1" | |
else echo "Error: Input file must be a PNG image, 1024 x 1024 pixels" | |
exit 1 | |
fi | |
png=$(basename "$1") | |
iconset="${png%.*}.iconset" |
NewerOlder