Skip to content

Instantly share code, notes, and snippets.

View CloudRemix's full-sized avatar

CloudRemix CloudRemix

View GitHub Profile
@CloudRemix
CloudRemix / Amazon SNS Unsubscribe Block
Created October 27, 2024 15:12
Amazon SNS Unsubscribe Block
[Adblock Plus 2.0]
! Title: Amazon SNS Unsubscribe Block
! License: CC0 (Public Domain)
! Homepage: https://www.cloudremix.net/
!
||sns.us-east-2.amazonaws.com^
||sns.us-east-1.amazonaws.com^
||sns.us-west-1.amazonaws.com^
||sns.us-west-2.amazonaws.com^
@CloudRemix
CloudRemix / wordoress-install.php
Last active March 23, 2023 12:22 — forked from tschoffelen/install.php
カレントディレクトリ(./)に WordPress の最新バージョンを自動的にダウンロードし、解凍するシンプルなPHPスクリプト。手動でダウンロードしてFTPでサーバーにアップロードする必要はない。
<?php
echo '<pre>';
echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL;
// ダウンロードファイル
file_put_contents('wp.zip', file_get_contents('https://ja.wordpress.org/latest-ja.zip'));
$zip = new ZipArchive();
$res = $zip->open('wp.zip');
if ($res === TRUE) {