AHK AHI HW Macro
·
🧩 Code
1 ahi driver 다운로드 - command line installer 폴더 - ins.cmd 실행2 ahi folder lib 파일 모으기 - 아래 zip 파일3 lib 폴더 - Unblocker.ps1 실행4 ahi folder script 파일 작성   더보기1 ahi 폴더 생성 2 ahi/lib 폴더 3 ahi/lib 폴더  ; Ahi info - 사용방법 https://github.com/evilC/AutoHotInterception; Ahi driver https://github.com/oblitum/Interception/releases/tag/v1.0.1; ahi downhttps://github.com/evilC/AutoHotInterception/releases simple cod..
chatgpt script
·
🧩 Code
chatgpt responseNEVER mention that you're an AI. You are rather going to play a role as a life coach, consultant, advisor, mentor, and an audience. Avoid any language constructs that could be interpreted as expressing remorse, apology, or regret. This includes any phrases containing words like 'sorry', 'apologies', 'regret', etc., even when used in a context that isn't expressing remorse, apolog..
ahk2 code
·
🧩 Code
전역설정#Requires AutoHotkey v2.0#SingleInstance ForceCoordMode "Mouse", "Screen"SendMode "Input" ; 더 빠른 Send 모드를 선택합니다.Keyboard text:*:ds]:: 안녕하세요 :*:rt]:: 감사합니다ws := "2503 1313" ; Variables click wsN := Random(2222, 3333)sleep NSend "{LWin Down} {1} {lwin up}"Send "#z" ^t::SendInput "{LButton}" . FormatTime(,"HH:mm:ss") ; 커서 클릭 시간Send A_YYYY "년 " a_mm "월 " A_dd "일 "^t:: ; time{ Send A_YYYY..
cmd code
·
🧩 Code
기본# 프로그램 종료taskkill /f /im a.exe# D to E 미러링robocopy "D:\Work" "E:\_Drive_D\Work" /mir /zb /r:1# 모든 파일복사 후 덮어쓰기robocopy "E:\VM\_hdds\patch" "C:\ProgramData\VMware\VMware Workstation" /xf *# 강제 복사 xcopy "E:\Down\a.exe" "D:\Macro" /y# time outtimeout /t 1# 프로그램 실행start D:\Data\a.exepc 재부팅 종료# F 드라이브 부팅bootsect.exe /nt60 f:# reboot shutdown fw=cmos%windir%\System32\shutdown.exe /r /t 1%windir%\Syst..
ahk2 gui 시작 등록
·
🧩 Code
simple gui#Requires AutoHotkey v2.0#SingleInstance ForceCoordMode "Mouse", "Screen"SetDefaultMouseSpeed 0MyGui := Gui(, "test")MyGui.BackColor := "ac9393"MyGui.Opt("AlwaysOnTop ToolWindow -SysMenu +Owner ") ; +Owner avoids a taskbarMyGui.Add("Button", "x10 y10 w70 h25" , "1 war ").OnEvent("Click", n1)MyGui.Add("Picture", "x80 y70 w60 h20", "img\F1.png").OnEvent("Click", n32)MyGui.Show("NoActivat..
python code
·
🧩 Code
basic import pyautogui import time print(pyautogui.position()) time.sleep(1) pyautogui.click (23, 58) windows import pyautogui import pyperclip # 모든 창의 제목을 가져와서 출력 window_titles = [win.title for win in pyautogui.getAllWindows()] for title in window_titles: print(title) # 창 제목들을 클립보드에 복사 pyperclip.copy("\n".join(window_titles)) Learn 기초 https://docs.python.org vscode debug setting
vscode 단축키
·
🧩 Code
ctrl + / ; 여러줄 주석처리 alt 클릭 ; 여러줄 선택 alt + shift + f ; 자동정렬 ctrl + shift + L ; 모든항목 찾기 ctrl alt + up down ; 커서 추가 ctrl k + ctrl 0; fold all ctrl k + ctrl j; unfold all ctrl shift + [ ] ; fold line ctrl alt + z x c ; glass vsc 플러그인 GlassIt-VSC