Skip to content

Instantly share code, notes, and snippets.

@OmerFarukOruc
OmerFarukOruc / opencode-kimi-setup.md
Last active February 4, 2026 21:33
OpenCode + Kimi For Coding (K2.5) Setup

OpenCode + Kimi For Coding (K2.5) Setup

1. Add credentials

opencode auth login
# Select "Kimi For Coding"
# Enter your API key (sk-kimi-...)
@productdevbook
productdevbook / drizzle-orm.md
Last active February 4, 2026 21:31
Drizzle ORM PostgreSQL Best Practices Guide (2025)

Drizzle ORM PostgreSQL Best Practices Guide (2025)

Latest Drizzle ORM features and optimal schema patterns

Major 2025 Update: PostgreSQL now recommends identity columns over serial types. Drizzle has fully embraced this change.

import { pgTable, integer, text, timestamp, varchar } from 'drizzle-orm/pg-core';
@vuddameri
vuddameri / thomas-algorithm.ipynb
Created November 6, 2021 07:37
Thomas Algorithm.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Suleman-Elahi
Suleman-Elahi / openbox_conf.sh
Last active February 4, 2026 21:28
Install and configure Openbox on newly installed Arch Linux base.
#!/bin/bash
# Install Openbox
pacman -S openbox obconf nitrogen lxappearance --noconfirm
# Install panel and dock, file manager, and terminal
pacman -S tint2 plank pcmanfm xfce4-terminal gedit git --noconfirm
# Install X SERVER
pacman -S --needed xorg-server xorg-xinit --noconfirm
@brannn
brannn / inner-ai-for-devs.md
Created February 4, 2026 21:22
Runcell: AI Coding Assistants in Isolated Workspaces - IDE User Experience

Runcell: AI Coding Assistants in Isolated Workspaces

What Problem Does This Solve?

You want to use AI coding assistants to help write code, but:

  • You don't want AI touching your local machine or production systems
  • You need different AI providers for different tasks (fast inference vs high quality)
  • You want AI to work in clean, reproducible environments
  • Setting up AI tools manually is tedious and error-prone
@NorkzYT
NorkzYT / README.md
Last active February 4, 2026 21:23
Proxmox CIFS Share Mount Wizard Script

Proxmox LXC ⇆ CIFS Mount Wizard

proxmox-lxc-cifs-share.sh is an interactive helper that mounts a network CIFS/SMB share on a Proxmox VE node and bind-mounts it into one or more unprivileged LXC containers in one pass.
It automates:

  1. Creating a host-side mountpoint under /mnt/lxc_shares/<folder>.
  2. Writing a properly-tuned /etc/fstab entry (systemd.automount, uid/gid mapping, etc.).
  3. Mounting the share immediately.
  4. Injecting the bind-mount (mpX:) into the live LXC configuration with pct set.
  5. Stopping and restarting each container to apply the mount.
@kieranklaassen
kieranklaassen / SKILL.md
Last active February 4, 2026 21:21
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.


@lazuee
lazuee / ngrok-rdp.yml
Created August 7, 2024 07:56
Windows 10 Free RDP - Ngrok
#.github/workflows/main.yml
name: Windows - Ngrok
on: workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env: