Skip to content

Instantly share code, notes, and snippets.

@wenboown
wenboown / azure-claude.md
Created February 5, 2026 02:03
Deployment Failure for Anthropic Claude on Azure AI Foundry

Issue: Deployment Failure for Anthropic Claude on Azure AI Foundry

The Problem

When attempting to deploy third-party models (specifically Anthropic Claude 3.5 Sonnet / 4.5) within the Microsoft AI Foundry web interface, the deployment fails with a validation error:

"Missing industry, organization name, and country code."

While the deployment pop-up allows users to select an "Industry," it provides no fields for "Organization Name" or "Country Code," leading to a deployment loop that cannot be completed.

@wenboown
wenboown / google meet auth.md
Created January 5, 2026 15:06
trouble shooting google workspace calendar invite got labelled as spam

answered by gemini 3

I have a google workspace account, but my google meet/calendar invite got labeled as spam and cannot reach receipents, what configuration do I need to do?

This issue is common for Google Workspace accounts that haven’t fully "authenticated" their domain with the latest security protocols. Because Google updated its spam policies significantly in late 2024 and 2025, unauthenticated invites are often automatically redirected to Junk or blocked entirely.

To fix this, you need to perform three technical DNS configurations and one specific Calendar setting.


@wenboown
wenboown / ollama.md
Last active January 5, 2026 21:56
Setup ollama on ubuntu

Use Local LLM with Cursor and Ollama/LM Studio (Ubuntu GPU Server)

This guide covers setting up local inference with a permanent, static ngrok tunnel and the "Model Aliasing" trick required to unlock Cursor Agent Mode.

Requirements

  • Cursor: Installed on your local machine.
  • Ubuntu GPU Server: With NVIDIA drivers and Docker/CORS configured.
  • ngrok: A free account with one Static Domain (e.g., yourdomain.ngrok-free.app).
  • Storage(optional): A mounted SSD (e.g., /mnt/models) for model storage.
@wenboown
wenboown / UTM-ubuntu.md
Created December 14, 2025 01:47
Setup Ubuntu 24.04 in UTM on macOS

Seamless Ubuntu 24.04 ARM64 VM on UTM with Shared Folder Fix

This guide provides a complete solution to set up an Ubuntu 24.04 ARM64 VM on Apple Silicon (M4/M3/M2/M1) that ensures the shared folder works reliably with full read/write permissions and path consistency.

Environment Details 📌

Component Version/Detail
Host OS macOS Sonoma (or newer)
Host Chip Apple M-series (M4, M3, M2, M1)
@wenboown
wenboown / Gmail Alias Setup.md
Last active January 9, 2026 17:42
Gmail Alias Setup: Reply as Custom Domain Email
@wenboown
wenboown / ubuntu_free_os_space.md
Created August 23, 2025 21:02
Ubuntu: Moving Large Directories from small OS SSD to HDD

Ubuntu: Moving Large Directories from small OS SSD to HDD

A comprehensive guide for migrating home directories, Docker data, and other large folders from a small SSD to a larger HDD on Ubuntu systems.

Common Scenario

  • Small SSD (50-200GB) for OS at 90%+ capacity
  • Large HDD (1TB+) mounted but underutilized
  • Need to move user data, Docker, caches to HDD while maintaining functionality

Prerequisites

@wenboown
wenboown / whisper-diarization-notes.md
Last active November 23, 2025 02:42
whisper-diarization
@wenboown
wenboown / gist:11a1f9b6038942bb653d6d9efec045b9
Created December 7, 2023 03:16
setting notes for MP10 printer
Manuel: https://downloads.monoprice.com/files/manuals/34437_Manual_181204.pdf
basic settings:
https://www.media2000.org/html/settings_cura_monoprice_mp10.php
advanced settings: https://docs.google.com/presentation/d/10Two5vMClDXDwZXuJUp7YF1bjKibKQVjw1eilUuuLaY/edit#slide=id.g4df96bbdb6_0_23
@wenboown
wenboown / rsub_setup.md
Created February 18, 2023 06:22
setup rsub
  1. install rsub in sublime package: https://github.com/henrikpersson/rsub

  2. use port forwarding with control. ~/.ssh/config:

Host *
 AddKeysToAgent yes
 UseKeychain yes
 IdentityFile ~/.ssh/id_rsa
 RemoteForward 52698 127.0.0.1:52698
@wenboown
wenboown / gist:02f06514f9d960126f5c7afded143d34
Created October 25, 2022 16:43
fix docker 4.13.0 daemon missing error: unix:///var/run/docker.sock
Thanks for the report! we're talking about this internally. We removed the /var/run symlink but dev environments was still using it. More discussion here: #6529
Another workaround is to manually create the symlink:
sudo ln -s "$HOME/.docker/run/docker.sock" /var/run/docker.sock
ref: https://github.com/docker/for-mac/issues/6531#issuecomment-1288237259