Skip to content

Instantly share code, notes, and snippets.

View anquegi's full-sized avatar

Antonio Juan Querol anquegi

View GitHub Profile
@tsara27
tsara27 / README.md
Last active January 6, 2023 01:04
RMagick 2.16.0 installation on Arch Linux/Manjaro

Installation Guidance

  1. Install libmagick6 via terminal.
sudo pacman -S libmagick
  1. Install Homebrew for Linux. https://docs.brew.sh/Homebrew-on-Linux
  2. Install ImageMagick6 via homebrew.
brew install imagemagick@6
@cristovao-trevisan
cristovao-trevisan / 1 - .zshrc
Last active June 9, 2021 15:19
zsh configuration using zinit
# # 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
@MakuSensei
MakuSensei / Guia de instalacion de ArchLinux
Last active November 15, 2023 18:46
Guia de instalacion de ArchLinux By MakuSensei
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"
@jaseemabid
jaseemabid / emacs.org
Created March 3, 2016 20:03
Setup Emacs dev env for Erlang

Setup with Emacs Development environment with EDTS, Flycheck and use-package

This tutorial assumes a reasonably new version of Emacs (24.4+)

EDTS

Erlang Development Tool Suite aims to provide common IDE like functionality.

Use-package

@grenade
grenade / 01-generate-ed25519-ssh-key.sh
Last active June 7, 2024 23:10
generate ed25519 ssh and gpg/pgp keys and set file permissions for ssh keys and config
#!/bin/bash
# generate new personal ed25519 ssh key
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <rthijssen@gmail.com>"
# generate new host cert authority (host_ca) ed25519 ssh key
# used for signing host keys and creating host certs
ssh-keygen -t ed25519 -f manta_host_ca -C manta.network
eval "$(ssh-agent -s)"