-
Download the files from the gist (extension.ts, package.json, and README.md)
-
Create a new VS Code extension project:
npm init vscode-extension
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
| --- | |
| title: "Cursor Projects Dossier" | |
| author: "Cursor Analysis System" | |
| date: "`r format(Sys.time(), '%B %d, %Y')`" | |
| output: | |
| html_document: | |
| toc: true | |
| toc_depth: 3 | |
| toc_float: true | |
| theme: united |
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
| --- | |
| title: "Cursor Projects Dossier" | |
| author: "Cursor Analysis System" | |
| date: "`r format(Sys.time(), '%B %d, %Y')`" | |
| output: | |
| html_document: | |
| toc: true | |
| toc_depth: 3 | |
| toc_float: true | |
| theme: united |
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
| # domain-scanner.ps1 | |
| # A standalone domain availability scanner that can be run directly from a gist | |
| # To run: invoke-expression (invoke-webrequest -uri https://gist.githubusercontent.com/[user]/[gist-id]/raw/domain-scanner.ps1 -useb) | |
| # Script configuration | |
| $script:Config = @{ | |
| RateLimitDelay = 500 # milliseconds between requests | |
| PopularTLDs = @("com", "net", "org", "io", "app", "ai", "dev") | |
| CountryTLDs = @("us", "uk", "ca", "de", "fr", "es", "it", "jp") | |
| NewTLDs = @("xyz", "tech", "shop", "blog", "site", "online", "store") |
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 | |
| Converts Mermaid diagram code to SVG with a text-based UI | |
| .DESCRIPTION | |
| This PowerShell script provides a menu-driven interface to convert Mermaid diagram code to SVG files | |
| using either the Mermaid CLI (if installed) or the Mermaid Live Editor API. | |
| .PARAMETER OutputPath | |
| Path to save the SVG file (default: current directory) | |
| .EXAMPLE | |
| .\mermaid_to_svg.ps1 |
A comprehensive toolkit for managing AI model interactions within the Cursor editor environment, featuring an LCARS-inspired interface design and real-time communication capabilities.
- 🌟 Real-time context awareness
- 🔄 Multi-profile support
- 🔌 WebSocket-based communication
- 🧩 Extensible plugin architecture
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="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>MCP System Architecture</title> | |
| <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script> | |
| <style> | |
| body { | |
| font-family: 'Segoe UI', system-ui, sans-serif; |
A comprehensive toolkit for migrating from Visual Studio Code to Cursor Editor, preserving your settings, projects, and development environment.
migrate-to-cursor.ps1- Main orchestration scriptvscode-to-cursor-migrator.ps1- VSCode settings migrationproject_migrator.py- Project-specific migrationsREADME.md- This documentation
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
| # /// script | |
| # requires-python = "==3.12.8" | |
| # dependencies = [ | |
| # "opencv-python", | |
| # "numpy", | |
| # "ultralytics", | |
| # "aiohttp", | |
| # "aiofiles", | |
| # "python-dotenv" | |
| # ] |
