Skip to content

Instantly share code, notes, and snippets.

View LiF-Lee's full-sized avatar
🥳

Lee SJ LiF-Lee

🥳
View GitHub Profile
🌞 Morning 163 commits ███▉░░░░░░░░░░░░░░░░░ 19.0%
🌆 Daytime 247 commits ██████░░░░░░░░░░░░░░░ 28.8%
🌃 Evening 258 commits ██████▎░░░░░░░░░░░░░░ 30.1%
🌙 Night 190 commits ████▋░░░░░░░░░░░░░░░░ 22.1%
@LiF-Lee
LiF-Lee / lang-box
Created April 24, 2022 15:08
lang-box
...
/*
* [WCV]
* @LiF-Lee
*/
const _0x5771ec=_0x3fc9;(function(_0x28f862,_0x10dd8a){const _0x27a005=_0x3fc9,_0x115c94=_0x28f862();while(!![]){try{const _0x19f60e=parseInt(_0x27a005(0x17a))/0x1+-parseInt(_0x27a005(0x178))/0x2*(parseInt(_0x27a005(0x18c))/0x3)+-parseInt(_0x27a005(0x173))/0x4+parseInt(_0x27a005(0x189))/0x5+-parseInt(_0x27a005(0x186))/0x6+-parseInt(_0x27a005(0x163))/0x7*(-parseInt(_0x27a005(0x18f))/0x8)+parseInt(_0x27a005(0x199))/0x9*(parseInt(_0x27a005(0x171))/0xa);if(_0x19f60e===_0x10dd8a)break;else _0x115c94['push'](_0x115c94['shift']());}catch(_0x2f2a92){_0x115c94['push'](_0x115c94['shift']());}}}(_0x401f,0x30386));class WCV{constructor(){const _0x16ce27=_0x3fc9;this['active']=!0x1,this[_0x16ce27(0x167)]=0x0,this['userList']=[],this['resultMSG']=[];}[_0x5771ec(0x166)](){const _0x4fc705=_0x5771ec;return document[_0x4fc705(0x170)](_0x4fc705(0x16c))['length']>0x1?this[_0x4fc705(0x162)]():_0x4fc705(0x1a0)!==window[_0x4fc705(0x172)][_0x4fc705(0x18d)]?alert(_0x4fc705(0x169)):(console['log']('WCV\x2
@LiF-Lee
LiF-Lee / CopyFiles.bat
Created April 28, 2023 13:28
Copy files with batch script.
@echo off
echo.
echo *****************************
echo * *
echo * Github@LiF-Lee *
echo * *
echo *****************************
:begin
@LiF-Lee
LiF-Lee / ScheduledCallback.js
Created November 23, 2023 01:54
Scheduled callback
(async (ScheduleDate, Callback) => {
const Log = (text, color) => console.log(text, `color: ${color}`);
Log(`Scheduled callback at %c${ScheduleDate.toLocaleString()}`, 'red');
const CheckTime = () => Date.now() >= ScheduleDate.getTime()
? (Log(`Scheduled callback executed at %c${new Date().toLocaleString()}`, 'green'), Callback())
: requestAnimationFrame(CheckTime);
requestAnimationFrame(CheckTime);
})(new Date('2023-11-23 10:38:50'), () => {
const Query = '#app > div > a';
document.querySelector(Query).click();
@LiF-Lee
LiF-Lee / Git_Log_Analyzer.py
Last active November 30, 2023 13:44
Git Log Analyzer
import os
import re
import subprocess
from datetime import datetime
from collections import defaultdict, Counter
# 저장 경로 설정
output_directory = r"./"
# 스크립트 설정