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 () { | |
| // 仅在 Apple 浏览器上启用 | |
| if (!navigator.userAgent.match(/(macintosh|macintel|macppc|mac68k|macos)/i)) return; | |
| let stateMap = new WeakMap(); | |
| function getState(el) { | |
| let s = stateMap.get(el); | |
| if (!s) { | |
| s = {composing: false, lastData: null}; | |
| stateMap.set(el, s); | 
  
    
      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
    
  
  
    
  | #!/bin/sh | |
| # | |
| # Author: Xiangsong Zeng | |
| # Date: 2024-11-21 | |
| # Description: | |
| # This script is used to download the macOS SDK from the | |
| # internet for provide a way to cross-compile macOS apps | |
| # on Linux. This is useful for developers who want to | |
| # build macOS apps on CI servers that run Linux. | |
| # | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "strings" | |
| // An EOF error always occurs when using the IBM/sarama, but segmentio/kafka-go works fine | |
| "github.com/segmentio/kafka-go" | 
  
    
      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 python3 | |
| """ | |
| Convert SVG to Axure-compatible SVG using AppleScript and Pixelmator Pro. | |
| Axure convert optimized SVG to Shape will cause the SVG to be rendered deformed. | |
| This script uses Pixelmator Pro to convert SVG to pixel-based SVG, which Axure | |
| will convert to Shape correctly. | |
| """ | |
| import argparse | 
  
    
      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
    
  
  
    
  | #!ipxe | |
| # AlmaLinux Operating System | |
| # https://almalinux.org/ | |
| isset ${dhcp-server} && set ipparam ip=dhcp || set ipparam ip=${ip}::${gateway}:${netmask}:::none nameserver=${dns} | |
| set ipparam BOOTIF=${netX/mac} ${ipparam} | |
| goto ${menu} || | 
  
    
      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
    
  
  
    
  | # /etc/systemd/system/[email protected] | |
| [Unit] | |
| Description=GO Simple Tunnel - %i | |
| After=network.target | |
| [Service] | |
| Type=simple | |
| User=nobody | |
| Group=nogroup | 
  
    
      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
    
  
  
    
  | <template> | |
| <div id="app"> | |
| <h1>Hello</h1> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: "App", | |
| }; | 
  
    
      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
    
  
  
    
  | %YAML 1.2 | |
| --- | |
| # https://www.sublimetext.com/docs/3/syntax.html | |
| name: Nim | |
| file_extensions: [nim, nims] | |
| scope: source.nim | |
| contexts: | |
| main: | |
| - include: comments | 
  
    
      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
    
  
  
    
  | #!/bin/sh | |
| export CLOUDFLARE_EMAIL='[REDACT: your cloudflare email]' | |
| export CLOUDFLARE_API_KEY='[REDACT: your cloudflare api key]' | |
| lego \ | |
| --server https://acme.zerossl.com/v2/DV90 \ | |
| --accept-tos \ | |
| --path /srv/lego \ | |
| --eab \ | 
  
    
      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/local/bin/ruby | |
| # | |
| # revealer.rb -- Deobfuscate GHE .rb files. | |
| # | |
| # This is simple: | |
| # Every obfuscated file in the GHE VM contains the following code: | |
| # | |
| # > require "ruby_concealer.so" | |
| # > __ruby_concealer__ "..." | 
NewerOlder