분석 기간: 2025년 10월 1일 ~ 2026년 1월 6일
데이터 소스: [redacted] 분석 일자: 2026년 1월 7일
총 분석 포스트: 3,646,244건 중 4,478건 관련
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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" |
OlderNewer