I hereby claim:
- I am rmdes on github.
- I am mendes (https://keybase.io/mendes) on keybase.
- I have a public key ASCRVEliL7WbjpXickHpznmoggNX9D6hF1sHQY5QcEkleAo
To claim this, I am signing this object:
| { | |
| "did": "did:plc:tk6bkjdozskzgb47umfelfpq" | |
| } |
I hereby claim:
To claim this, I am signing this object:
A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.
node --version
npm --version| You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI. | |
| Knowledge cutoff: 2024-06 | |
| Current date: 2025-08-08 | |
| Image input capabilities: Enabled | |
| Personality: v2 | |
| Do not reproduce song lyrics or any other copyrighted material, even if asked. | |
| You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor. | |
| Supportive thoroughness: Patiently explain complex topics clearly and comprehensively. | |
| Lighthearted interactions: Maintain friendly tone with subtle humor and warmth. |
| // JavaScript code for N8N to calculate and post daily countdowns with a graphical loading bar | |
| // Define the reference start date (Trump's 2025 inauguration) | |
| const startOfMandate = new Date('2025-01-20T00:00:00Z'); | |
| // Define the target dates | |
| const midtermsDate = new Date('2026-11-03T00:00:00Z'); // Next USA Midterms | |
| const presidentialElectionDate = new Date('2028-11-07T00:00:00Z'); // Next Presidential Election | |
| const inaugurationDate = new Date('2029-01-20T00:00:00Z'); // Next Inauguration Day |
| #cloud-config | |
| # Enable automatic package updates and upgrades during cloud-init execution | |
| package_update: true | |
| package_upgrade: true | |
| packages: | |
| # Security and Hardening | |
| - ufw | |
| - fail2ban |
| // JavaScript code for N8N to calculate and post daily countdowns with a graphical loading bar | |
| // add this code to the Code aka function node of N8N | |
| // Define the target dates | |
| const midtermsDate = new Date('2026-11-03T00:00:00Z'); // Next USA Midterms | |
| const presidentialElectionDate = new Date('2028-11-07T00:00:00Z'); // Next Presidential Election | |
| const inaugurationDate = new Date('2029-01-20T00:00:00Z'); // Next Inauguration Day | |
| // Get the current date | |
| const currentDate = new Date(); |
| /** | |
| * # Bluesky Bulk Post Deletion Script | |
| * | |
| * This script logs into a Bluesky account and deletes all posts (feed records) | |
| * that contain a specified domain in their facets or embeds. It employs a | |
| * two-pronged approach to handle rate limits: | |
| * | |
| * 1. **Proactive Rate-Limit Avoidance** | |
| * Uses a known hourly limit (5000 delete points/hour) to pace deletions and avoid | |
| * hitting server limits directly. Once the threshold is approached, it waits until |