Autohotkey library supports DllCall() and it can call dll with standard decl feature of c dll. However, typical c# library runs on IL and cannot be called from autohotkey. To support standard dll call, DllExport package is required in Visual Studio.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ko"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Kick Visualizer (Desktop Audio) v4 by ProjectEli</title> | |
| <style> | |
| body { margin: 0; background: #111; overflow: hidden; display: flex; justify-content: center; align-items: center; height: 100vh; color: #888; font-family: 'Segoe UI', sans-serif; } | |
| canvas { width: 100%; height: 100%; } | |
| #overlay { position: absolute; z-index: 10; cursor: pointer; text-align: center; color: #fff; background: rgba(0,0,0,0.7); padding: 20px; border-radius: 10px; } | |
| .grid-label { position: absolute; bottom: 5px; font-size: 10px; color: #666; pointer-events: none; border-left: 1px solid #333; padding-left: 3px; height: 10px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Origin Graph Fixer for Illustrator (Combined) | |
| // 1. 클리핑 마스크 자동 해제 | |
| // 2. 투명한 유령 박스 자동 삭제 | |
| // 3. 선 두께를 0.25pt 단위로 양자화 (Quantize Stroke) | |
| // 4. 글자 크기를 지정된 목록 중 가장 가까운 값으로 매핑 (Snap Font Size) | |
| /* | |
| ============================================================================ | |
| [스크립트 설치 및 단축키(액션) 설정 가이드] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| loop (i,1,5) { | |
| wcol(j+i-1)=wcol(i)/max(wcol(i)); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import psutil | |
| import csv | |
| import datetime, time, locale | |
| import os | |
| def getCurrentTimeForFileName(): | |
| """Gets the current time in YYYYMMDDhhmmss format.""" | |
| now = datetime.datetime.now() | |
| return now.strftime("%Y%m%d_%H%M%S") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2.0 | |
| ; what's modified in v2 ref: https://blog.naver.com/550sn/223304085896 | |
| ; #NoEnv ; performance enhancement but default in ahk v2 | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| ; SendMode Input ; Recommended for new scripts due to its superior speed and reliability but default in ahk v2 | |
| SetWorkingDir A_ScriptDir ; Ensures a consistent starting directory. A_ScriptDir is built-in variable in ahk v2 | |
| ^Numpad1:: Run "Notepad" | |
| ^Numpad2:: Run "mspaint" | |
| ^Numpad3:: Run "shell:appsfolder\Microsoft.Whiteboard_8wekyb3d8bbwe!Whiteboard" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const tableBody = document.getElementById('gsc_a_b'); | |
| const rows= tableBody.querySelectorAll('tr'); | |
| const rowdata = []; | |
| rows.forEach(row => { | |
| const cells = row.querySelectorAll('td'); | |
| const title = cells[0].querySelector('a').textContent; | |
| const authors = cells[0].querySelector('.gs_gray').textContent.trim(); | |
| const journal = cells[0].querySelectorAll('.gs_gray')[1].textContent.trim(); | |
| const citations = cells[1].querySelector('a').textContent; | |
| const year = cells[2].textContent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib.request, datetime, os | |
| # This code executes many http get requests in short time | |
| # So don't abuse it | |
| NumPages = 20 | |
| startTime = datetime.datetime.now() | |
| if startTime.hour < 11: | |
| dirName = (startTime - datetime.timedelta(days=1)).strftime('%Y%m%d') | |
| else: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 자동 재분 업데이트 ref: https://tales.nexon.com/News/DevNote/698?pageSize=20 | |
| # 1~255 ref: https://tw-chapter.tistory.com/230 | |
| # 원래 테일즈 가이드북에 있었으나 현재 소실된것으로 추정 | |
| # 255~310 ref: https://blog.naver.com/tatelulove4 | |
| # 직접 눌러보면서 구현된 것 리버스 엔지니어링 | |
| 2~6 = 2 | |
| 7~22 = 3 | |
| 23~48 = 4 | |
| 49~80 = 5 | |
| 81~129 = 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Wavelength(nm) Relative_spectral_irradiance(a.u.) | |
| 166.7 10.1667 | |
| 167.18 12.3333 | |
| 167.659 17.1111 | |
| 168.139 21.8889 | |
| 168.618 24.5556 | |
| 169.098 23.5556 | |
| 169.577 21.6667 | |
| 170.057 20.5556 | |
| 170.536 21.3333 |
NewerOlder

