Skip to content

Instantly share code, notes, and snippets.

View OiCkilL's full-sized avatar
:shipit:

Evan OiCkilL

:shipit:
  • OSIA
  • Everywhere
  • 12:14 (UTC +08:00)
View GitHub Profile
payload:
# === Google Antigravity & Gemini 专属域名 ===
- DOMAIN-SUFFIX,antigravity.google
- DOMAIN-SUFFIX,ai.google.dev
- DOMAIN-SUFFIX,gemini.google.com
- DOMAIN-SUFFIX,makersuite.google.com
- DOMAIN-SUFFIX,generativelanguage.googleapis.com
- DOMAIN-KEYWORD,antigravity
# === OpenAI / ChatGPT (来自 sarices 列表) ===
@OiCkilL
OiCkilL / loading.html
Last active June 7, 2023 07:16
loading svg
<div class="loader loader--style3" title="2">
<svg version="1.1" id="loader-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="24px" height="24px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
<path fill="#000" d="M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z">
<animateTransform attributeType="xml"
attributeName="transform"
type="rotate"
from="0 25 25"
to="360 25 25"
dur="1s"
payload:
# ChatGPT
- DOMAIN-SUFFIX,openai.com
- DOMAIN-SUFFIX,openai.nooc.ink
- DOMAIN-SUFFIX,challenges.cloudflare.com
# Add ai.com
- DOMAIN-SUFFIX,ai.com
@OiCkilL
OiCkilL / pixiv_premium.js
Created August 13, 2020 05:23
Pixiv Premium
let body = JSON.parse($response.body)
body['response']['user']['is_premium'] = true
body = JSON.stringify(body)
$done({body})
@OiCkilL
OiCkilL / Pings.bat
Last active October 16, 2024 03:18
Pings.bat
@echo off
set network=%1
set findHost=0
echo %network%| findstr "^[0-9]*\.[0-9]*\.[0-9]*$" > NUL
if %errorlevel% NEQ 0 (
goto usage
)
for /L %%i in (1,1,254) do (
for /f "usebackq delims=^" %%j in (`"@ping -n 1 -w 20 %network%.%%i | findstr TTL"`) do (
echo %%j
@OiCkilL
OiCkilL / DeleteEmptyFolders.bat
Last active February 24, 2018 07:34
DeleteEmptyFolders.bat
@echo off
set target=%1
if not defined target (
goto :usage
)
for /f "usebackq delims=^" %%j in (`"@dir /ad/b/s %target% | sort /r"`) do (
rd %%j 2>NUL
)
echo All empty folders under %target% has been deleted.
goto :EOF