| Object type |
|
|
|---|---|---|
| Creation date | 2025-02-05T06:03:44Z | |
| Created by |
|
|
| id | bafyreihlh4qi4aoabb2mqs5j7xqvzenkcmpkmxeh3od5jilevvjj26a3aa |
This guide assumes you want to manually creating the pool, to change default settings, or to not use the entire disk. If you just want to setup ZFS on the entire disk, use the 'ZFS' option in the bsdinstall partitioning menu.
Add some partitions for FreeBSD to use: a freebsd-swap partition and a freebsd-zfs partition.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
rg --color=always --line-number "TODO|FIXME|XXX|HACK|BUG|NOTE" | \
fzf --ansi \
--delimiter : \
--preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
--preview-window '+{2}-/2'
This file contains hidden or 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
| [package] | |
| name = "tw-powerball-rs" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| rand = "0.9" |
This file contains hidden or 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
| package main | |
| import ( | |
| "crypto" | |
| "crypto/ecdsa" | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/x509" | |
| "crypto/x509/pkix" | |
| "encoding/base64" |
Start chrome browser with Profile 1 in a new tab.
$ open -a "Google Chrome" --args --profile-directory="Profile 1"
Start Brave browser with Default in a new tab.
$ /Applications/Brave\ Browser/Contents/MacOS/Brave\ Browser --profile-directory="Default"
This file contains hidden or 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
| package main | |
| import ( | |
| "math/rand" | |
| "path/filepath" | |
| "time" | |
| "github.com/go-ole/go-ole" | |
| "github.com/go-ole/go-ole/oleutil" | |
| "github.com/scjalliance/comshim" |
This file contains hidden or 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
| #include <assert.h> | |
| #include <ole2.h> | |
| #include <iostream> | |
| #include <memory> | |
| #include <sstream> | |
| #include <vector> | |
| template <class T> | |
| void SafeRelease(T **ppT) { |
NewerOlder