Skip to content

Instantly share code, notes, and snippets.

View nczz's full-sized avatar
🇹🇼
寫 code 不一定會幫你賺到錢,但會寫 code 能生活的有意思點。

一介資男 nczz

🇹🇼
寫 code 不一定會幫你賺到錢,但會寫 code 能生活的有意思點。
View GitHub Profile
@nczz
nczz / whatissoslow.php
Created October 29, 2023 14:23 — forked from Viper007Bond/whatissoslow.php
WordPress: Times how long it takes each filter and action to run and displays results at the end of the page. Quick and dirty.
<?php
/**
* This little class records how long it takes each WordPress action or filter
* to execute which gives a good indicator of what hooks are being slow.
* You can then debug those hooks to see what hooked functions are causing problems.
*
* This class does NOT time the core WordPress code that is being run between hooks.
* You could use similar code to this that doesn't have an end processor to do that.
*
@nczz
nczz / nginx_wp_staging_site.conf
Created June 6, 2023 10:24
Nginx 設定測試站靜態資源轉請求,減少測試站備份的容量
location ~ /wp-content/uploads/.* {
if (!-f $request_filename) {
rewrite ^/wp-content/uploads/(.*)$ https://www.mxp.tw/wp-content/uploads/$1 redirect;
}
}
@nczz
nczz / tw-zip-codes.php
Created May 17, 2023 15:09
引用 https://github.com/yyc1217/twzipcode-data/ 這專案中的台灣郵遞區號,改寫成 PHP 陣列,並補上「離島」與「本島」的註記(outlying -> 0 為本島, 1 為離島)
<?php
$twzipcode_arr = array(
0 => array(
'zipcode' => 100,
'county' => '臺北市',
'city' => '中正區',
'outlying' => 0,
),
1 => array(
'zipcode' => 103,
@nczz
nczz / spam.list
Last active November 28, 2022 13:51
農場網站請求清單
103.1.220.10 => WordPress/6.1.1; http://www.gujibaili.com.tw
103.1.220.10 => WordPress/6.1; http://www.gujibaili.com.tw
103.1.220.18 => WordPress/5.6.10; http://yks.bailhai.com.tw
103.1.220.18 => WordPress/5.8.6; http://www.amahua.com.tw
103.1.220.18 => WordPress/5.8.6; http://www.speedkz.com.tw
103.1.220.18 => WordPress/5.8.6; http://yks.futhome.com.tw
103.1.220.18 => WordPress/5.8.6; http://yks.speedkz.com.tw
103.1.220.18 => WordPress/5.9.5; http://www.hds555.com.tw
103.1.220.18 => WordPress/5.9.5; https://www.hds555.com.tw
103.1.220.18 => WordPress/6.1.1; http://blog.amahua.com.tw
/**
* HOW-TO
*/
// same param as $.ajax(option); see http://api.jquery.com/jQuery.ajax/
$.ajaxQueue.addRequest(option);
// start processing one by one requests
$.ajaxQueue.run();
@nczz
nczz / artzustudio.com.har
Created June 3, 2022 15:01
artzustudio.com 與 wpbuildershop.com 的 HAR 瀏覽紀錄
This file has been truncated, but you can view the full file.
{
"log": {
"version": "1.2",
"creator": {
"name": "WebInspector",
"version": "537.36"
},
"pages": [
{
"startedDateTime": "2022-06-03T14:46:30.969Z",
@nczz
nczz / LightSail WordPress Cluster
Created May 2, 2022 02:24 — forked from mukeshwani/LightSail WordPress Cluster
Command, Code Snippts and Instructions for following video tutorial on setting up LightSail WordPress Cluster
# Welcome to the lightsail-wordpress-cluster wiki!
## Instructions, commands and code snippets to use and follow along the Video Tutorial on YouTube.
## Create Four LightSail Ubuntu Servers with the appropriate sizing. Name Three instances WP1, WP2, WP3, and name 4th instance LoadBalancer
##
## Open Ports 443 and 9443 (on LoadBalancer and WP1 in the LightSail Instance networking section)
## Run all commands with root (sudo su)
### Run following on each of the 3 WordPress instances
`ufw allow 80,443,9443,3306,4444,4567,4568/tcp;`
// import_json_appsscript.js
// https://gist.github.com/allenyllee/c764c86ed722417948fc256b7a5077c4
//
// Changelog:
// (Oct. 16 2019) tag: allenyllee-20191016
// 1. Fixed google script error: urlfetchapp - service invoked too many times https://stackoverflow.com/questions/10598179/google-apps-script-urlfetchapp-service-invoked-too-many-times
// (Jul. 16 2018) tag: allenyllee-20180716
// 1. Fixed the issue "If you try to query /arrayA[k]/arrayB[n]/arrayC[m]/.../member, you will always get /arrayA[k]/arrayB[k]/arrayC[k]/.../member."
// (Nov. 30 2017) tag: allenyllee-20171130
// 1. Add the ability to query array elements by using xpath like "/array[n]/member" where "n" is array index
@nczz
nczz / facebook_export_json_decode.php
Created August 26, 2021 16:34
Facebook 匯出 JSON 檔案編碼修正
<?php
/**
** 使用方式:在下載回來解壓的最上層目錄,執行 php -f facebook_export_json_decode.php 會將目錄下所有 JSON 檔案都轉檔編碼過。
**/
function glob_recursive($pattern, $flags = 0) {
$files = glob($pattern, $flags);
foreach (glob(dirname($pattern) . '/*', GLOB_ONLYDIR | GLOB_NOSORT) as $dir) {
$files = array_merge($files, glob_recursive($dir . '/' . basename($pattern), $flags));
}
return $files;
@nczz
nczz / wordpress_fake_post_method.php
Last active December 25, 2020 12:48
[WordPress] 建立不存在 WP_POSTS 資料表中的「假文章/頁面」 https://www.mxp.tw/9104/
<?php
function create_fake_post($content, $title = 'Slider Revolution') {
$post = new stdClass();
$post->ID = -1;
$post->post_author = get_current_user_id();
$post->post_date = current_time('mysql');
$post->post_date_gmt = current_time('mysql', 1);
$post->post_title = $title;
$post->post_content = $content;
$post->post_status = 'publish';