Skip to content

Instantly share code, notes, and snippets.

@eMUQI
eMUQI / download_workstation.ps1
Created November 29, 2025 07:58 — forked from jetfir3/download_workstation.ps1
Download VMware Workstation for Windows without a Broadcom Account
<#
.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.
@eMUQI
eMUQI / display_animations.ino
Created April 18, 2024 01:46
Explore the exciting animations on Arduino UNO R4's LED matrix!
#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},
@eMUQI
eMUQI / GPT-Translate-EN.ahk
Last active September 12, 2023 15:10
AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板
; AutoHotkey 脚本实现一键复制文本到 ChatGPT 提示模板
; https://wulu.zone/posts/chatgpt-ahk
;
; Ctrl+Shift+C 的热键绑定
^+c::
; 复制选中文本到剪贴板
Send, ^c
; 等待剪贴板内容更新
ClipWait