reply to this and paste or drag your image in the reply, then copy the link.
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
| #!/usr/bin/env bun | |
| /** | |
| * ============================================================ | |
| * PROOF: Anthropic is specifically blocking "OpenCode" | |
| * in Claude Code OAuth system prompts | |
| * ============================================================ | |
| * | |
| * Video covering this script here: https://www.youtube.com/watch?v=G9YX6StP2-M | |
| * | |
| * This script demonstrates that Anthropic has specifically blocked |
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
| ## Atlassian Statuspage | |
| It has a customizable, status page where visitors can view real-time incident status and subscribe for updates via email, SMS, webhook, or integrations like Slack and Microsoft Teams. | |
| Features include: | |
| - incident templates | |
| - component status displays | |
| - historical uptime reports | |
| - REST API access |
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
| /** | |
| * RFC-compliant domain validation using the Public Suffix List | |
| * Properly handles multi-level TLDs (e.g., .co.uk, .com.au) | |
| * Works on both client and server side | |
| */ | |
| import { parse } from 'tldts' | |
| export interface DomainValidationResult { | |
| isValid: boolean |
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
| <svg width="922" height="805" viewBox="0 0 922 805" fill="none" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M473.749 803.95C473.649 803.55 473.449 796.85 473.299 789C472.999 764.2 472.099 737.4 471.499 733.75C471.099 731.6 470.799 722.05 470.699 709.1C470.599 697.45 470.349 687.2 470.099 686.3C469.799 685.35 469.799 676.6 469.999 665.45C470.349 646.15 470.149 635.1 469.499 635.85C469.299 636.05 468.299 639.2 467.299 642.75C465.499 649.3 463.549 655 461.249 660.5C460.549 662.15 459.549 665.75 458.999 668.5C457.099 678 456.249 681 455.399 681C454.599 681 456.299 670.05 458.999 657.75C459.749 654.2 460.549 650 460.699 648.5C460.849 647 461.649 643.25 462.499 640.25C463.349 637.25 464.399 632.05 464.799 628.75C465.149 625.45 465.749 621.2 466.049 619.25C466.599 615.55 468.099 597.6 468.099 594.25C468.149 593.15 467.799 591.05 467.349 589.65C466.699 587.45 466.649 586.3 467.099 582.65C467.749 577.75 467.149 569.95 466.149 569.65C464.899 569.2 454.499 588.55 450.749 598.25C450.149 599.9 448.799 602.6 447.849 604.2 |
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
| (function () { | |
| // 1. Intercept calls to URL.createObjectURL to capture the Blob | |
| const originalCreateObjectURL = URL.createObjectURL; | |
| URL.createObjectURL = function (blob) { | |
| // Store the blob in a global variable | |
| window.lastCapturedBlob = blob; | |
| console.log("Captured blob:", blob); | |
| return originalCreateObjectURL.apply(this, arguments); | |
| }; |