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
alias sc="git branch --show-current" | |
alias c="git commit " | |
alias s="git status" | |
alias f="git fetch" | |
alias l="git log" | |
alias rl="git reflog" | |
alias a="git add" | |
alias d="git diff" | |
alias pl="git pull" | |
alias psh="git push" |
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 nocompatible | |
syntax on | |
filetype plugin indent on | |
set number | |
set ruler | |
set encoding=utf-8 | |
set wrap | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=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
# Debian 10, buster | |
deb http://deb.debian.org/debian buster main | |
deb-src http://deb.debian.org/debian buster main | |
deb http://deb.debian.org/debian-security/ buster/updates main | |
deb-src http://deb.debian.org/debian-security/ buster/updates main | |
deb http://deb.debian.org/debian buster-updates main | |
deb-src http://deb.debian.org/debian buster-updates main |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetTitleMatchMode, 2 | |
!c:: |
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
add_action('admin_menu', 'function_to_add_menu'); | |
function core37_lp_form_add_menu() | |
{ | |
add_menu_page('Page title', 'Page title', 'edit_posts', 'page-slug', 'function_to_display_ui'); | |
} |