From 10a92f2c53cdb3677bc7d9cb83b3bdb5d3e2f85f Mon Sep 17 00:00:00 2001 From: James Downie Date: Tue, 16 Sep 2025 21:31:52 +1000 Subject: [PATCH 1/5] Lazy commit on yancy. --- jdownie/repo/repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index bada39d..68b4b03 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -57,9 +57,9 @@ def indicators(props, ind = "tl"): pull_digit = "?" pull_indicator = f" {down_keycap}" if "ab" in props.keys(): - push_digit = "##" if props["ab"]["push"] > 99 else f"{props["ab"]["push"] % 100:2d}" + push_digit = "##" if props["ab"]["push"] > 99 else f"{props['ab']['push'] % 100:2d}" push_indicator = f"{to_keycap(push_digit)}{up_keycap}" - pull_digit = "##" if props["ab"]["pull"] > 99 else f"{props["ab"]["pull"] % 100:2d}" + pull_digit = "##" if props["ab"]["pull"] > 99 else f"{props['ab']['pull'] % 100:2d}" pull_indicator = f"{to_keycap(pull_digit)}{down_keycap}" ret = "?" if ind == "tl": From bc88774a6008bdedc8dca2341d7474876eba7b08 Mon Sep 17 00:00:00 2001 From: James Downie Date: Thu, 18 Sep 2025 22:32:33 +1000 Subject: [PATCH 2/5] Lazy commit on fry. --- jdownie/k3s/kl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jdownie/k3s/kl b/jdownie/k3s/kl index f03b453..7b97773 100755 --- a/jdownie/k3s/kl +++ b/jdownie/k3s/kl @@ -2,5 +2,9 @@ NS="$1" DEPL="$2" -kubectl logs -n "$NS" "deployment/$DEPL" +if [ "$3" = "-f" ]; then + kubectl logs -n "$NS" -f "deployment/$DEPL" +else + kubectl logs -n "$NS" "deployment/$DEPL" +fi From 5ea64935d233bf61851715121d1493be323eb3a6 Mon Sep 17 00:00:00 2001 From: James Downie Date: Fri, 19 Sep 2025 20:30:52 +1000 Subject: [PATCH 3/5] Lazy commit on fry. --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 68b4b03..a2e07c3 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -266,7 +266,7 @@ if __name__ == "__main__": print(f" {tl} {k.ljust(ml + 1)} {flags}") # print(json.dumps(dat, indent = 2)) elif sys.argv[1] in list( [ "sync", "lc", "lcs", "pull", "push", "fetch" ] ): - thread_count = 10 + thread_count = 20 with concurrent.futures.ThreadPoolExecutor(max_workers=thread_count) as executor: futures = {executor.submit(perform_action, sys.argv[1], k, cfg[k]) for k in r} for future in concurrent.futures.as_completed(futures): From d9e542cf13377fc51199af3879464d52607ccb36 Mon Sep 17 00:00:00 2001 From: James Downie Date: Fri, 19 Sep 2025 20:31:23 +1000 Subject: [PATCH 4/5] Lazy commit on fry. --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index a2e07c3..68b4b03 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -266,7 +266,7 @@ if __name__ == "__main__": print(f" {tl} {k.ljust(ml + 1)} {flags}") # print(json.dumps(dat, indent = 2)) elif sys.argv[1] in list( [ "sync", "lc", "lcs", "pull", "push", "fetch" ] ): - thread_count = 20 + thread_count = 10 with concurrent.futures.ThreadPoolExecutor(max_workers=thread_count) as executor: futures = {executor.submit(perform_action, sys.argv[1], k, cfg[k]) for k in r} for future in concurrent.futures.as_completed(futures): From 83a390d41aa342310a8f527ec3d9dca75133bc3d Mon Sep 17 00:00:00 2001 From: James Downie Date: Fri, 19 Sep 2025 20:32:17 +1000 Subject: [PATCH 5/5] Lazy commit on fry. --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 68b4b03..6e491bc 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -266,7 +266,7 @@ if __name__ == "__main__": print(f" {tl} {k.ljust(ml + 1)} {flags}") # print(json.dumps(dat, indent = 2)) elif sys.argv[1] in list( [ "sync", "lc", "lcs", "pull", "push", "fetch" ] ): - thread_count = 10 + thread_count = 30 with concurrent.futures.ThreadPoolExecutor(max_workers=thread_count) as executor: futures = {executor.submit(perform_action, sys.argv[1], k, cfg[k]) for k in r} for future in concurrent.futures.as_completed(futures):