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
| <# | |
| .SYNOPSIS | |
| Download VMware Workstation Pro for Windows from Archive.org | |
| .DESCRIPTION | |
| This script downloads VMware Workstation installers directly from the archive.org VMware Workstation archive. | |
| It allows for interactive menu selection or direct version specification. | |
| .PARAMETER Version | |
| Specifies the version of VMware Workstation to download (e.g., "17.6.3"). | |
| .PARAMETER Help | |
| Displays the help information for the script and exits. |
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
| #include "Arduino_LED_Matrix.h" // Include the LED_Matrix library | |
| ArduinoLEDMatrix matrix; | |
| struct Animation { | |
| const uint32_t (*sequence)[4]; | |
| size_t size; | |
| }; | |
| Animation animations[] = { | |
| {LEDMATRIX_ANIMATION_STARTUP, sizeof LEDMATRIX_ANIMATION_STARTUP}, |
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
| ; AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板 | |
| ; https://wulu.zone/posts/chatgpt-ahk | |
| ; | |
| ; Ctrl+Shift+C 的热键绑定 | |
| ^+c:: | |
| ; 复制选中文本到剪贴板 | |
| Send, ^c | |
| ; 等待剪贴板内容更新 | |
| ClipWait |