Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
#!/bin/bash | |
export OMIT=0 | |
[ ${DEBUG:=0} -gt 0 ] && set -x -v | |
declare -a DRIVES MODELS CHOICE | |
typeset -x DRIVES MODELS CHOICE CMDS | |
TMPFILE="/tmp/identify_drive.$$" |
Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
. | |
├── CACHEDIR.TAG | |
├── onj3.andrelouis.com | |
│ ├── Doom - E1M1.mid | |
│ ├── E1M1.mid | |
│ ├── MT32_CONTROL.1987-10-07.v1.07.ROM | |
│ ├── MT32_PCM.ROM | |
│ └── phonetones | |
│ ├── Carriers |
—– BEGIN LICENSE —– | |
Mifeng User | |
Single User License | |
EA7E-1184812 | |
C0DAA9CD 6BE825B5 FF935692 1750523A | |
EDF59D3F A3BD6C96 F8D33866 3F1CCCEA | |
1C25BE4D 25B1C4CC 5110C20E 5246CC42 | |
D232C83B C99CCC42 0E32890C B6CBF018 | |
B1D4C178 2F9DDB16 ABAA74E5 95304BEF | |
9D0CCFA9 8AF8F8E2 1E0A955E 4771A576 |
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; |
## Find Available Target Editions | |
DISM.exe /Online /Get-TargetEditions | |
## Convert Server Standard 2019 Evaluation to Server Standard 2019 | |
DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula | |
## How To Activate | |
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX | |
slmgr /skms [server]:[port] | |
slmgr /ato |
#I added a temporary context for taskwarrior using some bash commands and aliases. | |
#Here I show how it works. | |
# | |
#I wanted my bash prompt to show my temporary context, and I wanted that temporary context to be easily set and reset. | |
#you may find this at /usr/share/bash-completion/completions instead of in your home directory | |
source ~/.bash_completion.d/task.sh | |
alias task='task $DEFAULT_TASK_OPTIONS' | |
#short for task add, automatically marking it as something new ("inbox") and for something not work-related |
ls - The most frequently used command in Linux to list directories | |
pwd - Print working directory command in Linux | |
cd - Linux command to navigate through directories | |
mkdir - Command used to create directories in Linux | |
mv - Move or rename files in Linux | |
cp - Similar usage as mv but for copying files in Linux | |
rm - Delete files or directories | |
touch - Create blank/empty files | |
ln - Create symbolic links (shortcuts) to other files | |
cat - Display file contents on the terminal |