Monday, May 26, 2014

Fortran Tips

Here I've listed some common fortran tips:

-  The form of the information contained in a variable can also be declared implicitly, e.g. IMPLICIT DOUBLE PRECISION (A-H, O-Z) . [Fortran fundamentals] (Read more)
 -  A program may contain only one blank COMMON block but any number of named COMMON blocks. (Read more)

How to disable Debian 12 sleep on production servers

 Debian 12 has power saver enabled by default which causes your server to go to sleep if there is no mouse / keyboard interaction. To resolv...