Skip to content
View gitkass's full-sized avatar

Block or report gitkass

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gitkass/README.md

About gitkass

hello world

slush commands

curl -fsSL https://tailscale.com/install.sh | sh
curl -sSf -L https://install.lix.systems/lix | sh -s -- install
curl -sfL https://direnv.net/install.sh | bash

git setup

~/.gitconfig:

[user]
    email = [email protected]
	name = kass

[gitlab]
    user = gitkass

[github]
    user = gitkass

[includeIf "gitdir:~/devgl/"]
	path = ~/.gitconfig.gitlab

[includeIf "gitdir:~/devgh/"]
	path = ~/.gitconfig.github

[includeIf "gitdir:~/hub/"]
	path = ~/.gitconfig.github

...

~/.gitconfig.gitlab

[user]
    email = [email protected]
    name = gitkass

[gitlab]
    user = gitkass

~/.gitconfig.github

[user]
    name = gitkass
    email = [email protected]

[github]
    user = gitkass

markdown tidbits

Note

The following information is useful.

Tip

Tip of the day.

Important

This is something important you should know.

Caution

You need to be very careful about the following.

Warning

The following would be dangerous.

macOS slush

Reboot with filevault

IMMEDIATE=0
NEVER=-1

delay="$NEVER" sudo fdesetup authrestart -delayminutes "$delay"

Secure erase drives

LEVEL_ZERO_FILL=0 # Single-pass zero fill erase.
LEVEL_ONE_RANDOM_PASS=1 #Single-pass random fill erase.
LEVEL_SEVEN_ZERO_ONE_RANDOM_PASS=2 # 2 #Seven-pass erase, consisting of zero fills and all-ones fills plus a final random fill.
LEVEL_GUTMANN=3 #Gutmann algorithm 35-pass erase.
LEVEL_THREE_PASS=4 #Three-pass erase, consisting of two random fills  plus a final zero fill.

erase_level="$LEVEL_ONE_RANDOM_PASS"
target_disk="disk4"
diskutil secureErase "$erase_level" "/dev/$target_disk"

Pinned Loading

  1. dotfiles dotfiles Public

    https://www.chezmoi.io/reference/commands/init/

    Nix 1