Skip to content

Instantly share code, notes, and snippets.

View baspiotr's full-sized avatar

Piotr Basiński baspiotr

View GitHub Profile
@baspiotr
baspiotr / git-cheat-sheet.md
Created January 6, 2020 19:04 — forked from prograhammer/git-cheat-sheet.md
Git cheat sheet for some useful Git commands and command scenarios.
@baspiotr
baspiotr / gist:b7fc9e81cdeadd47a03c6a9636e4dcf2
Created January 1, 2020 20:17
Visual Studio Code fav plugins
1. Auto Rename Tag - https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag
2. Bracket Pair Colorizer 2 - https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer-2
3. npm Intellisense - https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense
4. Path Intellisense - https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense
5. Prettier - Code formatter - https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
6. Simple React Snippets - https://marketplace.visualstudio.com/items?itemName=burkeholland.simple-react-snippets
@baspiotr
baspiotr / piotr-docker-node-mongo.txt
Last active October 20, 2019 20:45
Node express mongo nodemon docker cheat sheet
docker-compose.yml
version: '3'
services:
app:
container_name: docker-node-mongo
restart: always
build: .
ports:
- '3000:3000'