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
| 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 列表) === |
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
| <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" |
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
| payload: | |
| # ChatGPT | |
| - DOMAIN-SUFFIX,openai.com | |
| - DOMAIN-SUFFIX,openai.nooc.ink | |
| - DOMAIN-SUFFIX,challenges.cloudflare.com | |
| # Add ai.com | |
| - DOMAIN-SUFFIX,ai.com |
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
| @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 |
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
| @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 |