├── LICENSE ├── Makefile ├── README.md ├── nivells.md └── organitzacio.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesm/doing-it-right/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | %.pdf: %.md 2 | pandoc -f markdown -o $@ $< 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesm/doing-it-right/HEAD/README.md -------------------------------------------------------------------------------- /nivells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesm/doing-it-right/HEAD/nivells.md -------------------------------------------------------------------------------- /organitzacio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlesm/doing-it-right/HEAD/organitzacio.md --------------------------------------------------------------------------------