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
# elulcao | |
# Beware! This file is rewritten by htop when settings are changed in the interface. | |
# The parser is also very primitive, and not human-friendly. | |
# vim ~/.config/htop/htoprc | |
fields=50 0 48 17 18 38 39 40 2 46 47 49 1 | |
sort_key=111 | |
sort_direction=1 | |
hide_threads=1 | |
hide_kernel_threads=1 |
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
# Initial setup | |
unbind C-b # remap prefix from 'C-b' to 'C-a' | |
set -g prefix C-Space | |
bind-key C-Space send-prefix | |
set -g mouse on # toggle mous | |
set -g mode-keys vi # Use Vi key bindings instead of emacs. | |
set -g status-keys vi | |
set -g base-index 1 # start window numbering at 1 |
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
# Brewfile | |
# Install Homebrew packages via `brew bundle --file brew_packages` | |
brew "azcopy" | |
brew "azure-cli" | |
brew "ca-certificates" | |
brew "cmake" | |
brew "cmatrix" | |
brew "commitizen" | |
brew "cracklib" |
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
" vim-bootstrap 2022-08-30 02:14:37 | |
"***************************************************************************** | |
"" Vim-Plug core | |
"***************************************************************************** | |
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') | |
if has('win32')&&!has('win64') | |
let curl_exists=expand('C:\Windows\Sysnative\curl.exe') |
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
package listfiles | |
import ( | |
"fmt" | |
"os" | |
"regexp" | |
"strings" | |
"sync" | |
) |
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 | |
# Create fixDNS password in Keychain Access for login item | |
PASS=$( security find-generic-password -l "fixDNS" -a fixDNS -w | tr -d '\n' ) | |
# Execute a command with sudo to get a password prompt, next command will be executed with sudo | |
echo "$PASS" | sudo -S true | |
# Execute the command with sudo withing the sudo session | |
echo "$PASS" | sudo -S scutil << EOF |
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
" vim-bootstrap 2022-08-30 02:14:37 | |
"***************************************************************************** | |
"" Vim-Plug core | |
"***************************************************************************** | |
let vimplug_exists=expand('~/.vim/autoload/plug.vim') | |
if has('win32')&&!has('win64') | |
let curl_exists=expand('C:\Windows\Sysnative\curl.exe') | |
else | |
let curl_exists=expand('curl') |
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
// getNextRune returns the next rune in the alphabet | |
func getNextRune(ch rune) rune { | |
return (ch+1-'a')%('z'-'a'+1) + 'a' | |
} |
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
package main | |
import ( | |
"fmt" | |
) | |
// BinaryNode is the placeholder for a number | |
type BinaryNode[T NumberType] struct { | |
value T | |
left *BinaryNode[T] |
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
[user] | |
email = | |
name = | |
signingkey = | |
[core] | |
isWork = true |
NewerOlder