Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"| alias nw="npm run watch" | |
| alias gitpersonal="git config --global user.name 'My Name' && git config --global user.email [email protected]" | |
| PATH_TO_REPOS=/Users/me/somerepos | |
| alias zz="cd $HOME" | |
| alias zdev="cd $HOME/devnotes" | |
| alias cz="cd ../" | |
| alias goup="cd ../" | |
| alias goback="cd -" | |
| alias zdev="cd ~/devnotes" | |
| alias lll="ls -lhatr" |
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"In your command-line run the following commands:
brew doctorbrew update| const getDB = require('../../bbdd/db'); | |
| const { formatDate, validate } = require('../../helpers'); | |
| const { | |
| newSchemaEditExperience, | |
| } = require('../../validations/newSchemaEditExperience'); | |
| const editExperience = async (req, res, next) => { | |
| let connection; | |
| let sqlExperience = 'SELECT * FROM experiences'; | |
| try { |
After you've installed nvim do an alias so nvim is called automatically:
alias vim=nvimApparently the folder ~/.vim needs to be mapped to ~/.config/nvim since that's where nvim lives,
then also the .vimrc to the init.vim (recommend: back it up first just in case)
Float bug safari demo:
https://codepen.io/smohadjer/pen/RLBKGb
Additional notes
According to w3schools positioned element parent and a child with absolute will position relative to the positioned element parent
| const showdown = require('showdown'), | |
| converter = new showdown.Converter(); | |
| const fs = require('fs'); | |
| const cwd= __dirname; | |
| try { | |
| // 1. Update the path to the markdown file | |
| var text = fs.readFileSync('path/to/MARKDOWN_FILE.md', 'utf8'); | |
| var html = converter.makeHtml(text.toString()); | |
| // 2. change this title |