- Disable git hooks
git config core.hooksPath no-hooks
- Re-enable git hooks
git config --unset core.hooksPath
git config core.hooksPath no-hooks
git config --unset core.hooksPath
Todo el mes de febrero estaremos tratando sobre grafos, a continuación los recursos de cada una de las sesiones
Las grabaciones quedan https://www.youtube.com/playlist?list=PLRMfC7A6yJWqJ6x-Xw4Fmrpx-4N5wPjQH
These are my notes, not a generic solution. They are not meant to work anywhere outside my machines. Update version numbers to whatever are the current ones while you do this.
asdf
lives in https://github.com/asdf-vm/asdf
Follow its installation instructions, which at the moment of writing were:
alias rubo_changes="git ls-files -m | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs rubocop" |
Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux
Although I highly recommend using a snap
sudo snap install postman
tar -xzf Postman-linux-x64-5.3.2.tar.gz
# Create basic text file | |
# http://ruby-doc.org/core-2.2.0/File.html | |
datos = [1, 2, 3, 4, 5, 7, 8] | |
File.open("path/to/ejemplo.txt", "w") do |f| | |
datos.each do |dato| | |
f.puts "Dato #{dato}" | |
end | |
end | |