Programming: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 1: Line 1:
= TIOBE Index =
= TIOBE Index =
https://www.tiobe.com/tiobe-index/
* https://www.tiobe.com/tiobe-index/
* https://en.wikipedia.org/wiki/TIOBE_index
* Why fortran and cobol are still used? [https://www.matecdev.com/posts/why-fortran-still-used.html Fortran is still used because they are specialized for high-performance computing].  [https://www.itprotoday.com/programming-languages/cobol-language-still-demand-application-modernization-efforts-take-hold Ninety-two percent] of organizations view their COBOL application workloads as being strategic for their business operations.


= Learn any programming language =
= Learn any programming language =

Revision as of 13:37, 19 August 2023

TIOBE Index

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