Discover gists
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Solve.mjs Log - 2026-01-20T10:00:29.014Z | |
| [2026-01-20T10:00:29.015Z] [INFO] π Log file: /home/hive/solve-2026-01-20T10-00-29-014Z.log | |
| [2026-01-20T10:00:29.016Z] [INFO] (All output will be logged here) | |
| [2026-01-20T10:00:29.506Z] [INFO] | |
| [2026-01-20T10:00:29.507Z] [INFO] π solve v1.4.0 | |
| [2026-01-20T10:00:29.507Z] [INFO] π§ Raw command executed: | |
| [2026-01-20T10:00:29.507Z] [INFO] /home/hive/.nvm/versions/node/v20.19.6/bin/node /home/hive/.bun/bin/solve https://github.com/link-assistant/hive-mind/issues/1146 --model opus --attach-logs --verbose --no-tool-check --auto-resume-on-limit-reset --tokens-budget-stats | |
| [2026-01-20T10:00:29.508Z] [INFO] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| /** | |
| * ================================= | |
| * CONFIG | |
| * ================================= | |
| */ | |
| var STORAGE_PREFIX = "first_"; | |
| var ATTRIBUTION_KEYS = ["gclid", "gbraid", "wbraid", "fbclid"]; | |
| var DEBUG = false; // set true temporarily during testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Unified Claude Code launcher with project selection and recent directory tracking. | |
| Displays: | |
| - Current directory with Enter to continue | |
| - Numbered list of projects from projects.yaml | |
| - Numbered list of recent directories (excluding project dirs) | |
| Returns selected directory path to stdout for shell integration. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace Personnel_accounting | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string[] employees = | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------------------------------- | |
| # πΏ Mindful Terminal | |
| # | |
| # Read more: https://www.devproblems.com/developer-mindfulness | |
| # | |
| # A simple shell script to trigger mindfulness prompts before long-running | |
| # developer commands (npm install, docker build, etc). | |
| # | |
| # HOW IT WORKS: | |
| # This script is SEQUENTIAL. It introduces a deliberate delay (default: 3s) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Disclaimer: | |
| ## - This is an generic script provided and can be customized as ## per your requirement. | |
| ## - This script is provided for educational purposes only , ## ## please use at your own risk | |
| ## Add-PSSnapin VMware.VimAutomation.Core | |
| ## connect-viserver 127.0.0.1 -User Administrator | |
| write-host "" | |
| $diskCount = 0 | |
| do { | |
| $diskCount = [int](read-host "How Many Shared Disks shall I create for you? [1-55]") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2026-01-20 10:07:04,188 1560 [DEBUG] - XmlConfiguration is now operational | |
| 2026-01-20 10:07:04,438 1560 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,455 1560 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,455 1560 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,455 1560 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,473 1560 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,473 1560 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,487 1560 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
| 2026-01-20 10:07:04,487 1560 [DEBUG] - Adding new typ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ------------------------------------------------------------------------- | |
| # Git LFS (Large File Storage) .gitattributes | |
| # ------------------------------------------------------------------------- | |
| # --- Images --- | |
| *.jpg filter=lfs diff=lfs merge=lfs -text | |
| *.jpeg filter=lfs diff=lfs merge=lfs -text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data_list = ['Python', 786, 3.14] | |
| print(data_list) # Output: ['Python', 786, 3.14] | |
| print(data_list[0]) # Output: Python | |
| data_list.append(100) # Adding an element to the list | |
| data_list[0] = "Java" # Changing the first element | |
| data_list[2] = "Jawa" |