An ML model for Natural Language Processing (NLP), developed in 2018 by folks at Google AI Language.
- Sentiment Analysis
- Question Answering
- Text prediction
- Text generation
- Summarization
- Polysemy resolution (Can differentiate words that have multiple meanings, like "bank")
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
#!/bin/bash | |
# Remove existing docker installations | |
echo "Removing existing docker ..." | |
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done | |
# Add Docker's official GPG key: | |
sudo apt-get update | |
sudo apt-get install -y ca-certificates curl gnupg | |
sudo install -m 0755 -d /etc/apt/keyrings |
If you do not have yay
installed, then follow these steps to install it first
yay
yay -S docker docker-compose
- Capital letters do the opposite of small letters in command (Press shift to trigger capital letters)
_
(underscore) to move the cursor at the beginning of line (doesn't switch to insert mode)0
(zero) moves the cursor to the zeroth position of the line (doesn't switch to insert mode)
$
(dollar) to move the cursor at the end of line (doesn't switch to insert mode)d$
will delete from wherever your cursor is till the end of the linef<character>
to move cursor to the first occurrence of<character>
f(
to move cursor to first occurence of(
t<character>
to move cursor to upto but not on the first occurrence of<character>
t(
to move cursor to first occurence of(
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
{ | |
"background": "#181818", | |
"foreground": "p:white", | |
"style": "powerline", | |
"properties": { | |
"display_mode": "environment", | |
"fetch_virtual_env": true, | |
"home_enabled": true | |
}, | |
"type": "python", |
Ctrl + X
kill active processCtrl + D
exit active shellCtrl + L
clear screenCtrl + Z
put current process in background (fg
to bring it back to foregorund)Ctrl + A
to go to front of a lineCtrl + E
to go the end of a lineCtrl + F
to go forward one character (right arrow)Ctrl + B
to go backward one character (left arrow)Alt + F
to go forward one word (vimw
motion)Alt + B
to go backward one word (vimb
motion)
OlderNewer