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
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
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
On Error Resume Next | |
' 1. Change this to your Visual Studio Code file path. | |
path = "D:\Program Files\VSCode\Code.exe" | |
' 2. Optional - Change keyboard shortcut here, for example: "F" if you like. | |
shortcut = "F" | |
Sub ElevateUAC | |
If Not WScript.Arguments.Named.Exists("elevated") Then |
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
class EventEmitter | |
{ | |
constructor() | |
{ | |
this._listeners = new Map(); | |
} | |
addListener(p_eventName, p_listener) | |
{ | |
if (p_listener && typeof p_listener === "function") |
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
On Error Resume Next | |
' 1. Change this to your Sublime Text file path. | |
path = "C:\Program Files\Sublime Text\sublime_text.exe" | |
' 2. Optional - Change keyboard shortcut here, for example: "F" if you like. | |
shortcut = "Q" | |
Sub ElevateUAC | |
If Not WScript.Arguments.Named.Exists("elevated") Then |