~/.ssh/config
If the file does not exist, create it manually
Host account_a.gitlab.com
Hostname gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/account_a_priv_key
| /** | |
| * Parse CSS loop verison | |
| * | |
| * recursive version https://gist.github.com/noih/9eae4b2fab4676a7b79b46c2200dece2 | |
| * | |
| * @link https://playcode.io/1794542 | |
| * @author noih.dev | |
| */ | |
| type Style = Record<string, string> |
| /** | |
| * Parse CSS recursive version | |
| * | |
| * loop version https://gist.github.com/noih/e77bb88f2d08ac6b0df67217b4d22d95 | |
| * | |
| * @link https://playcode.io/1765882 | |
| * @author noih.dev | |
| */ | |
| type Style = Record<string, string> |
| const str = ` | |
| #Char Unicode Big5 | |
| § 00A7 A1B1 | |
| ¯ 00AF A1C2 | |
| ° 00B0 A258 | |
| ± 00B1 A1D3 | |
| · 00B7 A150 | |
| × 00D7 A1D1 | |
| ÷ 00F7 A1D2 | |
| ˇ 02C7 A3BE |
| /** | |
| * PixiJS v7 - Prevent text flickering after scaling and achieve smoother rendering using batch updates. | |
| * | |
| * @version 2 | |
| * @author noih.dev | |
| * @since 2023-08-21 | |
| * @link https://codesandbox.io/s/batch-update-text-7qxktt?file=/src/index.mjs:0-3081 | |
| */ | |
| import * as PIXI from 'pixi.js' | |
| import { Viewport } from 'pixi-viewport' |
| /** | |
| * PixiJS v7 - Prevent text flickering caused by scaling | |
| * | |
| * @version 1 | |
| * @author noih.dev | |
| * @since 2023-08-21 | |
| * @link https://gist.github.com/noih/21a58792cbc3477fa751c47a92aa59b7 | |
| * @link https://codesandbox.io/s/render-text-rpvksn?file=/src/index.mjs:0-2349 | |
| */ | |
| import * as PIXI from 'pixi.js' |
| #!/bin/bash | |
| # debug | |
| #ssh -Tvvv git@gitlab.com | |
| # clear | |
| PS3="clear all ?" | |
| select num in "clear" "no" | |
| do | |
| if [ "${num}" == "clear" ]; then |
| global foodHotKey := "1" ; 1 ~ 5, eat food or skill | |
| #NoEnv | |
| #SingleInstance, Force | |
| SendMode, Input | |
| SetBatchLines, -1 | |
| SetWorkingDir, %A_ScriptDir% | |
| ^r::Reload | |
| Delete::ExitApp |
| #SingleInstance, Force | |
| #NoEnv | |
| SetBatchLines -1 | |
| ListLines Off | |
| SendMode Input | |
| SetDefaultMouseSpeed, 2 | |
| SetWorkingDir, %A_ScriptDir% | |
| Delete::ExitApp |
| #SingleInstance, Force | |
| SendMode Input | |
| SetWorkingDir, %A_ScriptDir% | |
| F12:: | |
| CaptureScreen(0, 0, A_Desktop . "\" . A_Now ".bmp", 100) | |
| return | |
| /* CaptureScreen(aRect, bCursor, sFileTo, nQuality) | |
| 1) If the optional parameter bCursor is True, captures the cursor too. |