Programming: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
= Collaboration = | = Collaboration = | ||
[https://opensource.com/article/18/5/9-ways-improve-collaboration-developers-designers 9 ways to improve collaboration between developers and designers] | [https://opensource.com/article/18/5/9-ways-improve-collaboration-developers-designers 9 ways to improve collaboration between developers and designers] | ||
== Code review == | |||
[https://google.github.io/eng-practices/review/ Code Review Developer Guide] - Google's Engineering Practices documentation | |||
= Deployment environment = | = Deployment environment = |
Revision as of 21:40, 22 January 2021
Learn any programming language
5 steps to learn any programming language
Collaboration
9 ways to improve collaboration between developers and designers
Code review
Code Review Developer Guide - Google's Engineering Practices documentation
Deployment environment
Coding Standards
- STAT:7400 Computer Intensive Statistics, Luke Tierney
Be a good programmer
One secret to becoming a great software engineer: read code
Code club
Ten simple rules to increase computational skills among biologists with Code Clubs
Tutorials
- https://www.w3schools.com
- TutorialsPoint Offline Version Download 2018 [Full Website] 3GB download. The index.html file shows the bundle is done by HTTrack Website Copier.
Keeping Your Code Clean With Prettier
Keeping Your Code Clean With Prettier, the playground.
$ cat > tmp.js <<EOF (function () { window.alert('ok') }()) EOF $ npx prettier --write tmp.js $ cat tmp.js (function () { window.alert("ok"); })();