- Change folder for screenshot.
defaults write com.apple.screencapture location ~/screens/
killall SystemUIServer
- Copy
ss2cb.plist
to~/Library/LaunchAgents/
. - Copy
ss2cb.py
to~/
. - Test with
Cmd + Shift + 4
& Paste it! - Done!
// ==UserScript== | |
// @name Auth Autofill Capcha | |
// @version 2024-03-10-2 | |
// @description Auth Autofill Capcha | |
// @author Leo7654 | |
// @updateURL https://gist.github.com/Leo7654/fd499e57a052ff5f0a90ab07b0816b85/raw/fa68198eed37b3545daa343da3669faf6292a8bd/AuthAutofillCapcha.user.js | |
// @match https://nice.checkplus.co.kr/cert/mobileCert/certification | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=checkplus.co.kr | |
// @grant none | |
// @require https://cdn.jsdelivr.net/npm/tesseract.js@5/dist/tesseract.min.js |
const { rxObserver, palette } = require('api/v0.3'); | |
const { iif,pipe,of,merge, timer, from, once } = require('rxjs'); | |
const { switchMapTo,mapTo,filter,windowWhen,delay,mergeMap,map,switchMap, concatMap, take, zip, ignoreElements, startWith } = require('rxjs/operators'); | |
// stream for coloring | |
const palette$ = from(palette); | |
const callStt = pipe( | |
filter(i=>i%3==2), | |
map(i=> Marble(i+">", i.color)), |
- Select | |
v | |
- Copy | |
:'<,'>:w !pbcopy |
defaults write com.apple.screencapture location ~/screens/
killall SystemUIServer
ss2cb.plist
to ~/Library/LaunchAgents/
.ss2cb.py
to ~/
.Cmd + Shift + 4
& Paste it!// ==UserScript== | |
// @name 본인인증 헬퍼 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://nice.checkplus.co.kr/CheckPlusSafeModel/checkplus.cb* | |
// @grant none | |
// ==/UserScript== |
struct Zip3Generator<A: IteratorProtocol, B: IteratorProtocol, C: IteratorProtocol>: IteratorProtocol { | |
private var first: A | |
private var second: B | |
private var third: C | |
private var index = 0 | |
init(_ first: A, _ second: B, _ third: C) { | |
self.first = first |
// Shifting Window | |
// Finding Maximum elements within 1 hour window. | |
var inputs = [1, 2, 3, 4, 5, 6, 7, 3599, 3600, 3601, 3602, 3603]; | |
var max = 0; | |
var _window = []; | |
for(var t of inputs) { | |
_window.push(t); | |
var val = 0; | |
for(var tt of likeWindow) { |