Jump to content

Programming: Difference between revisions

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


= Be a good programmer =
= Be a good programmer =
[https://hackernoon.com/one-secret-to-becoming-a-great-software-engineer-read-code-467e31f243b0 One secret to becoming a great software engineer: read code]
* [https://hackernoon.com/one-secret-to-becoming-a-great-software-engineer-read-code-467e31f243b0 One secret to becoming a great software engineer: read code]
* [https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1008549 Ten simple rules for quick and dirty scientific programming]


= Code club =
= Code club =

Revision as of 18:46, 11 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

Code Review Developer Guide - Google's Engineering Practices documentation

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