machineconfig 1.95__py3-none-any.whl → 1.96__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of machineconfig might be problematic. Click here for more details.

Files changed (499) hide show
  1. machineconfig/cluster/cloud_manager.py +445 -343
  2. machineconfig/cluster/data_transfer.py +63 -57
  3. machineconfig/cluster/distribute.py +284 -280
  4. machineconfig/cluster/file_manager.py +234 -237
  5. machineconfig/cluster/job_params.py +133 -133
  6. machineconfig/cluster/loader_runner.py +183 -149
  7. machineconfig/cluster/remote_machine.py +269 -252
  8. machineconfig/cluster/script_execution.py +215 -209
  9. machineconfig/cluster/script_notify_upon_completion.py +50 -43
  10. machineconfig/cluster/self_ssh.py +52 -54
  11. machineconfig/cluster/sessions_managers/__init__.py +0 -0
  12. machineconfig/cluster/sessions_managers/archive/__init__.py +0 -0
  13. machineconfig/{jobs/python → cluster/sessions_managers/archive}/create_zellij_template.py +5 -3
  14. machineconfig/cluster/sessions_managers/archive/session_managers.py +184 -0
  15. machineconfig/cluster/sessions_managers/demo_rich_zellij.py +0 -0
  16. machineconfig/cluster/sessions_managers/enhanced_command_runner.py +160 -0
  17. machineconfig/cluster/sessions_managers/wt_local.py +494 -0
  18. machineconfig/cluster/sessions_managers/wt_local_manager.py +577 -0
  19. machineconfig/cluster/sessions_managers/wt_remote.py +288 -0
  20. machineconfig/cluster/sessions_managers/wt_remote_manager.py +483 -0
  21. machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py +196 -0
  22. machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py +418 -0
  23. machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py +175 -0
  24. machineconfig/cluster/sessions_managers/wt_utils/session_manager.py +300 -0
  25. machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py +228 -0
  26. machineconfig/cluster/sessions_managers/zellij_local.py +418 -0
  27. machineconfig/cluster/sessions_managers/zellij_local_manager.py +533 -0
  28. machineconfig/cluster/sessions_managers/zellij_remote.py +229 -0
  29. machineconfig/cluster/sessions_managers/zellij_remote_manager.py +188 -0
  30. machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py +64 -0
  31. machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py +126 -0
  32. machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py +334 -0
  33. machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py +68 -0
  34. machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py +119 -0
  35. machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py +85 -0
  36. machineconfig/cluster/templates/cli_click.py +0 -1
  37. machineconfig/cluster/templates/cli_gooey.py +102 -104
  38. machineconfig/cluster/templates/run_cloud.py +51 -51
  39. machineconfig/cluster/templates/run_cluster.py +103 -59
  40. machineconfig/cluster/templates/run_remote.py +57 -58
  41. machineconfig/cluster/templates/utils.py +69 -36
  42. machineconfig/jobs/__pycache__/__init__.cpython-311.pyc +0 -0
  43. machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc +0 -0
  44. machineconfig/jobs/python/check_installations.py +258 -190
  45. machineconfig/jobs/python/create_bootable_media.py +7 -3
  46. machineconfig/jobs/python/python_cargo_build_share.py +50 -50
  47. machineconfig/jobs/python/python_ve_symlink.py +6 -6
  48. machineconfig/jobs/python/vscode/__pycache__/select_interpreter.cpython-311.pyc +0 -0
  49. machineconfig/jobs/python/vscode/api.py +1 -1
  50. machineconfig/jobs/python/vscode/link_ve.py +2 -2
  51. machineconfig/jobs/python/vscode/select_interpreter.py +9 -5
  52. machineconfig/jobs/python/vscode/sync_code.py +8 -5
  53. machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  54. machineconfig/jobs/python_custom_installers/archive/ngrok.py +1 -1
  55. machineconfig/jobs/python_custom_installers/dev/alacritty.py +3 -2
  56. machineconfig/jobs/python_custom_installers/dev/brave.py +7 -3
  57. machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +3 -4
  58. machineconfig/jobs/python_custom_installers/dev/code.py +3 -1
  59. machineconfig/jobs/python_custom_installers/dev/cursor.py +66 -5
  60. machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +0 -1
  61. machineconfig/jobs/python_custom_installers/dev/espanso.py +13 -9
  62. machineconfig/jobs/python_custom_installers/dev/goes.py +2 -8
  63. machineconfig/jobs/python_custom_installers/dev/lvim.py +3 -2
  64. machineconfig/jobs/python_custom_installers/dev/nerdfont.py +1 -1
  65. machineconfig/jobs/python_custom_installers/dev/redis.py +7 -3
  66. machineconfig/jobs/python_custom_installers/dev/wezterm.py +8 -4
  67. machineconfig/jobs/python_custom_installers/dev/winget.py +194 -0
  68. machineconfig/jobs/python_custom_installers/{dev/docker.py → docker.py} +8 -3
  69. machineconfig/jobs/python_custom_installers/gh.py +4 -3
  70. machineconfig/jobs/python_custom_installers/hx.py +9 -8
  71. machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh +97 -30
  72. machineconfig/jobs/python_custom_installers/{dev/warp-cli.py → warp-cli.py} +1 -1
  73. machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  74. machineconfig/jobs/python_generic_installers/config.json +133 -9
  75. machineconfig/jobs/python_generic_installers/dev/config.json +208 -37
  76. machineconfig/jobs/python_generic_installers/update.py +3 -0
  77. machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  78. machineconfig/jobs/python_linux_installers/config.json +42 -6
  79. machineconfig/jobs/python_linux_installers/dev/config.json +79 -11
  80. machineconfig/jobs/python_windows_installers/config.json +6 -0
  81. machineconfig/profile/__pycache__/__init__.cpython-311.pyc +0 -0
  82. machineconfig/profile/__pycache__/create.cpython-311.pyc +0 -0
  83. machineconfig/profile/__pycache__/shell.cpython-311.pyc +0 -0
  84. machineconfig/profile/create.py +5 -5
  85. machineconfig/profile/create_hardlinks.py +5 -5
  86. machineconfig/profile/shell.py +44 -17
  87. machineconfig/scripts/__pycache__/__init__.cpython-311.pyc +0 -0
  88. machineconfig/scripts/__pycache__/__init__.cpython-313.pyc +0 -0
  89. machineconfig/scripts/linux/fire_agents +27 -0
  90. machineconfig/scripts/linux/wifi_conn +24 -0
  91. machineconfig/scripts/python/__pycache__/__init__.cpython-311.pyc +0 -0
  92. machineconfig/scripts/python/__pycache__/__init__.cpython-313.pyc +0 -0
  93. machineconfig/scripts/python/__pycache__/cloud_copy.cpython-311.pyc +0 -0
  94. machineconfig/scripts/python/__pycache__/cloud_mount.cpython-311.pyc +0 -0
  95. machineconfig/scripts/python/__pycache__/cloud_sync.cpython-311.pyc +0 -0
  96. machineconfig/scripts/python/__pycache__/croshell.cpython-311.pyc +0 -0
  97. machineconfig/scripts/python/__pycache__/devops.cpython-311.pyc +0 -0
  98. machineconfig/scripts/python/__pycache__/devops_backup_retrieve.cpython-311.pyc +0 -0
  99. machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc +0 -0
  100. machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc +0 -0
  101. machineconfig/scripts/python/__pycache__/fire_agents.cpython-311.pyc +0 -0
  102. machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc +0 -0
  103. machineconfig/scripts/python/__pycache__/fire_jobs.cpython-313.pyc +0 -0
  104. machineconfig/scripts/python/__pycache__/get_zellij_cmd.cpython-311.pyc +0 -0
  105. machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc +0 -0
  106. machineconfig/scripts/python/archive/im2text.py +1 -3
  107. machineconfig/scripts/python/choose_wezterm_theme.py +3 -3
  108. machineconfig/scripts/python/cloud_copy.py +10 -10
  109. machineconfig/scripts/python/cloud_manager.py +77 -99
  110. machineconfig/scripts/python/cloud_mount.py +13 -12
  111. machineconfig/scripts/python/cloud_repo_sync.py +14 -11
  112. machineconfig/scripts/python/croshell.py +24 -21
  113. machineconfig/scripts/python/devops.py +12 -17
  114. machineconfig/scripts/python/devops_add_identity.py +32 -10
  115. machineconfig/scripts/python/devops_add_ssh_key.py +10 -10
  116. machineconfig/scripts/python/devops_backup_retrieve.py +9 -8
  117. machineconfig/scripts/python/devops_devapps_install.py +6 -6
  118. machineconfig/scripts/python/devops_update_repos.py +4 -3
  119. machineconfig/scripts/python/dotfile.py +10 -7
  120. machineconfig/scripts/python/fire_agents.py +69 -0
  121. machineconfig/scripts/python/fire_jobs.py +56 -65
  122. machineconfig/scripts/python/ftpx.py +8 -8
  123. machineconfig/scripts/python/get_zellij_cmd.py +3 -3
  124. machineconfig/scripts/python/gh_models.py +6 -4
  125. machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc +0 -0
  126. machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.pyc +0 -0
  127. machineconfig/scripts/python/helpers/__pycache__/cloud_helpers.cpython-311.pyc +0 -0
  128. machineconfig/scripts/python/helpers/__pycache__/helpers2.cpython-311.pyc +0 -0
  129. machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc +0 -0
  130. machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc +0 -0
  131. machineconfig/scripts/python/helpers/__pycache__/repo_sync_helpers.cpython-311.pyc +0 -0
  132. machineconfig/scripts/python/helpers/cloud_helpers.py +12 -12
  133. machineconfig/scripts/python/helpers/helpers2.py +9 -8
  134. machineconfig/scripts/python/helpers/helpers4.py +23 -35
  135. machineconfig/scripts/python/helpers/repo_sync_helpers.py +17 -16
  136. machineconfig/scripts/python/mount_nfs.py +8 -11
  137. machineconfig/scripts/python/mount_nw_drive.py +4 -4
  138. machineconfig/scripts/python/mount_ssh.py +2 -2
  139. machineconfig/scripts/python/onetimeshare.py +56 -57
  140. machineconfig/scripts/python/pomodoro.py +55 -55
  141. machineconfig/scripts/python/repos.py +26 -18
  142. machineconfig/scripts/python/scheduler.py +70 -53
  143. machineconfig/scripts/python/snapshot.py +21 -24
  144. machineconfig/scripts/python/start_slidev.py +6 -5
  145. machineconfig/scripts/python/start_terminals.py +3 -1
  146. machineconfig/scripts/python/viewer.py +5 -4
  147. machineconfig/scripts/python/viewer_template.py +138 -140
  148. machineconfig/scripts/python/wifi_conn.py +412 -60
  149. machineconfig/scripts/python/wsl_windows_transfer.py +18 -3
  150. machineconfig/settings/linters/.pylintrc +6 -7
  151. machineconfig/settings/lvim/windows/config.lua +0 -0
  152. machineconfig/settings/shells/bash/init.sh +6 -0
  153. machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +7 -6
  154. machineconfig/settings/shells/pwsh/init.ps1 +6 -6
  155. machineconfig/settings/shells/wt/settings.json +51 -266
  156. machineconfig/setup_linux/web_shortcuts/interactive.sh +5 -2
  157. machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py +3 -6
  158. machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +11 -9
  159. machineconfig/utils/ai/url2md.py +2 -2
  160. machineconfig/utils/cloud/onedrive/setup_oauth.py +59 -0
  161. machineconfig/utils/cloud/onedrive/transaction.py +796 -0
  162. machineconfig/utils/code.py +22 -13
  163. machineconfig/utils/installer.py +78 -35
  164. machineconfig/utils/installer_utils/installer_abc.py +7 -6
  165. machineconfig/utils/installer_utils/installer_class.py +44 -25
  166. machineconfig/utils/io_save.py +107 -0
  167. machineconfig/utils/links.py +19 -15
  168. machineconfig/utils/options.py +4 -8
  169. machineconfig/utils/path.py +91 -78
  170. machineconfig/utils/path_reduced.py +608 -0
  171. machineconfig/utils/procs.py +110 -45
  172. machineconfig/utils/scheduling.py +312 -222
  173. machineconfig/utils/utils.py +7 -7
  174. machineconfig/utils/utils2.py +42 -0
  175. machineconfig/utils/utils5.py +84 -0
  176. machineconfig/utils/ve.py +49 -87
  177. {machineconfig-1.95.dist-info → machineconfig-1.96.dist-info}/METADATA +2 -2
  178. machineconfig-1.96.dist-info/RECORD +437 -0
  179. machineconfig/cluster/session_managers.py +0 -183
  180. machineconfig/cluster/templates/f.py +0 -4
  181. machineconfig/jobs/python/__pycache__/check_installations.cpython-311.pyc +0 -0
  182. machineconfig/jobs/python/__pycache__/checkout_version.cpython-311.pyc +0 -0
  183. machineconfig/jobs/python/__pycache__/python_ve_symlink.cpython-311.pyc +0 -0
  184. machineconfig/jobs/python/checkout_version.py +0 -123
  185. machineconfig/jobs/python/vscode/__pycache__/api.cpython-311.pyc +0 -0
  186. machineconfig/jobs/python/vscode/__pycache__/link_ve.cpython-311.pyc +0 -0
  187. machineconfig/jobs/python_custom_installers/__pycache__/hx.cpython-311.pyc +0 -0
  188. machineconfig/jobs/python_windows_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  189. machineconfig/scripts/python/.mypy_cache/.gitignore +0 -2
  190. machineconfig/scripts/python/.mypy_cache/3.11/@plugins_snapshot.json +0 -1
  191. machineconfig/scripts/python/.mypy_cache/3.11/__future__.data.json +0 -1
  192. machineconfig/scripts/python/.mypy_cache/3.11/__future__.meta.json +0 -1
  193. machineconfig/scripts/python/.mypy_cache/3.11/_ast.data.json +0 -1
  194. machineconfig/scripts/python/.mypy_cache/3.11/_ast.meta.json +0 -1
  195. machineconfig/scripts/python/.mypy_cache/3.11/_bz2.data.json +0 -1
  196. machineconfig/scripts/python/.mypy_cache/3.11/_bz2.meta.json +0 -1
  197. machineconfig/scripts/python/.mypy_cache/3.11/_codecs.data.json +0 -1
  198. machineconfig/scripts/python/.mypy_cache/3.11/_codecs.meta.json +0 -1
  199. machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.data.json +0 -1
  200. machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.meta.json +0 -1
  201. machineconfig/scripts/python/.mypy_cache/3.11/_compression.data.json +0 -1
  202. machineconfig/scripts/python/.mypy_cache/3.11/_compression.meta.json +0 -1
  203. machineconfig/scripts/python/.mypy_cache/3.11/_decimal.data.json +0 -1
  204. machineconfig/scripts/python/.mypy_cache/3.11/_decimal.meta.json +0 -1
  205. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.data.json +0 -1
  206. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.meta.json +0 -1
  207. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.data.json +0 -1
  208. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.meta.json +0 -1
  209. machineconfig/scripts/python/.mypy_cache/3.11/_io.data.json +0 -1
  210. machineconfig/scripts/python/.mypy_cache/3.11/_io.meta.json +0 -1
  211. machineconfig/scripts/python/.mypy_cache/3.11/_locale.data.json +0 -1
  212. machineconfig/scripts/python/.mypy_cache/3.11/_locale.meta.json +0 -1
  213. machineconfig/scripts/python/.mypy_cache/3.11/_stat.data.json +0 -1
  214. machineconfig/scripts/python/.mypy_cache/3.11/_stat.meta.json +0 -1
  215. machineconfig/scripts/python/.mypy_cache/3.11/_struct.data.json +0 -1
  216. machineconfig/scripts/python/.mypy_cache/3.11/_struct.meta.json +0 -1
  217. machineconfig/scripts/python/.mypy_cache/3.11/_thread.data.json +0 -1
  218. machineconfig/scripts/python/.mypy_cache/3.11/_thread.meta.json +0 -1
  219. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.data.json +0 -1
  220. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.meta.json +0 -1
  221. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.data.json +0 -1
  222. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.meta.json +0 -1
  223. machineconfig/scripts/python/.mypy_cache/3.11/_warnings.data.json +0 -1
  224. machineconfig/scripts/python/.mypy_cache/3.11/_warnings.meta.json +0 -1
  225. machineconfig/scripts/python/.mypy_cache/3.11/_weakref.data.json +0 -1
  226. machineconfig/scripts/python/.mypy_cache/3.11/_weakref.meta.json +0 -1
  227. machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.data.json +0 -1
  228. machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.meta.json +0 -1
  229. machineconfig/scripts/python/.mypy_cache/3.11/abc.data.json +0 -1
  230. machineconfig/scripts/python/.mypy_cache/3.11/abc.meta.json +0 -1
  231. machineconfig/scripts/python/.mypy_cache/3.11/argparse.data.json +0 -1
  232. machineconfig/scripts/python/.mypy_cache/3.11/argparse.meta.json +0 -1
  233. machineconfig/scripts/python/.mypy_cache/3.11/ast.data.json +0 -1
  234. machineconfig/scripts/python/.mypy_cache/3.11/ast.meta.json +0 -1
  235. machineconfig/scripts/python/.mypy_cache/3.11/binascii.data.json +0 -1
  236. machineconfig/scripts/python/.mypy_cache/3.11/binascii.meta.json +0 -1
  237. machineconfig/scripts/python/.mypy_cache/3.11/builtins.data.json +0 -1
  238. machineconfig/scripts/python/.mypy_cache/3.11/builtins.meta.json +0 -1
  239. machineconfig/scripts/python/.mypy_cache/3.11/bz2.data.json +0 -1
  240. machineconfig/scripts/python/.mypy_cache/3.11/bz2.meta.json +0 -1
  241. machineconfig/scripts/python/.mypy_cache/3.11/calendar.data.json +0 -1
  242. machineconfig/scripts/python/.mypy_cache/3.11/calendar.meta.json +0 -1
  243. machineconfig/scripts/python/.mypy_cache/3.11/codecs.data.json +0 -1
  244. machineconfig/scripts/python/.mypy_cache/3.11/codecs.meta.json +0 -1
  245. machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.data.json +0 -1
  246. machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.meta.json +0 -1
  247. machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.data.json +0 -1
  248. machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.meta.json +0 -1
  249. machineconfig/scripts/python/.mypy_cache/3.11/configparser.data.json +0 -1
  250. machineconfig/scripts/python/.mypy_cache/3.11/configparser.meta.json +0 -1
  251. machineconfig/scripts/python/.mypy_cache/3.11/contextlib.data.json +0 -1
  252. machineconfig/scripts/python/.mypy_cache/3.11/contextlib.meta.json +0 -1
  253. machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.data.json +0 -1
  254. machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.meta.json +0 -1
  255. machineconfig/scripts/python/.mypy_cache/3.11/datetime.data.json +0 -1
  256. machineconfig/scripts/python/.mypy_cache/3.11/datetime.meta.json +0 -1
  257. machineconfig/scripts/python/.mypy_cache/3.11/decimal.data.json +0 -1
  258. machineconfig/scripts/python/.mypy_cache/3.11/decimal.meta.json +0 -1
  259. machineconfig/scripts/python/.mypy_cache/3.11/dis.data.json +0 -1
  260. machineconfig/scripts/python/.mypy_cache/3.11/dis.meta.json +0 -1
  261. machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.data.json +0 -1
  262. machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.meta.json +0 -1
  263. machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.data.json +0 -1
  264. machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.meta.json +0 -1
  265. machineconfig/scripts/python/.mypy_cache/3.11/email/charset.data.json +0 -1
  266. machineconfig/scripts/python/.mypy_cache/3.11/email/charset.meta.json +0 -1
  267. machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.data.json +0 -1
  268. machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.meta.json +0 -1
  269. machineconfig/scripts/python/.mypy_cache/3.11/email/errors.data.json +0 -1
  270. machineconfig/scripts/python/.mypy_cache/3.11/email/errors.meta.json +0 -1
  271. machineconfig/scripts/python/.mypy_cache/3.11/email/header.data.json +0 -1
  272. machineconfig/scripts/python/.mypy_cache/3.11/email/header.meta.json +0 -1
  273. machineconfig/scripts/python/.mypy_cache/3.11/email/message.data.json +0 -1
  274. machineconfig/scripts/python/.mypy_cache/3.11/email/message.meta.json +0 -1
  275. machineconfig/scripts/python/.mypy_cache/3.11/email/policy.data.json +0 -1
  276. machineconfig/scripts/python/.mypy_cache/3.11/email/policy.meta.json +0 -1
  277. machineconfig/scripts/python/.mypy_cache/3.11/enum.data.json +0 -1
  278. machineconfig/scripts/python/.mypy_cache/3.11/enum.meta.json +0 -1
  279. machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.data.json +0 -1
  280. machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.meta.json +0 -1
  281. machineconfig/scripts/python/.mypy_cache/3.11/functools.data.json +0 -1
  282. machineconfig/scripts/python/.mypy_cache/3.11/functools.meta.json +0 -1
  283. machineconfig/scripts/python/.mypy_cache/3.11/gc.data.json +0 -1
  284. machineconfig/scripts/python/.mypy_cache/3.11/gc.meta.json +0 -1
  285. machineconfig/scripts/python/.mypy_cache/3.11/genericpath.data.json +0 -1
  286. machineconfig/scripts/python/.mypy_cache/3.11/genericpath.meta.json +0 -1
  287. machineconfig/scripts/python/.mypy_cache/3.11/getpass.data.json +0 -1
  288. machineconfig/scripts/python/.mypy_cache/3.11/getpass.meta.json +0 -1
  289. machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.data.json +0 -1
  290. machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.meta.json +0 -1
  291. machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.data.json +0 -1
  292. machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.meta.json +0 -1
  293. machineconfig/scripts/python/.mypy_cache/3.11/git/compat.data.json +0 -1
  294. machineconfig/scripts/python/.mypy_cache/3.11/git/compat.meta.json +0 -1
  295. machineconfig/scripts/python/.mypy_cache/3.11/git/config.data.json +0 -1
  296. machineconfig/scripts/python/.mypy_cache/3.11/git/config.meta.json +0 -1
  297. machineconfig/scripts/python/.mypy_cache/3.11/git/db.data.json +0 -1
  298. machineconfig/scripts/python/.mypy_cache/3.11/git/db.meta.json +0 -1
  299. machineconfig/scripts/python/.mypy_cache/3.11/git/diff.data.json +0 -1
  300. machineconfig/scripts/python/.mypy_cache/3.11/git/diff.meta.json +0 -1
  301. machineconfig/scripts/python/.mypy_cache/3.11/git/exc.data.json +0 -1
  302. machineconfig/scripts/python/.mypy_cache/3.11/git/exc.meta.json +0 -1
  303. machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.data.json +0 -1
  304. machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.meta.json +0 -1
  305. machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.data.json +0 -1
  306. machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.meta.json +0 -1
  307. machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.data.json +0 -1
  308. machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.meta.json +0 -1
  309. machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.data.json +0 -1
  310. machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.meta.json +0 -1
  311. machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.data.json +0 -1
  312. machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.meta.json +0 -1
  313. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.data.json +0 -1
  314. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.meta.json +0 -1
  315. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.data.json +0 -1
  316. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.meta.json +0 -1
  317. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.data.json +0 -1
  318. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.meta.json +0 -1
  319. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.data.json +0 -1
  320. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.meta.json +0 -1
  321. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.data.json +0 -1
  322. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.meta.json +0 -1
  323. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.data.json +0 -1
  324. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.meta.json +0 -1
  325. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.data.json +0 -1
  326. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.meta.json +0 -1
  327. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.data.json +0 -1
  328. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.meta.json +0 -1
  329. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.data.json +0 -1
  330. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.meta.json +0 -1
  331. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.data.json +0 -1
  332. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.meta.json +0 -1
  333. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.data.json +0 -1
  334. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.meta.json +0 -1
  335. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.data.json +0 -1
  336. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.meta.json +0 -1
  337. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.data.json +0 -1
  338. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.meta.json +0 -1
  339. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.data.json +0 -1
  340. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.meta.json +0 -1
  341. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.data.json +0 -1
  342. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.meta.json +0 -1
  343. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.data.json +0 -1
  344. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.meta.json +0 -1
  345. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.data.json +0 -1
  346. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.meta.json +0 -1
  347. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.data.json +0 -1
  348. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.meta.json +0 -1
  349. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.data.json +0 -1
  350. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.meta.json +0 -1
  351. machineconfig/scripts/python/.mypy_cache/3.11/git/remote.data.json +0 -1
  352. machineconfig/scripts/python/.mypy_cache/3.11/git/remote.meta.json +0 -1
  353. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.data.json +0 -1
  354. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.meta.json +0 -1
  355. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.data.json +0 -1
  356. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.meta.json +0 -1
  357. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.data.json +0 -1
  358. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.meta.json +0 -1
  359. machineconfig/scripts/python/.mypy_cache/3.11/git/types.data.json +0 -1
  360. machineconfig/scripts/python/.mypy_cache/3.11/git/types.meta.json +0 -1
  361. machineconfig/scripts/python/.mypy_cache/3.11/git/util.data.json +0 -1
  362. machineconfig/scripts/python/.mypy_cache/3.11/git/util.meta.json +0 -1
  363. machineconfig/scripts/python/.mypy_cache/3.11/glob.data.json +0 -1
  364. machineconfig/scripts/python/.mypy_cache/3.11/glob.meta.json +0 -1
  365. machineconfig/scripts/python/.mypy_cache/3.11/gzip.data.json +0 -1
  366. machineconfig/scripts/python/.mypy_cache/3.11/gzip.meta.json +0 -1
  367. machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.data.json +0 -1
  368. machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.meta.json +0 -1
  369. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.data.json +0 -1
  370. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.meta.json +0 -1
  371. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.data.json +0 -1
  372. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.meta.json +0 -1
  373. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.data.json +0 -1
  374. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.meta.json +0 -1
  375. machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.data.json +0 -1
  376. machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.meta.json +0 -1
  377. machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.data.json +0 -1
  378. machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.meta.json +0 -1
  379. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.data.json +0 -1
  380. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.meta.json +0 -1
  381. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.data.json +0 -1
  382. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.meta.json +0 -1
  383. machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.data.json +0 -1
  384. machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.meta.json +0 -1
  385. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.data.json +0 -1
  386. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.meta.json +0 -1
  387. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.data.json +0 -1
  388. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.meta.json +0 -1
  389. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.data.json +0 -1
  390. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.meta.json +0 -1
  391. machineconfig/scripts/python/.mypy_cache/3.11/inspect.data.json +0 -1
  392. machineconfig/scripts/python/.mypy_cache/3.11/inspect.meta.json +0 -1
  393. machineconfig/scripts/python/.mypy_cache/3.11/io.data.json +0 -1
  394. machineconfig/scripts/python/.mypy_cache/3.11/io.meta.json +0 -1
  395. machineconfig/scripts/python/.mypy_cache/3.11/itertools.data.json +0 -1
  396. machineconfig/scripts/python/.mypy_cache/3.11/itertools.meta.json +0 -1
  397. machineconfig/scripts/python/.mypy_cache/3.11/locale.data.json +0 -1
  398. machineconfig/scripts/python/.mypy_cache/3.11/locale.meta.json +0 -1
  399. machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.data.json +0 -1
  400. machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.meta.json +0 -1
  401. machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.data.json +0 -1
  402. machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.meta.json +0 -1
  403. machineconfig/scripts/python/.mypy_cache/3.11/mmap.data.json +0 -1
  404. machineconfig/scripts/python/.mypy_cache/3.11/mmap.meta.json +0 -1
  405. machineconfig/scripts/python/.mypy_cache/3.11/numbers.data.json +0 -1
  406. machineconfig/scripts/python/.mypy_cache/3.11/numbers.meta.json +0 -1
  407. machineconfig/scripts/python/.mypy_cache/3.11/opcode.data.json +0 -1
  408. machineconfig/scripts/python/.mypy_cache/3.11/opcode.meta.json +0 -1
  409. machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.data.json +0 -1
  410. machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.meta.json +0 -1
  411. machineconfig/scripts/python/.mypy_cache/3.11/os/path.data.json +0 -1
  412. machineconfig/scripts/python/.mypy_cache/3.11/os/path.meta.json +0 -1
  413. machineconfig/scripts/python/.mypy_cache/3.11/pathlib.data.json +0 -1
  414. machineconfig/scripts/python/.mypy_cache/3.11/pathlib.meta.json +0 -1
  415. machineconfig/scripts/python/.mypy_cache/3.11/platform.data.json +0 -1
  416. machineconfig/scripts/python/.mypy_cache/3.11/platform.meta.json +0 -1
  417. machineconfig/scripts/python/.mypy_cache/3.11/posixpath.data.json +0 -1
  418. machineconfig/scripts/python/.mypy_cache/3.11/posixpath.meta.json +0 -1
  419. machineconfig/scripts/python/.mypy_cache/3.11/re.data.json +0 -1
  420. machineconfig/scripts/python/.mypy_cache/3.11/re.meta.json +0 -1
  421. machineconfig/scripts/python/.mypy_cache/3.11/resource.data.json +0 -1
  422. machineconfig/scripts/python/.mypy_cache/3.11/resource.meta.json +0 -1
  423. machineconfig/scripts/python/.mypy_cache/3.11/shlex.data.json +0 -1
  424. machineconfig/scripts/python/.mypy_cache/3.11/shlex.meta.json +0 -1
  425. machineconfig/scripts/python/.mypy_cache/3.11/shutil.data.json +0 -1
  426. machineconfig/scripts/python/.mypy_cache/3.11/shutil.meta.json +0 -1
  427. machineconfig/scripts/python/.mypy_cache/3.11/signal.data.json +0 -1
  428. machineconfig/scripts/python/.mypy_cache/3.11/signal.meta.json +0 -1
  429. machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.data.json +0 -1
  430. machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.meta.json +0 -1
  431. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.data.json +0 -1
  432. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.meta.json +0 -1
  433. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.data.json +0 -1
  434. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.meta.json +0 -1
  435. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.data.json +0 -1
  436. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.meta.json +0 -1
  437. machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.data.json +0 -1
  438. machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.meta.json +0 -1
  439. machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.data.json +0 -1
  440. machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.meta.json +0 -1
  441. machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.data.json +0 -1
  442. machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.meta.json +0 -1
  443. machineconfig/scripts/python/.mypy_cache/3.11/stat.data.json +0 -1
  444. machineconfig/scripts/python/.mypy_cache/3.11/stat.meta.json +0 -1
  445. machineconfig/scripts/python/.mypy_cache/3.11/string.data.json +0 -1
  446. machineconfig/scripts/python/.mypy_cache/3.11/string.meta.json +0 -1
  447. machineconfig/scripts/python/.mypy_cache/3.11/struct.data.json +0 -1
  448. machineconfig/scripts/python/.mypy_cache/3.11/struct.meta.json +0 -1
  449. machineconfig/scripts/python/.mypy_cache/3.11/subprocess.data.json +0 -1
  450. machineconfig/scripts/python/.mypy_cache/3.11/subprocess.meta.json +0 -1
  451. machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.data.json +0 -1
  452. machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.meta.json +0 -1
  453. machineconfig/scripts/python/.mypy_cache/3.11/tarfile.data.json +0 -1
  454. machineconfig/scripts/python/.mypy_cache/3.11/tarfile.meta.json +0 -1
  455. machineconfig/scripts/python/.mypy_cache/3.11/tempfile.data.json +0 -1
  456. machineconfig/scripts/python/.mypy_cache/3.11/tempfile.meta.json +0 -1
  457. machineconfig/scripts/python/.mypy_cache/3.11/textwrap.data.json +0 -1
  458. machineconfig/scripts/python/.mypy_cache/3.11/textwrap.meta.json +0 -1
  459. machineconfig/scripts/python/.mypy_cache/3.11/threading.data.json +0 -1
  460. machineconfig/scripts/python/.mypy_cache/3.11/threading.meta.json +0 -1
  461. machineconfig/scripts/python/.mypy_cache/3.11/time.data.json +0 -1
  462. machineconfig/scripts/python/.mypy_cache/3.11/time.meta.json +0 -1
  463. machineconfig/scripts/python/.mypy_cache/3.11/types.data.json +0 -1
  464. machineconfig/scripts/python/.mypy_cache/3.11/types.meta.json +0 -1
  465. machineconfig/scripts/python/.mypy_cache/3.11/typing.data.json +0 -1
  466. machineconfig/scripts/python/.mypy_cache/3.11/typing.meta.json +0 -1
  467. machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.data.json +0 -1
  468. machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.meta.json +0 -1
  469. machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.data.json +0 -1
  470. machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.meta.json +0 -1
  471. machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.data.json +0 -1
  472. machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.meta.json +0 -1
  473. machineconfig/scripts/python/.mypy_cache/3.11/uuid.data.json +0 -1
  474. machineconfig/scripts/python/.mypy_cache/3.11/uuid.meta.json +0 -1
  475. machineconfig/scripts/python/.mypy_cache/3.11/warnings.data.json +0 -1
  476. machineconfig/scripts/python/.mypy_cache/3.11/warnings.meta.json +0 -1
  477. machineconfig/scripts/python/.mypy_cache/3.11/weakref.data.json +0 -1
  478. machineconfig/scripts/python/.mypy_cache/3.11/weakref.meta.json +0 -1
  479. machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.data.json +0 -1
  480. machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.meta.json +0 -1
  481. machineconfig/scripts/python/.mypy_cache/3.11/zlib.data.json +0 -1
  482. machineconfig/scripts/python/.mypy_cache/3.11/zlib.meta.json +0 -1
  483. machineconfig/scripts/python/.mypy_cache/CACHEDIR.TAG +0 -3
  484. machineconfig/scripts/python/__pycache__/cloud_repo_sync.cpython-311.pyc +0 -0
  485. machineconfig/scripts/python/__pycache__/gh_models.cpython-311.pyc +0 -0
  486. machineconfig/scripts/python/__pycache__/url2md.cpython-311.pyc +0 -0
  487. machineconfig/scripts/python/__pycache__/viewer.cpython-311.pyc +0 -0
  488. machineconfig/scripts/python/__pycache__/vscode_api.cpython-311.pyc +0 -0
  489. machineconfig/settings/__pycache__/__init__.cpython-311.pyc +0 -0
  490. machineconfig/settings/linters/.ruff_cache/.gitignore +0 -2
  491. machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG +0 -1
  492. machineconfig/settings/shells/ipy/profiles/default/__pycache__/__init__.cpython-311.pyc +0 -0
  493. machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/__init__.cpython-311.pyc +0 -0
  494. machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/playext.cpython-311.pyc +0 -0
  495. machineconfig/utils/ve_utils/ve1.py +0 -111
  496. machineconfig/utils/ve_utils/ve2.py +0 -155
  497. machineconfig-1.95.dist-info/RECORD +0 -712
  498. {machineconfig-1.95.dist-info → machineconfig-1.96.dist-info}/WHEEL +0 -0
  499. {machineconfig-1.95.dist-info → machineconfig-1.96.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,437 @@
1
+ machineconfig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ machineconfig/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ machineconfig/cluster/cloud_manager.py,sha256=36HVgCwif30z8rrt-t0wOgFTIas-r-KvUFmDJGW4DBY,26436
4
+ machineconfig/cluster/data_transfer.py,sha256=D9aGh0Co_N9DvgljVZ8ArwplL58kE7ztQrhzlDEOOvo,4354
5
+ machineconfig/cluster/distribute.py,sha256=IZkXd3RAnGupWbNJEXeEK8C3oR3DUxnxk_wcyjbgWq0,15363
6
+ machineconfig/cluster/file_manager.py,sha256=8i_DqjDlGJM7gSsZggO3S_wxGz0npWbl_new2uDmV8w,13903
7
+ machineconfig/cluster/job_params.py,sha256=eXrdAmXM0fkeF36aikSOGjptbI1suPStYU0k1QqvYeQ,7685
8
+ machineconfig/cluster/loader_runner.py,sha256=RHsfMXvFJaiETUsIhlwLIvFn_o9ZGslj6idFTmxKa7c,7072
9
+ machineconfig/cluster/remote_machine.py,sha256=_VWFyBTKxnk5NUlIMaCqZrJEzlOXx0qCuXLFuhEg7gs,19711
10
+ machineconfig/cluster/script_execution.py,sha256=QPd_8sQM6uLGc7JlxrW9qt82UAmShZZMX0Nsxbgzp8E,9982
11
+ machineconfig/cluster/script_notify_upon_completion.py,sha256=jBKcjAfnmb30eB0u-hrNloC8qq2sbdCLBTro8sRJC6I,2033
12
+ machineconfig/cluster/self_ssh.py,sha256=GvoDC2dGeWnZdxBue8aiF7wghUqJjxJnERGdGWSSvsQ,2976
13
+ machineconfig/cluster/sessions_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ machineconfig/cluster/sessions_managers/demo_rich_zellij.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ machineconfig/cluster/sessions_managers/enhanced_command_runner.py,sha256=CnNPhbUggA13ZsZshCPYM1TytKb6aFrz6ISXcnHXhkM,6103
16
+ machineconfig/cluster/sessions_managers/wt_local.py,sha256=mXGpk30VLFuTnEWGvSUf8thn2Kyi18ZmBgpqUd8oz4A,20183
17
+ machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=bqItQnMDy-5rPLZAt7k3AO7de8sC7a7M0hNg4zWloP0,25340
18
+ machineconfig/cluster/sessions_managers/wt_remote.py,sha256=NVAw3Tbk5xwkWJ6x1xQ53_-PQuQphYNTGYJCoqOe22M,12813
19
+ machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=PV5PoBTJamfxuS-VsiM2sIR3XggTQ771VCNeBQRL1t8,20867
20
+ machineconfig/cluster/sessions_managers/zellij_local.py,sha256=Wyp_sZueaibptZL83oBnbBTLojUEe8I1-Kkf_4e3150,17895
21
+ machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=0gCWYgWTYFwzGBmt4UwWxv2F2IaKA3H-71FzBta7Iwc,23323
22
+ machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=u3B5XWKMpU6rQK83lXx8LeGQIZ-RrNA5VIHe-sebRdw,10215
23
+ machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=h2u57DQj2offoyrRcE-Le1Cc7ghlTjQ38W0Rg9c0wSQ,8292
24
+ machineconfig/cluster/sessions_managers/archive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ machineconfig/cluster/sessions_managers/archive/create_zellij_template.py,sha256=SYCmQJsO3HJr62yTLpk7VLtHnIE7xh6IFpm0cIU_-SA,1450
26
+ machineconfig/cluster/sessions_managers/archive/session_managers.py,sha256=xaLKRf5b9Hqs3_LX01m_6omXeces_Npm39A7qqfLfDE,10280
27
+ machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=7he3ApTu0_B3cbQBZJ2mEZnRxQyEZR11l0SzwvADXKg,8261
28
+ machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=-Lw_Z9GYrz33cBSd8vZOVZattMSEEiWvFb3zu6F1UYU,17448
29
+ machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=liKdJy_aWRLe9f91h4u_JNNl5jKSidZfVZwqMjNAPrE,7425
30
+ machineconfig/cluster/sessions_managers/wt_utils/session_manager.py,sha256=sibeqPPlM70AV68mLEf7RKrwQHf96A9Lmse23QMnVls,13353
31
+ machineconfig/cluster/sessions_managers/wt_utils/status_reporter.py,sha256=B0xOFd4Fy7Yuu-5j2fWQiOkk9n1QgUE9z4hiSrdSmxU,10060
32
+ machineconfig/cluster/sessions_managers/zellij_utils/example_usage.py,sha256=LHcoNGIOoDCWe2w8_i6RbfQ9wVcVMTnDZ7LG0U8GoJI,2594
33
+ machineconfig/cluster/sessions_managers/zellij_utils/layout_generator.py,sha256=W7mWcGDcZgQ-eBBg9-nfMjfcPpP3x-yGBLLNETAb9G4,4873
34
+ machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=YakSylhzDUqdEyI-ObyORdHqRhmWpT39j4KV31fPEIs,14177
35
+ machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=Kh0iiVjZW6glXEZymxv7y8kNoaCLhnpsP0_ooRrY9BQ,2699
36
+ machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=TzVQmjp1dj7waJpBqjGvbCvrq_elm2diLPnbD2Cou7M,5561
37
+ machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=lfEyAhZCH7jSbnwlriAhGfq6YIZr_TqWM66Cr6sul5o,3676
38
+ machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ machineconfig/cluster/templates/cli_click.py,sha256=ySGRogpwErG5MazNrruP--ZSakSs3PaIkrW7RUxvs3I,5085
40
+ machineconfig/cluster/templates/cli_gooey.py,sha256=LP6suPeoL1j-oFNWtRMAh9ofjlYNZc0HXrCzUZYjzQM,5536
41
+ machineconfig/cluster/templates/cli_trogon.py,sha256=g-_pm94-x0Mf-WZ8wsXZguInuIE845iY0VR7Ju_Tcjg,648
42
+ machineconfig/cluster/templates/run_cloud.py,sha256=R6o71rAsBF85GSQOQzXCB7wGwpAjUl0BAXafpCwAm9s,2379
43
+ machineconfig/cluster/templates/run_cluster.py,sha256=ou08xPrejDwfjVFVRNk2rl5hylsSt77bw77zd_nH0H4,4692
44
+ machineconfig/cluster/templates/run_remote.py,sha256=iGne5z4AGgLOgd4eNpEtwLtEWR-t9zziIvq82zoPOYY,3248
45
+ machineconfig/cluster/templates/utils.py,sha256=M2FoidqSeJ5N3nWjQhZD61GF35QD1uvZbuGSuL-B704,3745
46
+ machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ machineconfig/jobs/__pycache__/__init__.cpython-311.pyc,sha256=vNT4o2DVs3GExlRfunuYcKkupGIHA6AEwJ54brTwKG0,173
48
+ machineconfig/jobs/linux/msc/lid.sh,sha256=09LeoSaXCGjCn7YxPcIFQpHroYdglJlEtFU2agarh3I,1302
49
+ machineconfig/jobs/linux/msc/network.sh,sha256=dmISsh0hioDheinqee3qHfo2k7ClFx6G_GfGDxuflmc,1796
50
+ machineconfig/jobs/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ machineconfig/jobs/python/check_installations.py,sha256=G5VXGlHjZBtHHFrvSDLU2csT3fklAxQYfoqN3M2rlXA,11249
52
+ machineconfig/jobs/python/create_bootable_media.py,sha256=_FqXN8Fc5r2Drap72Y32iXtdjtBep3B-DC21QN79ICU,829
53
+ machineconfig/jobs/python/python_cargo_build_share.py,sha256=GJ0ANDzcxAZ4mxsT2Vy7RDJW2lTXIwele7NefXfBmIc,2101
54
+ machineconfig/jobs/python/python_ve_symlink.py,sha256=UUSyJTQzRT9rSHa0ku3Jv0a2UPAsidEHEw8RckBYlVs,1184
55
+ machineconfig/jobs/python/tasks.py,sha256=palEhxnzY0roWg16-LS6mZM9pjOiUe8g9Ye7UKxe8kw,151
56
+ machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc,sha256=-lL7Jv-q9R4f6AzQJ1K3vedAUH1pqmsBmNbCLEJuVoo,180
57
+ machineconfig/jobs/python/archive/python_tools.txt,sha256=obBMZ-gajhaAOpxYUSh3IOfXA6RxTgoec-d7ALzoZak,287
58
+ machineconfig/jobs/python/vscode/api.py,sha256=4Ovo1TmZf2G49IugKDnbB7FOxqjlOfyO3s-Z0yOXxj8,1696
59
+ machineconfig/jobs/python/vscode/link_ve.py,sha256=UQ5P5Z7IiwvZ1jr8bDEm10Ejkr_n_BF7ihuuWv3QAlQ,1468
60
+ machineconfig/jobs/python/vscode/select_interpreter.py,sha256=Brd_LwXO0-AeiJwxtFBbw_k-ah57vNu6_a0Os-nso74,2701
61
+ machineconfig/jobs/python/vscode/sync_code.py,sha256=rLpHOyt-t3FSC6N3mppunfRQMbI78S5FhYjDCFonaEg,2205
62
+ machineconfig/jobs/python/vscode/__pycache__/select_interpreter.cpython-311.pyc,sha256=RgsGRZtpwohxBOd5A8OJLETKJzak9D5uyHXcx2e6lwk,4820
63
+ machineconfig/jobs/python_custom_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ machineconfig/jobs/python_custom_installers/docker.py,sha256=Zd11cqAXVOcfZ4Zi301kTgG0WdDdc_zZUIME1xZUslo,2281
65
+ machineconfig/jobs/python_custom_installers/gh.py,sha256=ttP11tdXGdQS8guKoCLncL6Pptfm14IqSiWhtEX0Erg,2544
66
+ machineconfig/jobs/python_custom_installers/hx.py,sha256=rsWb0b5uX0c00e8wbGpdtgu2YPhEbFmCnE5MdNSlQ2o,5319
67
+ machineconfig/jobs/python_custom_installers/warp-cli.py,sha256=khLI1gRAJXCp1YzYBStMKIjNYIxz7A9XeSIiQToMVFw,2033
68
+ machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-311.pyc,sha256=Lh8PAOD0iL8zcVPa6RJBwflx0rn2io_1w1wHL80MosQ,198
69
+ machineconfig/jobs/python_custom_installers/archive/ngrok.py,sha256=NeZoS8k6A3BFqdQbsNNlhVN6AM4LL3Ul_bS98IXpEHg,1735
70
+ machineconfig/jobs/python_custom_installers/dev/aider.py,sha256=Ge-NkItPIsDIVkXpie5XQ8NLV6GvUjV4wFF3ZgcUUps,800
71
+ machineconfig/jobs/python_custom_installers/dev/alacritty.py,sha256=j3F332BycOcNavN8k1IJtRoGF74dKuPqLJYK1F9ucPw,1950
72
+ machineconfig/jobs/python_custom_installers/dev/brave.py,sha256=DTuvB3rAB4aW8BoLV5eY6Itf_SNev3xwWY8ICndHcaY,2065
73
+ machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py,sha256=LKetz_W3Hpj5ynhwG9apGkRILHa-N7WjdcJc_fpJ6yI,1449
74
+ machineconfig/jobs/python_custom_installers/dev/code.py,sha256=KFb0FtdzJIWqzsXbY9ZnhumY9emnhCjuMyVwdAVVbXU,1993
75
+ machineconfig/jobs/python_custom_installers/dev/cursor.py,sha256=T3jhn16WD4J_mVlnadhCnlN31ZKlWH6toTHOSYUbui4,4572
76
+ machineconfig/jobs/python_custom_installers/dev/docker_desktop.py,sha256=06VDfAOL1lENHf0ygF1ZQvCEAuh7fj8Yuw0ALDLA9dQ,2331
77
+ machineconfig/jobs/python_custom_installers/dev/espanso.py,sha256=7Qi9GPBK3hS-YHHAyfZMQETWZ-Y-Je4mxRbdcTr9BO8,2524
78
+ machineconfig/jobs/python_custom_installers/dev/goes.py,sha256=DLMo1OPOo7IGzvuKK4eBImeR9Di_nklxZTr14ZoL-VQ,1105
79
+ machineconfig/jobs/python_custom_installers/dev/lvim.py,sha256=eVPQrIeXuBqZ7H6XOevcZF2DrFfkRR89GlERUxTpbwM,2209
80
+ machineconfig/jobs/python_custom_installers/dev/nerdfont.py,sha256=PKWc9aJAm_YWi8X8fY-dsQc4T61rUNUpjIsfVx9LQNY,2068
81
+ machineconfig/jobs/python_custom_installers/dev/redis.py,sha256=2KOrcffUjdNlLAWvfjTLqrYK4iZG7swEqSbXItL2WqY,2228
82
+ machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md,sha256=Yam2UzJUCslAp01_A0gdMH59s27hna9mqQsSGU7q64g,1128
83
+ machineconfig/jobs/python_custom_installers/dev/wezterm.py,sha256=D6JNW7uc8uyLIurky4SeTu6DSmI2QnomTDUO12FrLG0,2214
84
+ machineconfig/jobs/python_custom_installers/dev/winget.py,sha256=R_Fv-NC5Ip0n9odeotGpwfRqkMzwAHL3ZNxy7P5FeD0,5970
85
+ machineconfig/jobs/python_custom_installers/scripts/linux/brave.sh,sha256=m01xquA4YZW3YrhJiTCvTZuLliELmRI1avYFyuE5-Ws,2119
86
+ machineconfig/jobs/python_custom_installers/scripts/linux/docker.sh,sha256=mojUmdFXXH5vJN7hHwP3JmRajya1yyM4bZvuLOx-nTc,5343
87
+ machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh,sha256=TiS-hWRltw66_p_Fq8gfkA_rqUIuwxoIkFZItVF6TXA,1478
88
+ machineconfig/jobs/python_custom_installers/scripts/linux/edge.sh,sha256=2JclQOi6sBTs2VQPsQWh6dPFRu1C36OyRREI0a76yJQ,1903
89
+ machineconfig/jobs/python_custom_installers/scripts/linux/nerdfont.sh,sha256=vSJQfGYVpWF2T1vz1zZuVXdeus_PWXdP7VquRQjsLwU,2351
90
+ machineconfig/jobs/python_custom_installers/scripts/linux/pgsql.sh,sha256=qe_yo4dM16B8L1VYIPqyLVvI1uns2jg7if_cokuOofY,2239
91
+ machineconfig/jobs/python_custom_installers/scripts/linux/redis.sh,sha256=XNsnypuP0UQDdNnLQ1rHC8XRYeqeaM213i1aga5_Q0M,2940
92
+ machineconfig/jobs/python_custom_installers/scripts/linux/timescaledb.sh,sha256=-thz4K7Eo_4IsNTQMLsmQdyMdVhW7NAMn5S2CB3-blE,3530
93
+ machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh,sha256=8S0nZpOeAdhpVHvygt6rs1sywCtjHNECfNNRhXMHWW8,5417
94
+ machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh,sha256=PVNLeYWdh3XEFllCVZDYIHBI42btjGlH5jbyXjJGz-Y,3033
95
+ machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh,sha256=m697rRoIIVk-f8JdI1YQmphk-JWpMc5IYbD5YaQ3SeQ,1874
96
+ machineconfig/jobs/python_generic_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
+ machineconfig/jobs/python_generic_installers/config.json,sha256=_a0I7xKV8W3MgM7CIgAp3iGpUgVX3pThPa3CJlE6bQk,20790
98
+ machineconfig/jobs/python_generic_installers/update.py,sha256=ajz1GSNU9xYVrFEDSz6Xwg7amWQ_yvW75tQa1ZvRIWc,3
99
+ machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc,sha256=6W3MndIH6TpKF1rOCDC53oH4ZV8tCD6zakk8dgCyhO8,199
100
+ machineconfig/jobs/python_generic_installers/dev/config.archive.json,sha256=1rZO1-5lxtbVGuXXoTTuvWjs54xlHHIAIIZYDAy8FSA,823
101
+ machineconfig/jobs/python_generic_installers/dev/config.json,sha256=dKzCQNuQigcuTGw1uvhHkhG-kvp2UPHpv0X6XOTYtBE,29760
102
+ machineconfig/jobs/python_linux_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
+ machineconfig/jobs/python_linux_installers/config.json,sha256=rn2mss51IgiAKKmhPdQ0nmTC_aPFm-6rIfHdCBlEFBE,5324
104
+ machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-311.pyc,sha256=8zrYiRkoo6FngO_GT1RdEiQoYqXNBSkdzr6I0Hu9jZg,197
105
+ machineconfig/jobs/python_linux_installers/archive/config.json,sha256=haf6H05bW2AC-CptfZBeNeMoQK60w8iWmCZ2aDiL4O0,302
106
+ machineconfig/jobs/python_linux_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ machineconfig/jobs/python_linux_installers/dev/config.json,sha256=IxlCuMfWX-SWCnQxQN5JBlxDIAHPvZRlSFbszqERj2w,9951
108
+ machineconfig/jobs/python_windows_installers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ machineconfig/jobs/python_windows_installers/config.json,sha256=_jMleGe2iqcOr4yc1ma4U-_6bgUsuqqLkCDAvypOCZQ,2256
110
+ machineconfig/jobs/python_windows_installers/archive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ machineconfig/jobs/python_windows_installers/archive/file.json,sha256=sF9TUg7DQnq6R6qqLa9tRWfaQRfYKi4cy4T1hZ8yegU,314
112
+ machineconfig/jobs/python_windows_installers/dev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ machineconfig/jobs/python_windows_installers/dev/config.json,sha256=Kqm5ja2hDMjnOilYIh7Yg-PTNulqvrtDy4LMFYFnqR4,8
114
+ machineconfig/jobs/windows/start_terminal.ps1,sha256=LbsX9YjTIsHnemvwNiBoJr8UKnbnzKy948PsS8j5H94,469
115
+ machineconfig/jobs/windows/startup_file.cmd,sha256=qOqDwL0MmRB-fHauJKjOO0mhczyA3-cdRUyY1p7NCok,95
116
+ machineconfig/jobs/windows/archive/archive_pygraphviz.ps1,sha256=RkR6Y41fNPqTpt2UTJU7qwHEZIYMDicn98p2RihDTw4,667
117
+ machineconfig/jobs/windows/archive/openssh-server_add_key.ps1,sha256=91cL3K4H2saAuzOS1GxGicpc64ZDpgvPY39YPBWyxZI,269
118
+ machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1,sha256=-7pElYiGFXUvO4dp6rW0LXmNo65h3hFTHJWyHbmO3Xc,745
119
+ machineconfig/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ machineconfig/profile/create.py,sha256=WIWIMSVRsxUAZs127-bVNyZL6h5fkV1DCzaSuXHFBOY,6044
121
+ machineconfig/profile/create_hardlinks.py,sha256=7XjK9ocAWDxuyoQwx0iskLcXGPVDjDuoxulGdISotgQ,5439
122
+ machineconfig/profile/shell.py,sha256=q1iMeLN98HJiyD4iO8J5dJFUaJI5c40yex1Ii9xidNc,10341
123
+ machineconfig/profile/__pycache__/__init__.cpython-311.pyc,sha256=6gOzV1HQTZjV4MYfRkbhkhd7ipdMtvf7VaSsaducCf4,176
124
+ machineconfig/profile/__pycache__/create.cpython-311.pyc,sha256=b7M1MklDpLOoHATJ6wPt00FUC0L0CqyjfV4YLbhGaMA,8719
125
+ machineconfig/profile/__pycache__/shell.cpython-311.pyc,sha256=gxIxNHWggqVWGNjwjb5ZbY5LKfmBpkmPrVJ3sFJbHao,12508
126
+ machineconfig/profile/records/generic/shares.toml,sha256=FduDztfyQtZcr5bfx-RSKhEEweweQSWfVXkKWnx8hCY,143
127
+ machineconfig/profile/records/linux/apps_summary_report.csv,sha256=pw9djvaRUPalKDLn2sl3odcbD2_Zx3aEupsQ8UPfaaY,2738
128
+ machineconfig/profile/records/linux/apps_summary_report.md,sha256=l77oofA6Rliql0ZgKGIZi8bstFoGyyGTxeS8p2PtOj0,5634
129
+ machineconfig/profile/records/windows/apps_summary_report.csv,sha256=nN5BoACBqXgKNczm2t5KaCLdDnxFCIscX8iRkWBm0a4,47
130
+ machineconfig/profile/records/windows/apps_summary_report.md,sha256=O5hmAcpObaLmOjYLvHg9kkPJryqFwFaP8OsmfPwfR1o,137
131
+ machineconfig/scripts/__init__.py,sha256=8aZPVoch_gcI0Ihcr30zQcPjRQMWiWzDnQXnOm7spzo,73
132
+ machineconfig/scripts/__pycache__/__init__.cpython-311.pyc,sha256=584qleTKH8_xZev1ZeFo6FkdhzaMF45ZXjMjnnAuU_E,252
133
+ machineconfig/scripts/__pycache__/__init__.cpython-313.pyc,sha256=ji1L9FzMqXEBix9V6pDcdZlEA6FHOragyIsKvs1kp6E,246
134
+ machineconfig/scripts/cloud/init.sh,sha256=n07vNAH33FClhyCmhe7YitmwPSha3AeU3Sm-HQYg_ig,4630
135
+ machineconfig/scripts/linux/activate_ve,sha256=ylZHQh1Cj7EA6O78I74LurDZL9OuCtcSFWYZ-ea6wh8,2762
136
+ machineconfig/scripts/linux/checkout_versions,sha256=giqRWpwMkS_GYa3NOfSsqBIZta3apbws3QbdNfNHj3c,173
137
+ machineconfig/scripts/linux/choose_wezterm_theme,sha256=f5GTEc74RmYBzwvrhYY0vBLyEPf2EVEPQmdq6q2N3bM,219
138
+ machineconfig/scripts/linux/cloud_copy,sha256=HNbPj-lvwh0L0Vz0z6ZEQGatUfAH3qrAoByPdEY4jvc,166
139
+ machineconfig/scripts/linux/cloud_manager,sha256=3znrdKixSfATRW8-79scrFXXH4S1PlNBtL0mcgxURDc,169
140
+ machineconfig/scripts/linux/cloud_mount,sha256=IdJEROhFAJHLjg6rNOt80CCze-iN0a-PbfA4ir4Igaw,523
141
+ machineconfig/scripts/linux/cloud_repo_sync,sha256=lp1VDmCJMesuFhFYJBgLFNS4CmsxVHTqHpO9RVrRHD0,361
142
+ machineconfig/scripts/linux/cloud_sync,sha256=-F3225O1dKM-FSBb5iqD5JEKAOOmSOx3ib8xZm_euc0,514
143
+ machineconfig/scripts/linux/croshell,sha256=h1-LWS1AHSCJk4Kq_ngP4ndxEO9WR7PVOiLaAXITmSg,752
144
+ machineconfig/scripts/linux/devops,sha256=zADVTmjmYW8LxnkZFtwOdAddrt73_4d9TzwOMPwf3_I,586
145
+ machineconfig/scripts/linux/fire,sha256=dMxdRthQNc7gONpS-C7I8hXmTlAMlcQhDsgMnaDb5js,834
146
+ machineconfig/scripts/linux/fire_agents,sha256=bX39bY9xf4hX-bn_Dy5XN3foIEaytLpW-oqFXYRrJ04,836
147
+ machineconfig/scripts/linux/ftpx,sha256=2GPRwSUhshI4BNxmOeMVoYlM6I7OQ0o3b8t6FlKDyRk,162
148
+ machineconfig/scripts/linux/fzf2g,sha256=YK_YLmxCm6zms24ytylgoUHnvWqq8oTdRTiskzDClS0,831
149
+ machineconfig/scripts/linux/fzfag,sha256=x0rX7vM_YjKLZ822D2Xh0HdaTj5kR_gG3g_5_w6ring,679
150
+ machineconfig/scripts/linux/fzffg,sha256=jjeeyFkWmBbwH2taRqC3EOzZep2KR-ZYoI4UI-5kHqg,1090
151
+ machineconfig/scripts/linux/fzfg,sha256=ClGnJZUsIk4y0qs3W5iXGo-nd0FaqAHMsnh8uoXQFy8,1190
152
+ machineconfig/scripts/linux/fzfrga,sha256=xSdws6ae28ZXkkqz_uupZ0MYw_vxE2qpLT2DLS3WITM,460
153
+ machineconfig/scripts/linux/gh_models,sha256=dcq6BLN5kU9Q_BSbXQJay0aFgKqnXnTZwlp9HZ-SMfE,167
154
+ machineconfig/scripts/linux/kill_process,sha256=lZ6LDzBPonQrVxCoc0R4HWW9x9hb5L5KjBhWugnxDNU,213
155
+ machineconfig/scripts/linux/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
156
+ machineconfig/scripts/linux/mount_nfs,sha256=HLWF7ocUjuDXaFFtOzEA9JlROTcsbDEhgosBdBpBUUA,2061
157
+ machineconfig/scripts/linux/mount_nw_drive,sha256=fZWV2x7Slne2c0NU-65qXBmTIeJNvjAHY-NqkDgoq1U,2527
158
+ machineconfig/scripts/linux/mount_smb,sha256=7UN5EP1kuxYL_-CnyaH4f9Wuu2CgALDZpJ0mPcdvCiY,94
159
+ machineconfig/scripts/linux/programs,sha256=KlKTLhreJ0CRHvtm61ilOtVm8VUia7gb0zWD1IP6rNY,472
160
+ machineconfig/scripts/linux/repos,sha256=i7HZ3Oows9ETfE3boQ7pN3qOLyX-ocGC701NzzsldVU,508
161
+ machineconfig/scripts/linux/scheduler,sha256=XHwrI4r8QsKJMDKCpBJj6mktcaKBNrpDmsqZ9ZFx7xI,164
162
+ machineconfig/scripts/linux/share_cloud.sh,sha256=75IzCm7Nob1wO-zlfaNyPPod1IjAsVCG5lcMFdXmiI4,3010
163
+ machineconfig/scripts/linux/share_nfs,sha256=LDQZQ9TV7z2y7RtNHiO4Wb513MztyGjaAV-GzTGwUdc,1374
164
+ machineconfig/scripts/linux/share_smb,sha256=HZX8BKgMlS9JzkGIYnxTsPvoxEBBuVLVkqzR3pmGFGY,20
165
+ machineconfig/scripts/linux/skrg,sha256=JgQJGwxaChr148bDnpTB0rrqZMe2o2zGSDA9x_oUhWM,133
166
+ machineconfig/scripts/linux/start_docker,sha256=_yDN_PPqgzSUnPT7dmniMTpL4IfeeaGy1a2OL3IJlDU,525
167
+ machineconfig/scripts/linux/start_slidev,sha256=zJ4AOT_cs-IcPul3ZyVMpeLl3hikQrDQtBa-FBwcbGY,602
168
+ machineconfig/scripts/linux/start_terminals,sha256=i5omQBBGuiSeh1ZUFODkT7wFljEJQnUHhEp4E5X5Ahw,246
169
+ machineconfig/scripts/linux/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP96DTp77KHk2tU8,613
170
+ machineconfig/scripts/linux/url2md,sha256=WdgHHYBPC-N1HJWl__Txs59oSOYWEcbT8rTLo-lWJvo,157
171
+ machineconfig/scripts/linux/wifi_conn,sha256=h4yWeW8E4jXrOoeYABMjWYXzsVxT0WOGCu0fghhSPMQ,504
172
+ machineconfig/scripts/linux/z_ls,sha256=ATZtu0ccN3AKvAOxkwLq1xgQjJ3en5byEWJ3Q8afnNg,3340
173
+ machineconfig/scripts/linux/archive/tmate_conn,sha256=mDymJCJ-scdYhoG06EAMncjoSAj8irg3YqZzP69vLgI,378
174
+ machineconfig/scripts/linux/archive/tmate_start,sha256=eyaknKoVb-XtJnZcfB0CCxm9z9zkD0dsuIDeFLKbIO8,452
175
+ machineconfig/scripts/linux/archive/transfer_wsl_win,sha256=KzSaO4CWbuM6UNoNasdJhaWWjRhN0lWIiJrBZMmONz0,137
176
+ machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ machineconfig/scripts/python/choose_wezterm_theme.py,sha256=RWJImusjyNhIO6lAlSYtlx_kBIdjwGVBR8EHzg_dCbU,3225
178
+ machineconfig/scripts/python/cloud_copy.py,sha256=XqVc0KgdwyJIq8Y47cNRjnN7Flc_0wdxxUUanbkJF9M,8547
179
+ machineconfig/scripts/python/cloud_manager.py,sha256=MAVOKqXGxnlMaQGEv6k-q_PrgN0at6J8qQDhPiH2lI8,3488
180
+ machineconfig/scripts/python/cloud_mount.py,sha256=m7qVXkqAgFppUdws0lc3u67MqyIuckdKpv8mnBzrKgQ,6485
181
+ machineconfig/scripts/python/cloud_repo_sync.py,sha256=15sF0de6AaNejxbjCyeoT027u4IWporLbLHhF1UWB4M,9427
182
+ machineconfig/scripts/python/cloud_sync.py,sha256=BQbe_EMl3_s7YZXnmOwK2MsUZkGTQAd_AcO15jZZFdM,3826
183
+ machineconfig/scripts/python/croshell.py,sha256=jxaZfsSCYYARPGR43h50Zc4zt3WdU1brVkPoyYeOjEM,9210
184
+ machineconfig/scripts/python/devops.py,sha256=JGaQiWo1zyvkaYQRNYYfUxpX-IShXhxJ2beNgeU1Xok,8272
185
+ machineconfig/scripts/python/devops_add_identity.py,sha256=rH2d0xKBbZOuv0kMjt01LrIwJb5cZBf99acag-zyuuc,3759
186
+ machineconfig/scripts/python/devops_add_ssh_key.py,sha256=HdAzO_gZBJrTTkZjwgdJjIDRyQtWzlYpgLCuCRvS1ZE,6618
187
+ machineconfig/scripts/python/devops_backup_retrieve.py,sha256=DeWjPzoJVuA6q8M-vXnB5pRINFo6OUbvf_BdR11RySU,6144
188
+ machineconfig/scripts/python/devops_devapps_install.py,sha256=xddA4qmdYoMKnSR2eROF4x6GF6FZIPp_8fC9XZu6lFA,7958
189
+ machineconfig/scripts/python/devops_update_repos.py,sha256=B6p9hCV4nVYGqYsWnu4i-Myne0k0V3rpXYqkTEl6gsQ,3921
190
+ machineconfig/scripts/python/dotfile.py,sha256=qq59lrE2JWCsD79cSqhbAy2IqCw2s-gWA_8YWKYi8Jc,2169
191
+ machineconfig/scripts/python/fire_agents.py,sha256=zSQ_ap7ToVzAcdGinAPdRWa50gJzpFMJa5JFnIOydJQ,3241
192
+ machineconfig/scripts/python/fire_jobs.py,sha256=X89GGaNlC0hImuawr2O-SYB14KWk4w4-Y1YVnDe2N_s,19603
193
+ machineconfig/scripts/python/ftpx.py,sha256=EGslb07y4fVVTlm5MFwQUJWej7ucN9TuISi4Vzph1gM,9691
194
+ machineconfig/scripts/python/get_zellij_cmd.py,sha256=6irkwgbeC18OWBnTBAF4i0klqZ6GlwagXaQIUBRFxVQ,596
195
+ machineconfig/scripts/python/gh_models.py,sha256=EE8U4mMIOeiLKlqDCVcr4BXwSUJ_yKaZV_7tQ_tqAyo,5396
196
+ machineconfig/scripts/python/mount_nfs.py,sha256=NGo5KuQWI6jipHld91-3S0Cv5fUoI4WesUGvw3JSX4k,3156
197
+ machineconfig/scripts/python/mount_nw_drive.py,sha256=gxolpsM-2Nz81sQZDEZ8rbp4mVzjLUudWvl8ZNxgGac,1463
198
+ machineconfig/scripts/python/mount_ssh.py,sha256=JiMFCW-9kPESo5ccSJDt3wG7iq6mNu4zcouKk0tUHEs,2094
199
+ machineconfig/scripts/python/onetimeshare.py,sha256=bmGsNnskym5OWfIhpOfZG5jq3m89FS0a6dF5Sb8LaZM,2539
200
+ machineconfig/scripts/python/pomodoro.py,sha256=SPkfeoZGv8rylGiOyzQ7UK3aXZ3G2FIOuGkSuBUggOI,2019
201
+ machineconfig/scripts/python/repos.py,sha256=eEMAZhjEY3D5IfXHTAnaVDc_wcA0xuWHOs1isFzEVb8,11391
202
+ machineconfig/scripts/python/scheduler.py,sha256=vDRzO1PUrTR45rEXufaBb7lTf9x9mfHUgQjDkGjLsPw,3091
203
+ machineconfig/scripts/python/snapshot.py,sha256=b2JakHHNFkPHg49q6U1OyQpL8sz5hLSIwoCHfH1kURE,1027
204
+ machineconfig/scripts/python/start_slidev.py,sha256=6lTNqdNWAmofp0386Q2DAXdK6L6NeKY-b4ALGEE7gac,4297
205
+ machineconfig/scripts/python/start_terminals.py,sha256=OPCUHQM9G4FaR6ZJY7CrC4RNZsBW3isLZXytrLYwtRc,6111
206
+ machineconfig/scripts/python/viewer.py,sha256=zeWszE9QESdz7QOykSG9AY6gmqvGkxa80o1TJYH4-e4,1961
207
+ machineconfig/scripts/python/viewer_template.py,sha256=g_sS2uZPN96sQOGereSJcrg6z1erM2MZPlw9vwZhSxY,3945
208
+ machineconfig/scripts/python/wifi_conn.py,sha256=HK9ulZeiVRqM3rgRzUAmbUD0tP_Z9JiewywlniIQpfY,16766
209
+ machineconfig/scripts/python/wsl_windows_transfer.py,sha256=J7RngvXlc9uUhMWAHtT9wMv6WTRs6vSXMSLjgz9_D2A,3625
210
+ machineconfig/scripts/python/__pycache__/__init__.cpython-311.pyc,sha256=Fp_Lc6UwspaLLvU3SV0i1SFXsTHTeqxBboepXwf0j6g,183
211
+ machineconfig/scripts/python/__pycache__/__init__.cpython-313.pyc,sha256=CrRHLNLtsLPXS8WqXX81lcyewp5F7BNbNxYQpyUiSkY,171
212
+ machineconfig/scripts/python/__pycache__/cloud_copy.cpython-311.pyc,sha256=ofEjvoXvuGSMnfm2ISBSKAyW8IG8eJwfjxEmKusFV1M,13591
213
+ machineconfig/scripts/python/__pycache__/cloud_mount.cpython-311.pyc,sha256=Ww9YQ61mkCgLoXzyfWCYJwy4E2Q8erpILzZoF0AXUBQ,9365
214
+ machineconfig/scripts/python/__pycache__/cloud_sync.cpython-311.pyc,sha256=Xa-bn9m5eGugaqmBiPIHhUOJT47SXtYswQYL4nhAW4A,5060
215
+ machineconfig/scripts/python/__pycache__/croshell.cpython-311.pyc,sha256=9M8Gb5S1115XlwjzWzNNvldVlwrWycqGvnzsjLtO-xU,11468
216
+ machineconfig/scripts/python/__pycache__/devops.cpython-311.pyc,sha256=EQ2ryP_0dbQ9R6bLzcUnijxyLZsEjinAVDGY1uxD5w4,13287
217
+ machineconfig/scripts/python/__pycache__/devops_backup_retrieve.cpython-311.pyc,sha256=Bo--NSxW10D7iO-VubPbwH_P-SJsb4hULXAwtx3WhFc,10426
218
+ machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc,sha256=mSfuG3ehhkbtZnU5PMDv9mS4LcMhj5NDKQBi882nFlc,10162
219
+ machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc,sha256=lqrkZtc8WDeFWf2KkU0AYD2hce-dtKQxHyRpYGPByqo,6590
220
+ machineconfig/scripts/python/__pycache__/fire_agents.cpython-311.pyc,sha256=N1AkkdkjZ7rtAbUB_xWnV8BypychQSw2eOJoEqNjiH8,5589
221
+ machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc,sha256=ZmkYyfr2lZKAFaQ556l6gkdW3SFxDuGqDeKy57zv4MQ,21663
222
+ machineconfig/scripts/python/__pycache__/fire_jobs.cpython-313.pyc,sha256=wMwq9RL120uZ2j6Zex8-SVubEFnaFZantHF2lcW6IwY,20181
223
+ machineconfig/scripts/python/__pycache__/get_zellij_cmd.cpython-311.pyc,sha256=vDgQ-_22m3AyNJKjrXHZEPOOFiZ4Zh2z9NtdQvCWdXY,891
224
+ machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc,sha256=ka0LHOdCwCu8R1RPCMBkndJrXXewG3UthfZl_l9gOZA,17583
225
+ machineconfig/scripts/python/archive/im2text.py,sha256=WLyic89vxi_pqQMzo-MOrGf39JEZjCdvDrXYUMVvZNY,1163
226
+ machineconfig/scripts/python/archive/tmate_conn.py,sha256=bUztIO87JReVFzcm7RsOokDXI6wD6u6cTSSWTBwO0Ec,1251
227
+ machineconfig/scripts/python/archive/tmate_start.py,sha256=UcgOxkTegHomeaZp0PeXuubJerzAA2mMzS_wxA1K074,1530
228
+ machineconfig/scripts/python/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ machineconfig/scripts/python/helpers/cloud_helpers.py,sha256=VY_FciDtoHzQV6dXRNeDPmxRwvDrW_PD_vCiTxTEnZQ,4954
230
+ machineconfig/scripts/python/helpers/helpers2.py,sha256=CLppdR5QFD3-SIxlP5TefiFM94cDjq6FKg4QMBK0bAg,7142
231
+ machineconfig/scripts/python/helpers/helpers4.py,sha256=DXX9qWvzeoGa_kAXs9cdyhzL2ZnloMnSJV2XRtb2on8,7527
232
+ machineconfig/scripts/python/helpers/helpers5.py,sha256=VrhEpaw7bPUXH7u_MZ_WxkMou_zF_SB4jOmDDQFFZ5A,1108
233
+ machineconfig/scripts/python/helpers/repo_sync_helpers.py,sha256=OkueaRYwLtLCTMzMWFPzgkfCTEPIYu53iFzVN1P80fk,4425
234
+ machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc,sha256=laY_JNNdHB1gUeXe1zTTPPi0bFeFjB_D0mOWoV9mdYA,191
235
+ machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-313.pyc,sha256=7DBSViiKn4Vtp2mDghWNGg9RcSOQjRe4W9DzDaDn7lg,179
236
+ machineconfig/scripts/python/helpers/__pycache__/cloud_helpers.cpython-311.pyc,sha256=RS6lxAKsMYs_ZtWpodb_fSF0sZNuqf12_1uxqWbu2cQ,9138
237
+ machineconfig/scripts/python/helpers/__pycache__/helpers2.cpython-311.pyc,sha256=kB7_hyrBwuBxpHId5cy_owathTvv8uGiWP4ztikuUa8,7853
238
+ machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc,sha256=uF8yuq2oTLjcPsWX5vIMaf898FWXuwKE3M5mHBJDIWY,10615
239
+ machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-313.pyc,sha256=NobOXSsARSrWN6xRikdCy-Kv4gokkOovrH09ha3HZ-I,11043
240
+ machineconfig/scripts/python/helpers/__pycache__/repo_sync_helpers.cpython-311.pyc,sha256=U0HPSMRmaDkysn6N8heE4fMM5017CtK4hJQVJUJmBT0,7758
241
+ machineconfig/scripts/windows/activate_ve.ps1,sha256=1YDd90eIhJ680a-tPHeBesnIVLHWqLn1DU66B-2oA7E,1875
242
+ machineconfig/scripts/windows/checkout_version.ps1,sha256=l6U-qSroHFd_fDa6Z0uSJ5Yxfr0D3nW5uotJRQ7zpI8,148
243
+ machineconfig/scripts/windows/choose_wezterm_theme.ps1,sha256=9_lPcTMuZhaxi860o5lyQWujzMRqm3ATgeGbboECtfI,367
244
+ machineconfig/scripts/windows/cloud_copy.ps1,sha256=ubLWKzpF6RMU35BLqSRHtVqTLEwActuegWMPmuJHWbg,495
245
+ machineconfig/scripts/windows/cloud_manager.ps1,sha256=ndmz60_AEGiNjSROL8s27BHLINipY1BTfq4wFVUaaNA,262
246
+ machineconfig/scripts/windows/cloud_mount.ps1,sha256=y927i24HzcUEG1uT-BIWRH0hij7iYmN19H1HWvWLPLc,718
247
+ machineconfig/scripts/windows/cloud_repo_sync.ps1,sha256=Lj_peGSxRKZhh0KtxJQHiJNbM1cUfuaP-BZgQSaXxSY,237
248
+ machineconfig/scripts/windows/cloud_sync.ps1,sha256=AHXn8xmJBRIXiYmolNhSt2-_FonWg3lIsgJQ-Z0QSc8,514
249
+ machineconfig/scripts/windows/croshell.ps1,sha256=zyfi7eXOy6Cuu1Pi9AXkVQiZDnySZtiVoFPDt2-zph8,1283
250
+ machineconfig/scripts/windows/devops.ps1,sha256=qqAcf59DGIhYr8WCCc_z4FhhJ8wnjxbheSuMz0R5GcE,861
251
+ machineconfig/scripts/windows/dotfile.ps1,sha256=b1y5MMtDE-yxEpERNVnqyGO1eX-MVvuXjwJP6r1l5CE,256
252
+ machineconfig/scripts/windows/fire.ps1,sha256=CV7XGu2r9qEY4D2DGyxPicsPYDzAVTNu0VyXEZzJeQw,1207
253
+ machineconfig/scripts/windows/ftpx.ps1,sha256=nTpua0Q2QuaMay9BITONnfHJgysldZXnhq4oeQ-1HwQ,155
254
+ machineconfig/scripts/windows/fzfb.ps1,sha256=Bmngm2aY8hnPa3iKAOK6EPDYdKzGLUc81wYOnJhNoqg,149
255
+ machineconfig/scripts/windows/fzfg.ps1,sha256=CHJbMrMuZePd4dxwIwz3g4XWAEmWmckuX-Nrx2xgRkg,27
256
+ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqkV0o8a8ywXcM,488
257
+ machineconfig/scripts/windows/gpt.ps1,sha256=78oqOADLMuIZ7uY18lhcp_-IAIj57dkFh0uieanscjU,359
258
+ machineconfig/scripts/windows/grep.ps1,sha256=sUP_cXtqPEWLQ8_TdGJX7_-CO6CQYTP4pA-ZmkdPLdY,49
259
+ machineconfig/scripts/windows/kill_process.ps1,sha256=EESikl97AC3Wpjy8flS6tuSCso1FxDhLjwrvyCO21TM,189
260
+ machineconfig/scripts/windows/mount_nfs.ps1,sha256=wGIxPe62AE3tLzjSIeYJGva4D_HiMCEsGUa8BsMyDkI,2073
261
+ machineconfig/scripts/windows/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
262
+ machineconfig/scripts/windows/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
263
+ machineconfig/scripts/windows/mount_ssh.ps1,sha256=NUAt2O3HOxLrSSwaCsI71VXflPbWx5RzWmoGugbukvY,380
264
+ machineconfig/scripts/windows/nano.ps1,sha256=H1PNN1x3UnOCGwijgMij-K2ZM2E20sfsLTEEap-W5dQ,50
265
+ machineconfig/scripts/windows/neofetch.ps1,sha256=U2bcNNMv_IHz9cUZPTxC2-TetOFOsKAIi-Q9ryIgZqM,150
266
+ machineconfig/scripts/windows/pomodoro.ps1,sha256=X0QK2_lTnuaqjpOm10mssTSM-K5t9Vo7Nd0skm3rvJs,246
267
+ machineconfig/scripts/windows/py2exe.ps1,sha256=tOSHD8cIECPJ57LBqfNr3RNfcY535O4_hfe-uWBwEno,314
268
+ machineconfig/scripts/windows/reload_path.ps1,sha256=81hQY18LFApVZWFiUfgMzzPH2pJ1WD1fHInfmicBZFA,217
269
+ machineconfig/scripts/windows/repos.ps1,sha256=OppN2jHs-9HydImjn4h_4f0JpNelrSikF0HbLOq2EyA,842
270
+ machineconfig/scripts/windows/scheduler.ps1,sha256=iyzirMtK11UOu1fxVtOIH7CoRA0rvP5dT6PPFIV21hc,136
271
+ machineconfig/scripts/windows/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
272
+ machineconfig/scripts/windows/share_nfs.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
273
+ machineconfig/scripts/windows/share_smb.ps1,sha256=_iJLdgm4pK6Qhz9MpgJlDKHOul38pT8F_VQXqPNBZDE,543
274
+ machineconfig/scripts/windows/snapshot.ps1,sha256=L2euAB4c6zQW7Ym4HkCMCUZ4fD7MBllbd31y20xAHHE,156
275
+ machineconfig/scripts/windows/start_slidev.ps1,sha256=BrKfKxxw2eCemDJahEQjqtuydCDHsBIZUZ-jLPfbgGQ,438
276
+ machineconfig/scripts/windows/start_terminals.ps1,sha256=dyyYJFAe7eG_e8pLUgYFwsXj5RMq5AS-m2Jtofl4v14,377
277
+ machineconfig/scripts/windows/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
278
+ machineconfig/scripts/windows/wifi_conn.ps1,sha256=6LrZDnE0KDyusvXRqtw8dc4cFhW8nbFIBRu7vOLCTI0,189
279
+ machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1,sha256=dGKAoP8WsQzHiAZjD8WT1Ne8RRQU8xf9HdH9bDkihh4,1720
280
+ machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1,sha256=dr6t49UCnMHAhA0AR4gHluN0HvS5wzyygCNmjORfknU,2715
281
+ machineconfig/scripts/windows/wsl_windows_transfer.ps1,sha256=XrkdewY3TbXFTYHYjCiJUdkwrUn3RwK6x9VdeFCrCjU,242
282
+ machineconfig/scripts/windows/archive/gource2vid.ps1,sha256=tkMdMJkvguoKhzRb2yCJr4l8W54bdIt2yHl0oPPWKxE,484
283
+ machineconfig/scripts/windows/archive/im2text.ps1,sha256=yf9yVPiuQoagpOc0mzFaWNmoCLckey_GmSByqk3diHQ,784
284
+ machineconfig/scripts/windows/archive/secure_pull.ps1,sha256=7VR6EvLmWXIqUZDQcd5nb-OYkKBOkOcCJDFJr4rhf9A,1606
285
+ machineconfig/scripts/windows/archive/secure_push.ps1,sha256=GeAHwy8o5lv4Cta5pNE286GPIezHbfQBsorWJsVvc1Q,2665
286
+ machineconfig/scripts/windows/archive/tmate_conn.ps1,sha256=D3h4FNmVSwL6fbGkG4wwIToH57yVXWlULSqyEOozS8U,193
287
+ machineconfig/scripts/windows/utils/op_script_delete.ps1,sha256=tX5drodmlzbM5kEYXc8oCsiWFtOlMRXouuBxX6AGsmQ,167
288
+ machineconfig/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ machineconfig/settings/broot/br.sh,sha256=UoiQN5ULJqCnwVudUonZ5_sO0TEHZE8LEROgArnDD7k,1747
290
+ machineconfig/settings/broot/brootcd.ps1,sha256=BB8uGnoVywxFWSgwsHxlbS8V4W_Qom3L1SedekGpgWA,877
291
+ machineconfig/settings/broot/conf.toml,sha256=2C2ggpFR0Z-Sceu0iwHW0LFz45AjwyeCBD0PSP0VIoo,55
292
+ machineconfig/settings/glow/glow.yml,sha256=59eFsIPBXRgJSVb6kcA7XHkWuLe0_wNandhc9KGykmE,245
293
+ machineconfig/settings/gromit-mpx/gromit-mpx.cfg,sha256=NW7a4OmGPpMCiFkQNNFNdUf5VqL1DN8Tkiz2oVRt7Gw,1067
294
+ machineconfig/settings/helix/config.toml,sha256=DTUKB1E03bnTrT-rm-lrhV1bdGhVldkPL3VVptaVSbE,513
295
+ machineconfig/settings/helix/languages.toml,sha256=d6zOu9PjmGhOyvYKHD6LMeUXtVF5vR6IqxQ-jpRpRz4,725
296
+ machineconfig/settings/keras/keras.json,sha256=uSJa-eCun6xl6xvlVP-totLgWDw7etCMzxZT5jS2mgw,115
297
+ machineconfig/settings/keyboard/espanso/config/default.yml,sha256=RBIuA4AsAWB8BoRojQhbkVV0LtjL0sYFPaLtgbWookM,1685
298
+ machineconfig/settings/keyboard/espanso/match/base.yml,sha256=A0QcNSzbdqSUNh42WqGLCZkwi5l8LmbDUuBO8XV_jIQ,1567
299
+ machineconfig/settings/keyboard/kanata/kanata.kbd,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
+ machineconfig/settings/lf/linux/colors,sha256=uSW9O3CkiVomxK8-JN8hQRcM71yADuOSjichbfBFTpg,4148
301
+ machineconfig/settings/lf/linux/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
302
+ machineconfig/settings/lf/linux/lfrc,sha256=-EXPnCVYHn4WMd_jOOFWhvuCy3l68UaSrolAslFMMo0,5360
303
+ machineconfig/settings/lf/linux/autocall/delete.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
+ machineconfig/settings/lf/linux/autocall/on-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
+ machineconfig/settings/lf/linux/autocall/on-quit.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
+ machineconfig/settings/lf/linux/autocall/open.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
+ machineconfig/settings/lf/linux/autocall/paste.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
+ machineconfig/settings/lf/linux/autocall/pre-cd.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
+ machineconfig/settings/lf/linux/autocall/rename.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
+ machineconfig/settings/lf/linux/exe/cleaner.sh,sha256=NKK30rUcrHXnwy8srylyaWL-XJdDWJIjF4a3mfbdEsA,209
311
+ machineconfig/settings/lf/linux/exe/fzf_nano.sh,sha256=b6YTQ5zXrdV4tiedJHqWJLVud6LNWDtUXig0U7o9zLc,619
312
+ machineconfig/settings/lf/linux/exe/leftpane_previewer.sh,sha256=KXMq81hIvU9uzOuanluVcxVgJmEOYy-5sUbzcuc9b6U,200
313
+ machineconfig/settings/lf/linux/exe/lfcd.sh,sha256=dh_9JZHGHeNjGd8BE1NYNK4fO3Exwa9bAehywGYhSNs,770
314
+ machineconfig/settings/lf/linux/exe/previewer.sh,sha256=Yqjp0ZQ-96suN_DqrT0t72Bzg-LwaY8L69VZL5epEb0,796
315
+ machineconfig/settings/lf/linux/exe/previewer_archive.sh,sha256=MGAlXrso-RSrvBbkFnmBHSGoPB54ZHtY_s5Qd1-fNZM,3536
316
+ machineconfig/settings/lf/windows/cd_tere.ps1,sha256=kiW7LiE0Pe2Pjq_4CO2N36wHx_0N-9fXXUDUvHWCOuc,203
317
+ machineconfig/settings/lf/windows/cd_zoxide.ps1,sha256=gQKJPa_YDmp5BiCKeYYHkZB_p7py8EXIhXtZi6vnN8o,159
318
+ machineconfig/settings/lf/windows/cd_zoxide2.ps1,sha256=9JwMeQdRxgEA9EGSlDh-XOFgIxQH3Dl9fuAWYnMFROs,141
319
+ machineconfig/settings/lf/windows/colors,sha256=8SldjeVxyJp281zU-d6SAvPV7gux_B8DS4my2CZpjng,2991
320
+ machineconfig/settings/lf/windows/fzf_edit.ps1,sha256=kaEl3VKWW8THaqcCMVUkpdUrxscwdlT9DA_RF7W-MQA,395
321
+ machineconfig/settings/lf/windows/icons,sha256=liVoi5nOaxFyujil2z7Pcu8l5dG7_uurJ9IJD36jVhI,7147
322
+ machineconfig/settings/lf/windows/leftpane_previewer.ps1,sha256=SjwqXPqrU-5M0RCsYToJs2QHYy51rSTsbr05dihKtzE,87
323
+ machineconfig/settings/lf/windows/lfcd.ps1,sha256=9mka24wTS2fwu9xUiveCEoodpniAuboZcvbsusQ708E,971
324
+ machineconfig/settings/lf/windows/lfrc,sha256=8tW86t67PmjPdtysVRYNU3mICUa1pvhCGJnH0JlbFAg,4389
325
+ machineconfig/settings/lf/windows/mkdir.ps1,sha256=Uluty9BrnS2kMsouiSqmt20GsNPbbTiHrKxwu1FtuME,56
326
+ machineconfig/settings/lf/windows/mkfile.ps1,sha256=sAMnviWyZ8fkhZi7euKLUY2DgIg7domqZ9SSCbK2VWU,62
327
+ machineconfig/settings/lf/windows/previewer.ps1,sha256=Mfg1WDXIBu0GVECWd11MUCBzE20KVfvu63uhcmncZro,206
328
+ machineconfig/settings/lf/windows/tst.ps1,sha256=exLMP3aMVyhCjfJYgdYtcKVwJr_toxtNvVJHldyiGlI,4
329
+ machineconfig/settings/lf/windows/autocall/delete.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
+ machineconfig/settings/lf/windows/autocall/on-cd.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
+ machineconfig/settings/lf/windows/autocall/on-quit.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ machineconfig/settings/lf/windows/autocall/open.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
+ machineconfig/settings/lf/windows/autocall/paste.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
+ machineconfig/settings/lf/windows/autocall/pre-cd.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
+ machineconfig/settings/lf/windows/autocall/rename.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ machineconfig/settings/linters/.flake8,sha256=1By04Qwy5saCudYKOw2bKHSNQg4N128SJudwD3SVGhQ,1958
337
+ machineconfig/settings/linters/.mypy.ini,sha256=BNxVtNuliJZVeFpCRRIQpSWFDQYuKqKtcVKYcZ-sApc,811
338
+ machineconfig/settings/linters/.pylintrc,sha256=_hYrPgtMvQc877u5NTU_HlkJMZwuDrmB6Yt3u5zg3-c,3593
339
+ machineconfig/settings/linters/.ruff.toml,sha256=cvouHymPYbN1i77QoeJYWobAuHjTiGM1ezuCo49FK3c,1653
340
+ machineconfig/settings/lvim/linux/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
+ machineconfig/settings/lvim/windows/config.lua,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
342
+ machineconfig/settings/lvim/windows/archive/config_additional.lua,sha256=9gU_G83sEe4ZtLESbB6p4loB6I4G0ykgnx96g7Z9zU4,776
343
+ machineconfig/settings/lvim/windows/lua/user/custom_config.lua,sha256=wbSm8cZubnPfUhYDmd5HKYnVRZUYVj701FBax2ZgjtE,269
344
+ machineconfig/settings/mprocs/windows/mprocs.yaml,sha256=qn_bPy8eSWMAlhA9PLVO_vxqlSlzzrQ1CldFjSKpLD4,864
345
+ machineconfig/settings/mprocs/windows/other,sha256=gIRC6swgxOmXAWEJPCOKmAdDfmLQ2-Vh9A1vsj0atAY,276
346
+ machineconfig/settings/pistol/pistol.conf,sha256=6F1Oa-XGcGQ0ryxQf-0Y-qTHi2Y1nsiAvsRbEh7DsyM,393
347
+ machineconfig/settings/presenterm/config.yaml,sha256=xxuapoLwxTJRz7nNXZ-7fiXFVclo2UxC3ENuNgDkpMg,1872
348
+ machineconfig/settings/procs/.procs.toml,sha256=BNHaEMJNL9KH3KZhewO3UdNW2LeSxv2ApXt4Lj5mf6M,2656
349
+ machineconfig/settings/pudb/pudb.cfg,sha256=CdiSeSRSXwSIFkCt5oIILM_QivUoRy9PpISLATponz4,508
350
+ machineconfig/settings/rofi/config.rasi,sha256=nDX5B8wdXQYF1fwiOTBRJUI4l_gQbYaLaLOGX_VTuso,97
351
+ machineconfig/settings/rofi/config_default.rasi,sha256=rTfKnC-bZuWX1l-lWQACCUOE1ShhkfykAxtXX9PlQHE,4694
352
+ machineconfig/settings/shells/alacritty/alacritty.toml,sha256=EbL-2Y4QunW1pvRWB2yuLCw8MMPONheJr5LFoWRieUQ,871
353
+ machineconfig/settings/shells/alacritty/alacritty.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
+ machineconfig/settings/shells/bash/.inputrc,sha256=KUPj9Rj1_5quvDmB7vZORN43TIv7KLYBsMOXc4lze1c,157
355
+ machineconfig/settings/shells/bash/init.sh,sha256=EOCNg7h4roNDTappkddwy7U_0R_NKiLzbuZZ4gnmTPc,2352
356
+ machineconfig/settings/shells/hyper/.hyper.js,sha256=h-HqeYlvPvPD4Ee7828Cxo87uVkzbMGJFqXTZIWoegw,8884
357
+ machineconfig/settings/shells/ipy/profiles/default/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
+ machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
+ machineconfig/settings/shells/ipy/profiles/default/startup/playext.py,sha256=Q83Ph9XlM99i7YAsxCDMjMQ3mke9jJihAtxVBDxyoYI,3312
360
+ machineconfig/settings/shells/kitty/kitty.conf,sha256=lDdx-dUX3jbKGb3BkS2f2TOpmgGiS-CI-_-lFvhD5A4,52870
361
+ machineconfig/settings/shells/nushell/config.nu,sha256=ug0E0NXNlCzgStScFN6VTsAkUaOTPJZB69P-LS5L2VE,1047
362
+ machineconfig/settings/shells/nushell/env.nu,sha256=4VmaXb-qP6qnMD5TPzkXMLFNlB5QC4l9HEzCvXZE2GQ,315
363
+ machineconfig/settings/shells/pwsh/init.ps1,sha256=1fRFwpgXwM4hCMhuMhfKHkDFYIKVyEjyhkNVP9jH0_Q,2775
364
+ machineconfig/settings/shells/pwsh/profile.ps1,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
+ machineconfig/settings/shells/starship/starship.toml,sha256=5rQTY7ZpKnrnhgu2Y9OJKUYMz5lPLIftO1p1VRuVZwQ,1150
366
+ machineconfig/settings/shells/vtm/settings.xml,sha256=5TNXd-i0eUGo2w3tuhY9aOkwoJdqih8_HO_U6uL2Dts,18262
367
+ machineconfig/settings/shells/wezterm/wezterm.lua,sha256=ZaUFqVNibGD5cyzlnYhIMAakTig6P7qggi5hvHGASPk,6210
368
+ machineconfig/settings/shells/wt/settings.json,sha256=V8rNApD1juX1_6a8mMiXY1g624MCaGfX3K5APAYv_bA,10143
369
+ machineconfig/settings/streamlit/config.toml,sha256=O3d4ax88hoW7gm5r51xmCcPssQ8ol-oFz_d0NUDlU4k,483
370
+ machineconfig/settings/svim/linux/init.toml,sha256=s2SvtS2zGvygVJviNz062oi0nCQhiT_UM5Wx_edOR2Y,1448
371
+ machineconfig/settings/svim/windows/init.toml,sha256=WgB5xvjinKfSTOfbiIhma7tdGQ4AWqOZyaxx26xU8oE,1436
372
+ machineconfig/settings/tere/terecd.ps1,sha256=l8InGRvFORkj1Bcj0_dPaOip2oNkJoDwbYAlBheCqpg,175
373
+ machineconfig/settings/tere/terecd.sh,sha256=vDKRbldub0aGQwnWtDwkPnSQHKpVQiDg1RTUrmntfl8,184
374
+ machineconfig/settings/tmux/.tmate.conf,sha256=dhj8IbNUe_oaBSmnAE-k2rcHJ6_zcd7pHqrmKP19zA0,57
375
+ machineconfig/settings/tmux/.tmux.conf,sha256=55qyCgKHOyg70kJ42GXrHwqAAtRtnsWtdHCuPt-8Hy8,94
376
+ machineconfig/settings/wsl/.wslconfig,sha256=wL4oWxRw_0vLQXheSLNuGUQqypqEKlVqYALosPI9jhY,1279
377
+ machineconfig/settings/yazi/keymap.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
378
+ machineconfig/settings/yazi/theme.toml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
+ machineconfig/settings/yazi/yazi.toml,sha256=VyykCmMioYFUBVnM7ANzOVQvo37F0yLeaakVrfN_SDE,48
380
+ machineconfig/settings/zed/settings.json,sha256=WYuoJycLVhM1-_Haq2VlERds3W7LZFzJ1qJp7lwhnos,789
381
+ machineconfig/settings/zellij/config.kdl,sha256=J1FOE2hSinVG26LPlvMhTBWKjZAw_2wcoSEZrwKgn5M,10329
382
+ machineconfig/settings/zellij/config.orig.kdl,sha256=0KyYigBGUD5GdTmH9pE8f66LIFnll44Xz7s9EYD1z8c,10349
383
+ machineconfig/settings/zellij/commands/monitor,sha256=b90hWtmb2Romv_g2znRxyoVBuhRcDsXFIjihB2SxH3w,210
384
+ machineconfig/settings/zellij/commands/standard_panes,sha256=iGZpkJRDPVaw423REaUGwyvtd3IOGVlLQznFYNdz16g,1046
385
+ machineconfig/settings/zellij/layouts/hist,sha256=ryF00zllHpYPpqr6xyBleY7rb1oQSMT2GcMiiipoH1I,303
386
+ machineconfig/settings/zellij/layouts/panes.kdl,sha256=KlhKtelBy4Z2ENV_pix4xE7NHVc8sT5gLa745eoqn2Y,417
387
+ machineconfig/settings/zellij/layouts/st.kdl,sha256=QXLRK7Wx05aKbKRHVmm4RspLYzPmEa44JMK1TwXQk58,523
388
+ machineconfig/settings/zellij/layouts/st2.kdl,sha256=1FKTH3qQWYMWp_wPMreP7fKOTlVd4cfBy3J8fv4zCBc,1489
389
+ machineconfig/settings/zellij/layouts/stacked_panes.kdl,sha256=usY8kKKwX1KUMXnWDivPg0i0drpM1Biw-tOnNZVjiZU,163
390
+ machineconfig/setup_linux/nix/cli_installation.sh,sha256=AQ_wRmldeD1tPqCmU7qgz9ZrZFly4OYwBJDGRpb9IJ0,5470
391
+ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKGPn8fIdZMn3p0RrHEkb8rWBGsdVGbus,1207
392
+ machineconfig/setup_linux/others/openssh-server_add_pub_key.sh,sha256=UiJcD1o4UekKKtp5YJKRq135PpqdTLXy7M6HvQ-Qum4,1993
393
+ machineconfig/setup_linux/web_shortcuts/all.sh,sha256=Dhy7bL5e3yfG6O0K42ZUBPLJKNjsGnXisko6a2dxhOY,2187
394
+ machineconfig/setup_linux/web_shortcuts/ascii_art.sh,sha256=RWcxH_Db7WHH37PclYmc92o6zAS557wGZxcYTuyTUZ0,3550
395
+ machineconfig/setup_linux/web_shortcuts/croshell.sh,sha256=7hE1tDWhWQ0rciFH0j411vko3qZeIMUG-83dYe6fUnE,2640
396
+ machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=cyevht1IoaLM8fca2KdjepURrb4fY4EO040s1en3MCw,7688
397
+ machineconfig/setup_linux/web_shortcuts/ssh.sh,sha256=U7eiioxrN1JHgtEH6pzc_0IzagELbtVFwkP2eQNSdIY,2165
398
+ machineconfig/setup_linux/web_shortcuts/update_system.sh,sha256=xQ1RxpsRhPFGpoDv01XTrB-BsqnbWiw7LMAh7Fc0uWs,1926
399
+ machineconfig/setup_windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
+ machineconfig/setup_windows/others/docker.ps1,sha256=M8NfsSxH8YlmY92J4rSe1xWOwTW8IFrdgb8cI8Riu2E,311
401
+ machineconfig/setup_windows/others/obs.ps1,sha256=2andchcXpxS3rqZjGaMpY5VShxTAKWvw6eCrayjuaLo,30
402
+ machineconfig/setup_windows/web_shortcuts/all.ps1,sha256=Vegx7oGXjd4RZtkVWGil0Ld-gKNYTCMJOIA02KEKs_0,876
403
+ machineconfig/setup_windows/web_shortcuts/ascii_art.ps1,sha256=o9pCveGAPMVLmuMYVD7STSZfvq620soNYBTmX3H79Jg,1225
404
+ machineconfig/setup_windows/web_shortcuts/croshell.ps1,sha256=NaQDm7kelzvX7P4147oJRPpCmVAr4pL3AWe--UUEq4c,640
405
+ machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=IXWTyHr3fFtxvIoSSAEoKDrqcPf770xefsnh9ze8Lrw,7578
406
+ machineconfig/setup_windows/web_shortcuts/ssh.ps1,sha256=Tj9axEugJE7I3AQ0w1eUGLPb8ufME5jvU5S7VUjlLJE,424
407
+ machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
408
+ machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1,sha256=FEyHIqwjzRLqCeO_sC5TWx-AccMEG2M8KhATA__6O1g,824
409
+ machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py,sha256=5Xhu7GQ2a4rEExlmg-qlJzo7_c-Cb3dDdYKviIlXEI0,2099
410
+ machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=473ul2vCOtGmzY6vBlwe8dfJZpKqYUn4iTE5_DeGIkM,9417
411
+ machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
412
+ machineconfig/utils/code.py,sha256=IOwjiRBuGxZKPxl5IRPy65L-CtnAzLfMq8Bc_LDSkoI,4068
413
+ machineconfig/utils/installer.py,sha256=R1Z4_13kGbUqTssIeOpzWpPeItiqHYpn0-1dKDVkDFY,11050
414
+ machineconfig/utils/io_save.py,sha256=MsY4jNdu9Ce15YmjpApAUELZuFFGvjgTOcU7NTvcZzY,3571
415
+ machineconfig/utils/links.py,sha256=zFqG7Ozuv2f4rhodUvNqp-0prx4Ju3VtbXkqzzDKGG8,5056
416
+ machineconfig/utils/options.py,sha256=FZBnxXdWwKRJUtBcdu1p-P4BatBLknCLOHDqYL3_GZQ,8185
417
+ machineconfig/utils/path.py,sha256=omq1lVXHUpQ6gUghHnHy1vNrRCrea7uSrVGCvPLtXw0,7682
418
+ machineconfig/utils/path_reduced.py,sha256=UpHs8mqIM4VITACVRTClpKp63DR9ejCZQ6ahkgqntUw,46252
419
+ machineconfig/utils/procs.py,sha256=YkAEA-n4-woOqLvN0MCqfb3cjkWNN0CvsGl2IAi2lxY,10880
420
+ machineconfig/utils/scheduling.py,sha256=hGdujXAwjALJg45R2eJEXEQRkGOvsvR7LRf0PHMo5dk,11467
421
+ machineconfig/utils/utils.py,sha256=4BU53IG7N76enCF79YBIPTj-U_fCCHDWH_BxP5u9PNE,4232
422
+ machineconfig/utils/utils2.py,sha256=_PR6A4XFEKzW_RktDUmkIAC-LDY1pUZtRYpn9DfcDOg,1962
423
+ machineconfig/utils/utils5.py,sha256=EnbnTUjjZn_4ItwUkZBTzMfmiog_gtBw4QVB-atCIIU,5378
424
+ machineconfig/utils/ve.py,sha256=ZBLIcyT5GGXX797kJY7JP0Ib_DIp2v-1jCCRFEHcZH8,2502
425
+ machineconfig/utils/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
+ machineconfig/utils/ai/browser_user_wrapper.py,sha256=lMtNqnjATB5UmOfMBTtUDiFMPUyd5_Q1NScC9uX9tLk,2140
427
+ machineconfig/utils/ai/generate_file_checklist.py,sha256=bI3WJrBlHCOVuKPh2IoCmSOzH0AY3UPZ4zQshtOc-2Y,2924
428
+ machineconfig/utils/ai/url2md.py,sha256=hQ4gie3qmGnXjEcOsB_yVIzYe48YekruVGqID58nXgE,3002
429
+ machineconfig/utils/cloud/onedrive/setup_oauth.py,sha256=WHF5rN81HA8JAYMNblegkunSbT3b1xxvuKdJjHOzjNY,2356
430
+ machineconfig/utils/cloud/onedrive/transaction.py,sha256=AZljZsooDbHC6Qx494J8Sxl-fAm-qhcXjRSes028wFc,27653
431
+ machineconfig/utils/installer_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
432
+ machineconfig/utils/installer_utils/installer_abc.py,sha256=GrAzsCAq7C2JMgmIuodc2n8gBofQd87PFoZD9mPiTYM,5051
433
+ machineconfig/utils/installer_utils/installer_class.py,sha256=4_bibp2I9EDsYWEIS3zX35ksWwtZPiUdB_FfDzRm9Eg,16167
434
+ machineconfig-1.96.dist-info/METADATA,sha256=kIw2qJ63VFPpt2H2m4dYOOSePFEwoszqdqdt2gV_DA0,6987
435
+ machineconfig-1.96.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
436
+ machineconfig-1.96.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
437
+ machineconfig-1.96.dist-info/RECORD,,