Delta VX-600VA Driver settings
driver = blazer_usb
subdriver = cypress
protocol = mustek
vendorid = 0665
productid = 5161
port = auto
| // ==UserScript== | |
| // @name Ppomppu Convert Links | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description ppomppu.co.kr에서 리다이렉트 링크를 직접 링크로 변환 | |
| // @author Azyu | |
| // @match https://www.ppomppu.co.kr/* | |
| // @match http://www.ppomppu.co.kr/* | |
| // @grant none | |
| // @run-at document-idle |
| { | |
| "mcpServers": { | |
| "server-sequential-thinking": { | |
| "command": "wsl", | |
| "args": [ | |
| "bash", | |
| "-c", | |
| "'source /home/user/.nvm/nvm.sh && /home/user/.nvm/versions/node/v22.11.0/bin/npx -y @smithery/cli@latest run @smithery-ai/server-sequential-thinking --key xxxx'" | |
| ] | |
| }, |
Delta VX-600VA Driver settings
driver = blazer_usb
subdriver = cypress
protocol = mustek
vendorid = 0665
productid = 5161
port = auto
| // ==UserScript== | |
| // @name Bluesky Keyboard Shortcut | |
| // @namespace https://bsky.app/profile/azyu.bsky.social | |
| // @version 0.13 | |
| // @description Bluesky Keyboard Shortcut | |
| // @author Azyu (azyu.bsky.social) | |
| // @match https://bsky.app/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=bsky.app | |
| // @grant none | |
| // @updateURL https://gist.github.com/azyu/e72d6a4ff0da23876ab95a5be7d18490/raw/43fe4e703be2c7253973244e1996399f52ff7282/bsky_keyboard_shortcut.user.js |
| call plug#begin('~/.config/nvim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'preservim/nerdtree' | |
| Plug 'nvim-treesitter/nvim-treesitter' | |
| Plug 'kyazdani42/nvim-web-devicons' | |
| Plug 'romgrk/barbar.nvim' | |
| Plug 'Mofiqul/vscode.nvim' |
| openssl dgst -sha256 -sign private.pem -out text.txt.rsa text.txt | |
| openssl dgst -sha256 -verify public.pem -signature text.txt.rsa text.txt | |
| cat text.txt.rsa | base64 |
| --- | |
| repo_update: true | |
| repo_upgrade: true | |
| timezone: Asia/Seoul | |
| locale: ko_KR.utf8 | |
| packages: | |
| - zsh | |
| - unzip |
| @echo off | |
| multipass launch -c 1 -m 4G -d 8G -n k3s-master 20.04 --cloud-init cloud-init.yaml | |
| multipass exec k3s-master eval "curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE=644 sh -s -" | |
| multipass launch -c 1 -m 2G -d 8G -n k3s-node-01 20.04 --cloud-init cloud-init.yaml | |
| multipass launch -c 1 -m 2G -d 8G -n k3s-node-02 20.04 --cloud-init cloud-init.yaml | |
| REM IPV4 | |
| multipass info k3s-master | for /f ="tokens=2" %a in ('findstr "IPv4"') do @echo %a > k3s_url.txt |