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
https://msdn.microsoft.com/en-us/library/windows/desktop/aa446632.aspx // Generic Access Rights | |
https://msdn.microsoft.com/en-us/library/windows/desktop/aa379607.aspx // Standard Access Rights | |
https://msdn.microsoft.com/en-us/library/windows/desktop/aa374896.aspx // Access Mask Format | |
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684880.aspx // Process Security and Access Rights | |
Mask Format: | |
bits 0 - 15 [16 bits]: object-specific rights | |
bits 16 - 23 [ 8 bits]: standard access rights | |
bit 24: [ 1 bit]: right to access SACL (ACCESS_SYSTEM_SECURITY) |
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
# BEGIN_KITTY_THEME | |
# Tokyo Night | |
include Everforest.conf | |
# END_KITTY_THEME | |
# Fonts | |
font_family Hack Nerd Font | |
italic_font auto | |
bold_font auto | |
bold_italic_font auto |
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
# Make sure we're up to date first... | |
sudo apt update && sudo apt upgrade -y | |
# Dependencies | |
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev | |
# Let's work in a new directory | |
mkdir installPython ; cd installPython | |
# Download Python3.10 Tar |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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
set -g default-terminal xterm-256color | |
set -g default-shell /bin/zsh | |
set -g default-command /bin/zsh | |
# remap prefix from 'C-b' to 'C-a' | |
# Remember 'C' == CTRL | |
# unbind C-b | |
# set-option -g prefix C-a | |
# bind-key C-a send-prefix |