diff --git a/.cache/pip/http-v2/f/b/c/e/7/fbce770ef113d7303a71734c8a71c6ac1b2cbc4e832a8e70832c37ca.body b/.cache/pip/http-v2/f/b/c/e/7/fbce770ef113d7303a71734c8a71c6ac1b2cbc4e832a8e70832c37ca.body new file mode 100644 index 0000000000000000000000000000000000000000..188d36268ad581b0959c9d634af7481087ff52cf Binary files /dev/null and b/.cache/pip/http-v2/f/b/c/e/7/fbce770ef113d7303a71734c8a71c6ac1b2cbc4e832a8e70832c37ca.body differ diff --git a/.cache/wandb/logs/core-debug-20240926_124123.log b/.cache/wandb/logs/core-debug-20240926_124123.log new file mode 100644 index 0000000000000000000000000000000000000000..3bb2d33020377a6ea02d93959ba84df5fc5e225d --- /dev/null +++ b/.cache/wandb/logs/core-debug-20240926_124123.log @@ -0,0 +1,14 @@ +{"time":"2024-09-26T12:41:23.048835354Z","level":"INFO","msg":"started logging, with flags","port-filename":"/tmp/tmpvaxwxqk7/port-6230.txt","pid":6230,"debug":false,"disable-analytics":false} +{"time":"2024-09-26T12:41:23.048873271Z","level":"INFO","msg":"FeatureState","shutdownOnParentExitEnabled":false} +{"time":"2024-09-26T12:41:23.049626557Z","level":"INFO","msg":"Will exit if parent process dies.","ppid":6230} +{"time":"2024-09-26T12:41:23.049598776Z","level":"INFO","msg":"server is running","addr":{"IP":"127.0.0.1","Port":41101,"Zone":""}} +{"time":"2024-09-26T12:41:23.244733652Z","level":"INFO","msg":"created new connection","id":"127.0.0.1:48216"} +{"time":"2024-09-26T12:41:23.685497123Z","level":"INFO","msg":"connection init received","streamId":"zc6s8e8w","id":"127.0.0.1:48216"} +{"time":"2024-09-26T12:41:23.68571591Z","level":"ERROR","msg":"error creating symlink","error":"symlink /root/.cache/wandb/logs/core-debug-20240926_124123.log /root/wandb/run-20240926_124123-zc6s8e8w/logs/debug-core.log: file exists"} +{"time":"2024-09-26T12:41:23.687506497Z","level":"INFO","msg":"connection init completed","streamId":"zc6s8e8w","id":"127.0.0.1:48216"} +{"time":"2024-09-26T19:27:20.668791042Z","level":"INFO","msg":"handle finish received","streamId":"zc6s8e8w","id":"127.0.0.1:48216"} +{"time":"2024-09-26T19:27:22.057519583Z","level":"INFO","msg":"connection: teardown","id":"127.0.0.1:48216"} +{"time":"2024-09-26T19:27:22.057561736Z","level":"INFO","msg":"server is shutting down"} +{"time":"2024-09-26T19:27:22.057679612Z","level":"INFO","msg":"closed connection","id":"127.0.0.1:48216"} +{"time":"2024-09-26T19:27:22.057729867Z","level":"INFO","msg":"connection closed","id":"127.0.0.1:48216"} +{"time":"2024-09-26T19:27:22.057743237Z","level":"INFO","msg":"server is closed"} diff --git a/.local/share/jupyter/nbextensions/addbefore/icon.png b/.local/share/jupyter/nbextensions/addbefore/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0d77505d5b51986892cec5af2b7d1d7a0c23762d Binary files /dev/null and b/.local/share/jupyter/nbextensions/addbefore/icon.png differ diff --git a/.local/share/jupyter/nbextensions/addbefore/readme.md b/.local/share/jupyter/nbextensions/addbefore/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..811adb6ee58ef1b275e0ea3429b0621b588f749b --- /dev/null +++ b/.local/share/jupyter/nbextensions/addbefore/readme.md @@ -0,0 +1,12 @@ +Addbefore +========= + +This extension adds a button to add a empty cell before the currently active cell. +As was present in IPython 1.0. +It is with a circled up arrow. +The plus signed "Add Cell After button" is moved to be next to Add Cell Before, +and given matching circled down arrow icon. + +The functionality of the buttons are as per in the Insert Menu, +for Insert Cell Above, and Insert Cell Below. +A empty cell is added, and it takes the cursor focus. diff --git a/.local/share/jupyter/nbextensions/autosavetime/main.js b/.local/share/jupyter/nbextensions/autosavetime/main.js new file mode 100644 index 0000000000000000000000000000000000000000..0e5ee3552371b3610df12a64ed9d65b452bbc0f9 --- /dev/null +++ b/.local/share/jupyter/nbextensions/autosavetime/main.js @@ -0,0 +1,81 @@ +define([ + 'jquery', + 'base/js/namespace', + 'base/js/events' +], function( + $, + IPython, + events +) { + "use strict"; + + // define default values for config parameters + var params = { + autosavetime_set_starting_interval : false, + autosavetime_starting_interval : 2, + autosavetime_show_selector : true + }; + + // update params with any specified in the server's config file + var update_params = function() { + var config = IPython.notebook.config; + for (var key in params) { + if (config.data.hasOwnProperty(key)) + params[key] = config.data[key]; + } + }; + + var initialize = function () { + update_params(); + + var si = params.autosavetime_starting_interval; + var set_si = params.autosavetime_set_starting_interval; + + if (params.autosavetime_show_selector) { + var select = $('