Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
# 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]
@pimentelmugica
pimentelmugica / README.md
Last active January 20, 2026 10:13
Python 3.12 Migration Tracker Reports

Python 3.12 Migration Tracker

@ipabz
ipabz / attribution.js
Created January 20, 2026 10:10
Captures first-touch attribution IDs from URL params, stores them safely in localStorage, and injects them into Alia popup events for consistent downstream tracking.
(function () {
/**
* =================================
* CONFIG
* =================================
*/
var STORAGE_PREFIX = "first_";
var ATTRIBUTION_KEYS = ["gclid", "gbraid", "wbraid", "fbclid"];
var DEBUG = false; // set true temporarily during testing
@peterhartree
peterhartree / claude_launcher.py
Created January 20, 2026 10:09
Claude Code project switcher - launch Claude in any project with single keypress
#!/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.
"""
@ekbhast
ekbhast / Π”Π—: ΠšΠ°Π΄Ρ€ΠΎΠ²Ρ‹ΠΉ ΡƒΡ‡Π΅Ρ‚
Last active January 20, 2026 10:12
Π”Π—: ΠšΠ°Π΄Ρ€ΠΎΠ²Ρ‹ΠΉ ΡƒΡ‡Π΅Ρ‚
using System;
namespace Personnel_accounting
{
internal class Program
{
static void Main(string[] args)
{
string[] employees =
{
@devproblemssolutions
devproblemssolutions / mindful-terminal-developers.txt
Created January 20, 2026 10:08
Mindful Terminal for Developers
# -----------------------------------------------------------------------------
# 🌿 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)
@imtrinity94
imtrinity94 / enable-multi-writer-flag-vsphere-vm.ps1
Last active January 20, 2026 10:09
Setting Multi Writer Flag for Oracle RAC on vSphere without any downtime - PowerShell script
## 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]")
@choco-bot
choco-bot / Install.txt
Created January 20, 2026 10:07
hybrid v2024.03.18.1 - Failed - Package Tests Results
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
#!/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
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"