ipfs daemon
ipfs pin RESOURCE_HASH
ipfs name publish FOLDER_HASH
Resources:
ipfs daemon
ipfs pin RESOURCE_HASH
ipfs name publish FOLDER_HASH
Resources:
DEL _element_
# https://confluence.atlassian.com/bitbucketserver/using-gpg-keys-913477014.html | |
# generate your gpg keys | |
gpg --gen-key | |
# fill prompt questions | |
gpg --list-keys | |
gpg --list-secret-keys --keyid-format LONG | |
# import/export keys: https://www.debuntu.org/how-to-importexport-gpg-key-pair/ | |
# show hash id of your keys |
This is a quick tutorial on how to start using Spacemacs coming from Sublime Text.
After installing Spacemacs, boot it up:
$ emacs
Open up a file by hitting SPACE f f, you can then locate and open a file by path with tab completion and ending with ENTER
# install node with official installer or
brew install n
sudo chown -R $USER /usr/local/lib/node_modules
osx
brew install python
brew install [email protected]
brew install pyenv
pyenv install 3.6.5
pyenv global 3.6.5
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
apt-get update
apt-get install -y htop vim wget curl
sudo chown trueno .ssh
ssh-keygen -t rsa -b 4096 -C "[email protected]"
FROM ubuntu:16.04 | |
MAINTAINER jitsi-meet <[email protected]> | |
ARG DEBIAN_FRONTEND=noninteractive | |
# we want python to output everything that's printed inside the app rather than buffering it | |
# ENV PYTHONUNBUFFERED 1 | |
# update apt-get | |
RUN apt-get update | |
RUN apt-get install -y htop vim wget curl apt-transport-https |