Skip to content

Instantly share code, notes, and snippets.

View mrluisfer's full-sized avatar
Focused – deep in code, one commit at a time.

Luis Alvarez mrluisfer

Focused – deep in code, one commit at a time.
View GitHub Profile
@adibhanna
adibhanna / config
Last active December 3, 2025 16:15
Ghostty config
font-family = BerkeleyMono Nerd Font
#font-family = Iosevka Nerd Font
# font-family = SFMono Nerd Font
font-size = 20
theme = GruvboxDarkHard
shell-integration-features = no-cursor,sudo,no-title
cursor-style = block
adjust-cell-height = 35%
# background-opacity = 0.96
@mrluisfer
mrluisfer / install-git-ubuntu.sh
Created September 15, 2021 04:17
Install the latest version of Git on Ubuntu-based distributions 🌿
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git -y
git --version
# If your system doesn't have add-apt-repository, you can install it via:
sudo apt-get install python-software-properties software-properties-common
@mrluisfer
mrluisfer / install-neovim.sh
Last active October 4, 2021 22:37
⚡ These are the commands with which we can install Neovim 0.5 or latest in Ubuntu-based distributions and others OS
# Ubunt Based Dist
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
sudo apt-get install neovim
# Arch Linux
sudo pacman -S neovim
# Fedora
sudo dnf install -y neovim python3-neovim
# For the icons of the packages and languages to be displayed correctly you need to install a Nerd Font
# You can do it with the following link
# https://www.nerdfonts.com
[line_break]
disabled = false
[character]
success_symbol = "[ ](bold blue)"
@SkyLissh
SkyLissh / .vimrc
Last active April 7, 2022 06:39
Vim configuration & Plugins
set number
set mouse=a
set numberwidth=1
set clipboard=unnamedplus
syntax enable
set showcmd
set ruler
set encoding=utf-8
set showmatch
set sw=2
@Klerith
Klerith / Instalaciones-React.md
Last active September 19, 2025 22:54
Instalaciones recomendadas para mi curso de React de cero a experto
@bradtraversy
bradtraversy / mysql_cheat_sheet.md
Last active December 5, 2025 03:48
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@lopspower
lopspower / README.md
Last active December 5, 2025 13:16
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha: