Programming: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 5: Line 5:
* [https://www.makeuseof.com/tag/best-free-udemy-courses/ The 10 Best Free Udemy Courses]
* [https://www.makeuseof.com/tag/best-free-udemy-courses/ The 10 Best Free Udemy Courses]
* [https://www.makeuseof.com/category/programming/ PROGRAMMING] by MakeUseOf.
* [https://www.makeuseof.com/category/programming/ PROGRAMMING] by MakeUseOf.
= Variable naming =
[https://builtin.com/data-science/variable-names Data Scientists, Your Variable Names Are a Mess. Clean Up Your Code]


= Collaboration =
= Collaboration =

Revision as of 12:34, 22 November 2022

Learn any programming language

Variable naming

Data Scientists, Your Variable Names Are a Mess. Clean Up Your Code

Collaboration

9 ways to improve collaboration between developers and designers

Code review

Deployment environment

Coding Standards

Be a good programmer

Research code

The Good Research Code Handbook

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