Jump to content

Programming: Difference between revisions

From 太極
Brb (talk | contribs)
Brb (talk | contribs)
Line 24: Line 24:
= Keeping Your Code Clean With Prettier =
= Keeping Your Code Clean With Prettier =
[https://www.makeuseof.com/keeping-code-clean-with-prettier/ Keeping Your Code Clean With Prettier], [https://prettier.io/playground/ the playground].
[https://www.makeuseof.com/keeping-code-clean-with-prettier/ Keeping Your Code Clean With Prettier], [https://prettier.io/playground/ the playground].
<pre>
$ cat > tmp.js <<EOF
(function ()
{
    window.alert('ok')
}())
EOF
$ npx prettier --write tmp.js
$ cat tmp.js
(function () {
  window.alert("ok");
})();
</pre>

Revision as of 10:45, 19 December 2020

Learn any programming language

5 steps to learn any programming language

Collaboration

9 ways to improve collaboration between developers and designers

Deployment environment

Coding Standards

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

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