Skip to content

Instantly share code, notes, and snippets.

View xingjian-zhang's full-sized avatar
💫
开放 独立 自由 人文

Xingjian (Jimmy) Zhang xingjian-zhang

💫
开放 独立 自由 人文
View GitHub Profile
@xingjian-zhang
xingjian-zhang / settings.json
Created January 14, 2026 17:24
Claude Code settings
{
"permissions": {
"allow": [
"Bash(source:*)",
"Bash(git:*)",
"Bash(npm:*)",
"Bash(npx:*)",
"Bash(yarn:*)",
"Bash(pnpm:*)",
"Bash(bun:*)",
@xingjian-zhang
xingjian-zhang / ssh_gl_no_password.md
Last active November 15, 2023 20:09
Setting up ControlMaster for GreatLakes

This gist shows how to get rid of authentication when connecting to Greatlakes by ssh.

Set up ~/.ssh/config

Add the following to ~/.ssh/config

Host greatlakes
  HostName greatlakes.arc-ts.umich.edu
  User jimmyzxj
  ControlMaster auto
  ControlPath ~/.ssh/%r@%h:%p