Skip to content

Instantly share code, notes, and snippets.

View ssut's full-sized avatar
Vibing

Suhun Han ssut

Vibing
View GitHub Profile
@ssut
ssut / download.js
Last active June 17, 2020 02:14
download vscode extensions from settings sync's cloudSettings file
const fs = require('fs');
const { promisify } = require('util');
const child = require('child_process');
const statAsync = promisify(fs.stat);
const unlinkAsync = promisify(fs.unlink);
const UA = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36';
async function main() {
// ==UserScript==
// @name NoReferrer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http*://*/*
// @grant GM_xmlhttpRequest
// @connect coupa.ng
// @connect a.aliexpress.com
@ssut
ssut / list.txt
Last active December 11, 2021 05:28
uBlock rules
[Adblock Plus 2.0]
! Title: ssut
! Version: 20211211
! https://www.clien.net
www.clien.net##.main_top_ad
www.clien.net##.main_center_ad
www.clien.net##.list_top_ad
www.clien.net###hongboInfoList
www.clien.net##.list_bottom_ad

두바이쫀득쿠키 트렌드 분석 리포트

분석 기간: 2025년 10월 1일 ~ 2026년 1월 6일
데이터 소스: [redacted] 분석 일자: 2026년 1월 7일
총 분석 포스트: 3,646,244건 중 4,478건 관련


1. Executive Summary

@ssut
ssut / ccswitch
Last active February 25, 2026 08:24
Claude Code Account Switcher | `wget -O ~/.local/bin/ccswitch https://gist.githubusercontent.com/ssut/7c1c3f6c64ae3da21720be69ff0ff187/raw/79b0ea28555ed5de5fad707ad53a85fe327ab999/ccswitch && chmod +x ~/.local/bin/ccswitch`
#!/usr/bin/env bash
# Multi-Account Switcher for Claude Code
# Simple tool to manage and switch between multiple Claude Code accounts
set -euo pipefail
# Configuration
readonly BACKUP_DIR="$HOME/.claude-switch-backup"
readonly SEQUENCE_FILE="$BACKUP_DIR/sequence.json"