There are several ways to clone a repository from github. Similar from other providers, such as bitbucket, gitlab, etc.
https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols
Mostly, we use
- http
- ssh
There are several ways to clone a repository from github. Similar from other providers, such as bitbucket, gitlab, etc.
https://git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols
Mostly, we use
libmagick6
via terminal.sudo pacman -S libmagick
brew install imagemagick@6
# # SDKMAN | |
# export SDKMAN_DIR="$HOME/.sdkman" | |
# [[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" | |
# GO | |
export PATH="$PATH:$HOME/go/bin" | |
# ZINIT | |
if [[ ! -f $HOME/.zinit/bin/zinit.zsh ]]; then |
# use a certain pyenv version | |
use_python() { | |
if [ -n "$(which pyenv)" ]; then | |
local pyversion=$1 | |
pyenv local ${pyversion} | |
fi | |
} | |
layout_virtualenv() { | |
local pyversion=$1 |
Guia de instalacion de ArchLinux | |
By MakuSensei | |
Descargar iso https://www.archlinux.org/download/ | |
Configurar teclado en Español | |
loadkeys la-latin1 | |
Creando particiones | |
usar: cfdisk |
rustup component add rust-src | |
export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" |
This tutorial assumes a reasonably new version of Emacs (24.4+)
Erlang Development Tool Suite aims to provide common IDE like functionality.
#!/bin/bash | |
mkdir -p ~/.ssh | |
# generate new personal ed25519 ssh keys | |
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <[email protected]>" | |
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <[email protected]>" | |
# generate new host cert authority (host_ca) ed25519 ssh key | |
# used for signing host keys and creating host certs |