Skip to content

Instantly share code, notes, and snippets.

@zoltan-magyar
zoltan-magyar / xcode-claude-code-third-party.md
Last active February 8, 2026 05:48
Xcode Claude Code integration with third-party APIs

Setting Up Xcode Claude Code with Third-Party API Endpoints

This guide explains how to configure Xcode's built-in Claude Code integration to work with third-party API endpoints instead of the official Anthropic API.

Step 1: Bypass the Authentication UI

Xcode normally requires signing in through the UI with an Anthropic account or API key and doesn't offer any bypass. Even if the Xcode internal claude can use your third-party endpoint Xcode won't send any query because YoU ARe NOt LOgGeD IN. To bypass this when using a third-party endpoint, set a placeholder API key override, which you cannot do through the UI:

defaults write com.apple.dt.Xcode IDEChatClaudeAgentAPIKeyOverride ' '
@JohnnyVicious
JohnnyVicious / gist:b324ff20a38d5e59d99dd586ae3e97f5
Created November 2, 2025 19:22
Install PowerShell on Bazzite (ostree OS)
# Pick the version you want (match the one you tried if you like)
VER=7.5.4
ARCH=x64 # use 'arm64' on Apple/ARM boxes
# Create a versioned install dir under /usr/local
sudo mkdir -p /usr/local/microsoft/powershell/$VER
cd /usr/local/microsoft/powershell/$VER
# Download the universal tarball from the official releases
sudo curl -L -O https://github.com/PowerShell/PowerShell/releases/download/v$VER/powershell-$VER-linux-$ARCH.tar.gz
@Mr-Precise
Mr-Precise / vs_buildtools_dl_list.md
Created February 28, 2024 05:33
MSVC / VS / Buildtools download link collection list
@digitalknk
digitalknk / openclaw-guide.md
Last active February 8, 2026 05:37
Running OpenClaw Without Burning Money, Quotas, or Your Sanity

Running OpenClaw Without Burning Money, Quotas, or Your Sanity

TL;DR

OpenClaw is useful, but most of the pain people run into comes from letting one model do everything, chasing hype, or running expensive models in places that don't need them.

What worked for me was treating OpenClaw like infrastructure instead of a chatbot. Keep a cheap model as the coordinator, use agents for real work, be explicit about routing, and make memory and task state visible. Cheap models handle background work fine. Strong models are powerful when you call them intentionally instead of leaving them as defaults.

You don't need expensive hardware, and you don't need to host giant local models to get value out of this. Start small, get things stable before letting it run all the time, and avoid the hype train. If something feels broken, check the official docs and issues first. OpenClaw changes fast, and sometimes it really is just a bug.

@donejeh
donejeh / bankcode.txt
Last active February 8, 2026 05:35
Nigeria Banks Code List
'120001' '9mobile 9Payment Service Bank'
'801' 'Abbey Mortgage Bank'
'51204' 'Above Only MFB'
'51312' 'Abulesoro MFB'
'044' 'Access Bank'
'063' 'Access Bank (Diamond)'
'120004' 'Airtel Smartcash PSB'
'035A' 'ALAT by WEMA'
'50926' 'Amju Unique MFB'
'50083' 'Aramoko MFB'
@ayebrian
ayebrian / vmware.md
Last active February 8, 2026 05:29
VMware ESXi / Workstation / ISO Downloads

Download VMware ISOs in this repo

Also I would happy if you visit my site with tech tips!: https://hausmer.com

All license keys and activation files have been removed in accordance with GitHub's Terms of Service.

Only official trial installers are available. Bring your own license (BYOL).

@arianvp
arianvp / SSH_MACOS_SECURE_ENCLAVES.md
Last active February 8, 2026 05:29
Native Secure Enclaved backed ssh keys on MacOS

Native Secure Enclave backed ssh keys on MacOS

It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive

There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!

@digitalknk
digitalknk / config-example-guide.md
Last active February 8, 2026 05:21
OpenClaw Config Example (Sanitized)

OpenClaw Config Example - Usage Guide

This sanitized config shows the key settings referenced in the OpenClaw guide.

Quick Start

  1. Copy config-example.json to ~/.openclaw/openclaw.json
  2. Replace all YOUR_* placeholders with real values
  3. Run openclaw doctor --fix to validate
  4. Run openclaw security audit --deep to check for issues
@jj1st
jj1st / uninstall_openclaw_mac.md
Created February 6, 2026 04:12 — forked from bewithdhanu/uninstall_openclaw_mac.md
🧹 OpenClaw Complete Uninstall Guide (All Platforms)

🧹 OpenClaw Complete Uninstall Guide (All Platforms)

This guide covers all supported ways to fully remove OpenClaw, including cases where the CLI is missing but background services are still running.


🟢 Path 1: Easy Path (CLI Still Installed)

Use this if the openclaw command still works.