##MONGODB & PYTHON
###Ubuntu Install
sudo apt-get install mongodb
pip install pymongo
Table - Collection
Column - Property
Row - Document
##MONGODB & PYTHON
###Ubuntu Install
sudo apt-get install mongodb
pip install pymongo
Table - Collection
Column - Property
Row - Document
apiVersion: cert-manager.io/v1 | |
kind: Issuer | |
metadata: | |
name: letsencrypt-staging | |
namespace: cert-manager | |
spec: | |
acme: | |
email: [email protected] | |
server: https://acme-staging-v02.api.letsencrypt.org/directory | |
privateKeySecretRef: |
[Application Options] | |
lnddir=/home/bitcoin/lnd_data | |
maxpendingchannels=10 | |
alias=YOURALIAS | |
rpclisten=0.0.0.0:10009 | |
[Bitcoin] | |
bitcoin.active=1 | |
bitcoin.mainnet=1 | |
bitcoin.node=bitcoind |
class LinkedListNode { | |
constructor(value, next) { | |
this.value = value; | |
this.next = next || null; | |
} | |
} | |
class LinkedList { | |
constructor(value) { | |
this.size = 0; |
Sophos Anti Virus hogging your processor? Can't remove it because of tamper protection?
# change into preferences
cd /Library/Preferences
# confirm locations of sophos files
ls com.sophos.*
sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting