Skip to content

Instantly share code, notes, and snippets.

View STSynthe's full-sized avatar

えむ/STSynthe STSynthe

View GitHub Profile
@STSynthe
STSynthe / Command_to_get_global_IP_address_of_GCP_computer_instance.md
Last active October 20, 2025 12:06
GCPのコンピューターインスタンスのグローバルIPアドレスを取得するコマンド
gcloud compute instances list --filter="name=<インスタンスネーム>" --format="value(external
_ip())"

エラーになる場合

@STSynthe
STSynthe / blind_shield.jp.user.css
Created October 14, 2025 02:09
`html-load\.com`を使用した、ウェブサイトの広告を非表示にする。Hide ads from stupid Japanese websites using `html-load\.com` (Ad-Shield).
/* ==UserStyle==
@name BlindShield(JP)
@namespace https://gist.github.com/STSynthe
@homepageURL https://gist.github.com/STSynthe
@version 1.5
@description html-load\.comを使用した、ウェブサイトの広告を非表示にする。Hide ads from stupid Japanese websites using html-load\.com (Ad-Shield).
@author STSynthe
@license Unlicense
==/UserStyle== */
@STSynthe
STSynthe / example.bat
Last active April 10, 2024 04:54
バッチファイルでファイルのフルパス一覧を取得
DIR /B /S
REM forでも同様のことは出来る
FOR /F %i IN ('DIR /B /O:N') DO (ECHO %cd%\%i)