Jump to content

Programming: Difference between revisions

From 太極
Brb (talk | contribs)
Brb (talk | contribs)
Line 6: Line 6:


== Code review ==
== Code review ==
[https://google.github.io/eng-practices/review/ Code Review Developer Guide] - Google's Engineering Practices documentation
* [https://google.github.io/eng-practices/review/ Code Review Developer Guide] - Google's Engineering Practices documentation
* [https://codexvalue.com/blog/psa/code-review-checklist-r-code-edition-top-3/ Code Review Checklist R Code Edition Top 3]


= Deployment environment =
= Deployment environment =

Revision as of 11:46, 15 March 2021

Learn any programming language

5 steps to learn any programming language

Collaboration

9 ways to improve collaboration between developers and designers

Code review

Deployment environment

Coding Standards

Be a good programmer

Code club

Ten simple rules to increase computational skills among biologists with Code Clubs

Tutorials

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");
})();