From 45ce1c3909d9b74fbbd898c302728b24d8d988ef Mon Sep 17 00:00:00 2001 From: costaki Date: Fri, 3 Jun 2022 15:20:38 -0500 Subject: [PATCH 1/2] added a space between a . and a word --- systems/credentials.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/credentials.md b/systems/credentials.md index acc8b3d..743d842 100644 --- a/systems/credentials.md +++ b/systems/credentials.md @@ -20,7 +20,7 @@ awk -v ORS='\\n' '1' private_key_name ``` It is important to note that these are case sensitive, and as such need to be handled with care. Copy and pasting between systems and languages can be tricky, it is a common error for the following step for the private key to not be able to validate due to hidden copying issues. -When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters.Without this, errors will occur. +When copying down the private key for the following step, make sure to copy all of the lines, including the `-----BEGIN RSA PRIVATE KEY-----\n` & `\n-----END RSA PRIVATE KEY-----\n` and any newline characters. Without this, errors will occur. ## Registering SSH Keys Copy and paste the following code into your notebook. From 820a049c42cd9c4225e700e1451406812872f717 Mon Sep 17 00:00:00 2001 From: costaki Date: Fri, 3 Jun 2022 15:21:45 -0500 Subject: [PATCH 2/2] fixed a python line that had a extra space --- jobs/hello.md | 1 - 1 file changed, 1 deletion(-) diff --git a/jobs/hello.md b/jobs/hello.md index 6ccd2e1..e9962e1 100644 --- a/jobs/hello.md +++ b/jobs/hello.md @@ -32,7 +32,6 @@ job["schedulerOptions"] = [{"arg": f"--account {some_project}"}] ``` We can now submit the job with: ```python - job = t.jobs.submitJob(**job) ``` If successful, the `job` object should look something like.