This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export CONDA_DIR="$HOME/.miniconda" | |
source ~/your/path/conda-lazy.zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export SDKMAN_DIR="$HOME/.sdkman" | |
source ~/your/path/sdkman-lazy.zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- dev | |
name: 🚀 Deploy website on push | |
jobs: | |
web-deploy: | |
name: 🎉 Deploy | |
runs-on: ubuntu-latest | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.286 | |
TITLE 'Sustituir cadenas' | |
;─────── Macros ──────┐ | |
printS MACRO str | |
MOV AH, 09h | |
LEA DX, str | |
INT 21h | |
ENDM | |
;─────────────────────┘ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
## ______ _ _ | |
## | ____| (_) | | | |
## | |__ __ _ _ __ _ __| | | |
## | __|/ _` || '__|| | / _` | | |
## | | | (_| || | | || (_| | | |
## |_| \__,_||_| |_| \__,_| | |
## @author Carlos Farid Nogales López |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default editor | |
# (If you do not have program in the PATH environment variable use the absolute path of the program) | |
[core] | |
editor = vim | |
#editor = code --wait | |
#editor = "C:/Users/Farid/AppData/Local/Programs/Microsoft\\ VS\\ Code/Code.exe" --wait | |
# Name & Email | |
[user] | |
email = [email protected] |