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
| 市名 | 県名 | |
|---|---|---|
| 函館市 | 北海道 | |
| 小樽市 | 北海道 | |
| 旭川市 | 北海道 | |
| 室蘭市 | 北海道 | |
| 釧路市 | 北海道 | |
| 帯広市 | 北海道 | |
| 北見市 | 北海道 | |
| 夕張市 | 北海道 | |
| 岩見沢市 | 北海道 |
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
| #!/bin/zsh | |
| filename=$1 | |
| ## sh エミュレーターモード | |
| emulate -R sh | |
| ## 引数チェック | |
| if [ $# -eq 0 ] | |
| then |
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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>A sample of YouTube Player API for <iframe> Embeds</title> | |
| </head> | |
| <body> | |
| <!-- <iframe>(とプレイヤ)に置き換わる<div>タグ --> | |
| <div id="player"></div> | |
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
| 有備無憂 | そなえあればうれひなし | |
|---|---|---|
| 歳月不待人 | さいげつひとをまたず | |
| 尽人事待天命 | じんじをつくしててんめいをまつ | |
| 送元二使安西 | げんじのあんせいにつかひするをおくる | |
| 吾日三省吾身 | われひにわがみをさんせいす | |
| 少年易老学難成 | せうねんおいやすくがくなりがたし | |
| 逐鹿者不見山 | しかをおふものはやまをみず | |
| 懸羊頭売狗肉 | やうとうをかけてくにくをうる | |
| 書足以記名姓而已 | しょはもってめいせいをしるすにたるのみ | |
| 秦皇平定天下 | しんくわうてんかをへいていす |
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
| public class FizzBuzz { | |
| public static void main( String[] args ) { | |
| String fizz = "Fizz", buzz = "Buzz"; | |
| for ( int i = 1; i <= 100; i++ ) { | |
| if ( i % 3 == 0 && i % 5 == 0 ) { | |
| System.out.println( fizz + buzz ); | |
| } else if ( i % 3 == 0 ) { | |
| System.out.println( fizz ); | |
| } else if ( i % 5 == 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
| const gulp = require("gulp"); | |
| const plugins = require("gulp-load-plugins")(); | |
| gulp.task("pug", () => { | |
| return gulp.src("./pug/**/*.pug") | |
| .pipe(plugins.pug({ | |
| pretty: true | |
| })) | |
| .pipe(gulp.dest("./static/html/")); | |
| }); |
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
| // GulpでHexoのgenerateを実行する最低限のスクリプト | |
| // ここから圧縮だったりをする | |
| 'use strict'; | |
| const gulp = require('gulp'); | |
| const del = require('del'); | |
| const runSequence = require('run-sequence'); | |
| const Hexo = require('hexo'); | |
| const hexo = new Hexo(process.cwd(), {}); |
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
| #!/bin/bash | |
| # 参考: ffmpegで静止画と音声をくっつけた映像を作る https://qiita.com/ottyajp/items/4cd5280b4b8e8ff331e1 | |
| CMDNAME=`basename $0` | |
| if [ $# -ne 6 ]; then | |
| echo "Usage: $CMDNAME [-i image] [-s sound] [-o output]" 1>&2 | |
| exit 1 | |
| fi |
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
| swagger: '2.0' | |
| info: | |
| description: Short URL Service for OldBigBuddha by OldBigBuddha | |
| version: 1.0.0 | |
| title: OJI.la Short URL | |
| contact: | |
| email: [email protected] | |
| license: | |
| name: Apache 2.0 | |
| url: 'http://www.apache.org/licenses/LICENSE-2.0.html' |
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
| { statuses: [], | |
| search_metadata: | |
| { completed_in: 0.012, | |
| max_id: 1068811491065892900, | |
| max_id_str: '1068811491065892864', | |
| query: '%23PlzTime', | |
| refresh_url: | |
| '?since_id=1068811491065892864&q=%23PlzTime&lang=eu&result_type=recent&include_entities=1', | |
| count: 10, | |
| since_id: 0, |
OlderNewer