Skip to content

Instantly share code, notes, and snippets.

View igorparrabastias's full-sized avatar

Igor Parra Bastias igorparrabastias

View GitHub Profile
stuff1 = function(deferred) {
setTimeout(function() {
console.log("Stuff #1 is done!");
deferred.resolve();
}, 1000);
};
stuff2 = function(deferred) {
setTimeout(function() {
console.log("Stuff #2 is done!");
@igorparrabastias
igorparrabastias / vim.sh
Last active November 17, 2015 13:00
Linux/Bash Commands
# Display the path of the current file at bottom in Vim
# .vimrc
set laststatus=2
set statusline+=#F
# Install full version of Vim in Ubuntu
sudo apt-get remove vim-tiny
sudo apt-get install vim
# Color command line with git branch
# scroll with mouse
set -g mode-mouse on
setw -g mode-mouse on
@igorparrabastias
igorparrabastias / cleanup-codecommit-repos.sh
Created July 20, 2017 01:22 — forked from paulkearney/cleanup-codecommit-repos.sh
Migrating from GitHub to AWS CodeCommit
while read r; do
echo $r
aws codecommit delete-repository --repository-name $r --region us-east-1
done < ~/dev/utility-scripts/aws/codecommit/repos.txt
@igorparrabastias
igorparrabastias / programacion-autodidacta.md
Last active December 27, 2022 09:20
Aprender programación como autodidacta

Para una conocimiento bastante aceptable en modo autodidacta, recomiendo:

Lenguajes:

Hay cientos de lenguajes en uso hoy en día.
Personalmente propongo conocer estos 4 lenguajes si se quiere ir en serio.

Using eslint for projects

Init project

npm init

Add basics packages

npm install eslint jest nodemon --save-dev
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.