Instructions for Effective Python adapted from https://github.com/SigmaQuan/Better-Python-59-Ways
-
- There are two major version of Python still in active use: Python 2 and Python 3.
-
- There are multiple popular runtimes for Python: CPython, Jython,
Instructions for Effective Python adapted from https://github.com/SigmaQuan/Better-Python-59-Ways
Forked from: https://github.com/pthethanh/effective-go
This page collects common comments made during reviews of Go code and some best practices collected from different sources.
You can view this as a supplement to Effective Go.
Run gofmt on your code to automatically fix the majority of mechanical style issues. Almost all Go code in the wild uses gofmt. The rest of this document addresses non-mechanical style points.
| set constantshow | |
| include "/usr/share/nano/*.nanorc" |
| FROM python:3.6-slim | |
| # install node | |
| RUN apt-get -y update | |
| RUN apt-get -y install curl | |
| RUN curl -sL https://deb.nodesource.com/setup_8.x | bash | |
| RUN apt-get -y install nodejs | |
| WORKDIR /app |