Skip to content

Instantly share code, notes, and snippets.

@herve-ch
herve-ch / dgx-qwen-claude.md
Created April 17, 2026 19:53 — forked from YanSte/dgx-qwen-claude.md
DGX Spark + Qwen3.5 + Claude Code Setup

DGX Spark + Qwen3.5 + Claude Code Setup

Local AI coding assistant using Claude Code with a local model on NVIDIA DGX Spark.

This setup allows Claude Code to run without using the Anthropic cloud API by redirecting requests to a local vLLM inference server running Qwen3.5. oai_citation:0‡vLLM


Architecture

@herve-ch
herve-ch / k8s-alternative-mac
Created June 21, 2024 06:01 — forked from nbenns/k8s-alternative-mac
Install Podman and Kind on Mac to replace docker-desktop
brew install podman --head # you must use head due to issues with kind compatibility
# make sure docker desktop is deleted
sudo unlink /usr/local/bin/docker
sudo ln -s /usr/local/bin/podman /usr/local/bin/docker
podman machine init
podman machine start
podman machine ssh
@herve-ch
herve-ch / Git_Unity.md
Created June 3, 2023 07:15 — forked from RemiRigal/Git_Unity.md
Créer un dépôt Git pour un projet Unity

Créer un dépôt Git pour un projet Unity

Création d'un projet Unity

Créer un nouveau projet Unity et noter son emplacement.

Création du dépôt Git

@herve-ch
herve-ch / git_commands.md
Last active April 27, 2024 08:25
git commands

Fusionner/Réordonner des commits:

git rebase -i HEAD~N l'ordre affiché est inversé (plus vieux au plus récent)

Activer la modification insert avec "i"

  • Mettre squash à la place d'un pick fusionne le commit courant avec le précédent.
  • "dd" puis "p" permet de supprimer une ligne puis de coller au niveau du curseur. Utile pour réordonner.
  • Pour sauvegarder faire ":" puis "wq"
  • Pour quitter sans sauvegarder faire ":" puis "q!"
@herve-ch
herve-ch / Backup&RestoreRepo.md
Created November 19, 2022 04:55 — forked from xtream1101/Backup&RestoreRepo.md
Backup and restore a git repo using git bundle

Backup/archive a repo

  1. Clone the repo
git clone --mirror https://github.com/vuejs/vue
  1. cd into the cloned repo
  2. Create a bundle file in the parent directory
git bundle create ../vuejs_vue.bundle --all