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
学校名 | 部員数 | |
---|---|---|
旭川大高 | 62 | |
北照 | 60 | |
八戸学院光星 | 118 | |
花巻東 | 120 | |
金足農 | 50 | |
羽黒 | 76 | |
仙台育英 | 121 | |
聖光学院 | 117 | |
土浦日大 | 91 |
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
license: gpl-3.0 |
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
学校 | 都道府県数 | 内訳 | |
---|---|---|---|
旭川大高 | 1 | 北海道 | |
北照 | 3 | 北海道,青森,大阪 | |
八戸学院光星 | 10 | 青森,岩手,福島,茨城,神奈川,滋賀,大阪,鳥取,徳島,沖縄 | |
花巻東 | 1 | 岩手 | |
金足農 | 1 | 秋田 | |
羽黒 | 4 | 山形,千葉,東京,神奈川 | |
仙台育英 | 4 | 北海道,宮城,福島,山形 | |
聖光学院 | 9 | 福島,群馬,千葉,東京,神奈川,新潟,大阪,兵庫,岡山 | |
土浦日大 | 3 | 茨城,千葉,東京 |
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
都道府県 | 人数 | |
---|---|---|
北海道 | 35 | |
青森 | 4 | |
岩手 | 19 | |
秋田 | 18 | |
山形 | 8 | |
宮城 | 14 | |
福島 | 14 | |
茨城 | 17 | |
栃木 | 25 |
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
地区 | 学校 | 出場回数 | URL | 住所 | |
---|---|---|---|---|---|
北北海道 | 旭川大高 | 9年ぶり8回目 | http://www.asahikawa-uhs.ed.jp/ | 北海道旭川市永山7条16丁目3番16号 | |
南北海道 | 北照 | 5年ぶり4回目 | https://www.hokusho.ed.jp/ | 北海道小樽市最上2丁目5番1号 | |
青森 | 八戸学院光星 | 2年ぶり9回目 | http://kh.hachinohe-u.ac.jp/ | 青森県八戸市湊高台6丁目14-5 | |
岩手 | 花巻東 | 3年ぶり9回目 | http://www.hanamakihigashi-h.jp/ | 岩手県花巻市松園町55番地1 | |
秋田 | 金足農 | 11年ぶり6回目 | http://www.kanano-h.akita-pref.ed.jp/ | 秋田県秋田市金足追分字海老穴102-4 | |
山形 | 羽黒 | 15年ぶり2回目 | http://www.haguroko.ed.jp/ | 山形県鶴岡市羽黒町手向字薬師沢198 | |
宮城 | 仙台育英 | 2年連続27回目 | https://www.sendaiikuei.ed.jp/hs/ | 宮城県仙台市宮城野区宮城野2-4-1 | |
福島 | 聖光学院 | 12年連続15回目 | http://www.seikogakuin.jp/ | 福島県伊達市六角3 | |
茨城 | 土浦日大 | 2年連続4回目 | https://www.tng.ac.jp/tsuchiura/ | 茨城県土浦市小松ケ丘町4-46 |
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
add_shortcode( 'my_sga_ranking', function ( $atts ) { | |
if ( ! function_exists( 'sga_ranking_get_date' ) ) { | |
return; | |
} | |
$ids = sga_ranking_get_date( $atts ); | |
if ( empty( $ids ) ) { | |
return; | |
} |
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
# ==== Emojis ==== | |
# 🐜 :ant: バグ修正 | |
# 👍 :+1: 機能改善 | |
# ✨ :sparkles: 部分的な機能追加 | |
# 🎉 :tada: 盛大に祝うべき大きな機能追加 | |
# 🔧 :wrench: 環境設定 | |
# ♻️ :recycle: リファクタリング | |
# 🚿 :shower: 不要な機能・使われなくなった機能の削除 |
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
git clone https://github.com/ko31/vccw-adminer my-project | |
cd my-project | |
vagrant up |
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
curl -u "{username}":"{password}" \ | |
-X POST \ | |
-H "Accept: application/json" \ | |
-d '{"text":"こんにちは","source":"ja","target":"en"}' \ | |
"https://gateway.watsonplatform.net/language-translator/api/v2/translate" |
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
#!/usr/bin/env bash | |
set -ex | |
wp plugin install wp-multibyte-patch logbook --activate | |
wp plugin update --all |