All public logs

From NIMBioS

Combined display of all available logs of NIMBioS. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:59, 10 April 2023 Jstratt7 talk contribs created page Rocky Python HelloWorld (Created page with "= Python Code = '''helloworld.py''' <pre> print("Hello World!") </pre> = Batch Script = '''helloworld.run''' <pre> #!/bin/bash #SBATCH --job-name=PYTHON_HELLOWORLD #SBATCH --output=python_hell0_%j.out module load Python python3 helloworld.py </pre> = Running Job = <pre> [test_user@rocky7 helloworld]$ pwd /home/test_user/projects/python/helloworld </pre> <pre> [test_user@rocky7 helloworld]$ ls helloworld.py helloworld.run </pre> <pre> [test_user@rocky7 helloworld]...")