Skip to content

Instantly share code, notes, and snippets.

View ko31's full-sized avatar
I want to play catch!

Ko Takagi ko31

I want to play catch!
View GitHub Profile
@ko31
ko31 / functions.php
Created October 26, 2019 06:35
[Simple Slug Translate] Customize translated post statuses.
/**
* Customize translated post statuses.
*/
add_filter( 'simple_slug_translate_post_status', function( $statuses ) {
// Specify post statuses
$statuses = [
'draft',
'publish',
];
@ko31
ko31 / functions.php
Created October 26, 2019 06:21
[Simple Slug Translate] Customize the translated slug.
/**
* Customize the translated slug.
*/
add_filter( 'simple_slug_translate_results', function( $results ) {
// 200 - OK
if ( 200 === $results['code'] ) {
// Customize slug
$results['text'] = sprintf( 'translated-%s', $results['text'] );
}
@ko31
ko31 / touch.php
Created October 10, 2019 02:34
YYYY/MM/DD/[filename].html というファイルに対して、ディレクトリ構成の年月日からファイル最終更新日時をセット
<?php
/**
* YYYY/MM/DD/[filename].html というファイルに対して、
* ディレクトリ構成の年月日からファイル最終更新日時をセット
*/
$paths = glob('*/*/*/*.html');
foreach ($paths as $path) {
list($year, $month, $day, $file) = explode('/', $path);
touch($path, strtotime(sprintf('%s/%s/%s', $year, $month, $day)));
@ko31
ko31 / update.md
Created September 11, 2019 03:04
vulnerabilities alert が出るので npm-check-updates でパッケージをアップデートする

npm-check-updates をインストールする。

$ npm install -g npm-check-updates

更新可能なパッケージを確認する。

$ ncu
@ko31
ko31 / sample.sh
Last active August 18, 2019 11:58
wp --allow-root core language install ja --activate
wp --allow-root option update timezone_string 'Asia/Tokyo'
@ko31
ko31 / motto.png
Last active August 10, 2019 10:53
motto
motto.png
@ko31
ko31 / gosign.txt
Created August 10, 2019 10:33
Gosign Ascii Art
________ ________ ________ ___ ________ ________
|\ ____\|\ __ \|\ ____\|\ \|\ ____\|\ ___ \
\ \ \___|\ \ \|\ \ \ \___|\ \ \ \ \___|\ \ \\ \ \
\ \ \ __\ \ \\\ \ \_____ \ \ \ \ \ __\ \ \\ \ \
\ \ \|\ \ \ \\\ \|____|\ \ \ \ \ \|\ \ \ \\ \ \
\ \_______\ \_______\____\_\ \ \__\ \_______\ \__\\ \__\
\|_______|\|_______|\_________\|__|\|_______|\|__| \|__|
\|_________|
@ko31
ko31 / number.tsv
Created August 3, 2019 13:40
2019年夏の甲子園出場校ベンチ入りメンバーの出身都道府県別人数
学校名 都道府県 人数
旭川大 北海道 18
北照 北海道 13
北照 東京 2
北照 大阪 3
八戸学院光星 青森 2
八戸学院光星 宮城 1
八戸学院光星 東京 1
八戸学院光星 長野 1
八戸学院光星 静岡 1
@ko31
ko31 / count.csv
Last active August 3, 2019 08:02
2019年夏の甲子園出場校のベンチ入りメンバーがいくつの出身都道府県で構成されているか
学校名 都道府県数 内訳
旭川大高 1 北海道
北照 3 北海道,東京,大阪
八戸学院光星 10 青森,宮城,東京,長野,静岡,奈良,京都,大阪,徳島,沖縄
花巻東 2 岩手,神奈川
秋田中央 1 秋田
鶴岡東 8 山形,栃木,埼玉,千葉,長野,滋賀,大阪,兵庫
仙台育英 5 宮城,山形,福島,東京,大阪
聖光学院 4 福島,北海道,東京,大阪
霞ヶ浦 4 茨城,東京,千葉,兵庫
@ko31
ko31 / members.tsv
Created August 3, 2019 07:54
2019年夏の甲子園出場校のベンチ入りメンバー出身都道府県
都道府県 人数
大阪 73
兵庫 56
東京 54
福岡 35
北海道 33
千葉 30
沖縄 27
長野 23
広島 23