Skip to content

Instantly share code, notes, and snippets.

View peterotool's full-sized avatar
🎯
Focusing

José Pedro Cordero peterotool

🎯
Focusing
  • Santiago, Chile
View GitHub Profile
@peterotool
peterotool / poetry.md
Last active July 17, 2023 16:34
Poetry

Poetry

Why Poetry?

  • Poetry lets you easily define and install dependencies
  • And resolve dependency issues automatically
  • Bonus: Poetry makes it super easy to pusblish libraries to PyPI

Other tools to create virtual environments

@peterotool
peterotool / nuphy_keymaps_linux.md
Last active July 12, 2023 18:26
Nuphy keymaps Linux

Linux keymaps Commands

xev command

❯ tldr xev

  xev
@peterotool
peterotool / pre-commit.md
Last active July 17, 2023 15:48
Pre-Commit Hook Setup

Pre-commit (catch errors before a commit happens)

Alternative 1

  1. Install pre-commit package
@peterotool
peterotool / Docker commands.md
Last active June 13, 2023 03:05
docker commands

Docker Commands

docker images # list all download images
docker image rmi <IMAGE ID> # purge image
docker image rmi <REPOSITORY:TAG> # purge image
docker rmi $(docker images -a -q) # remove all images

docker run -it <image> bash # Running the run command with the -it flags attaches us to an interactive tty in the container.