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
| FILE_NAME = ARGV[0] | |
| KEYWORD = ARGV[1] | |
| SPLITTER = /,/ | |
| def howto | |
| puts "Howto? " + File.basename($0) + " <filename>" + " <keyword>" | |
| end | |
| # 引数が想定しないパターンの場合にエラー表示。 | |
| if ARGV.empty? || ARGV.count() != 2 |
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
| @Grapes([ | |
| @Grab(group='postgresql', module='postgresql', version='9.0-801.jdbc4'), | |
| @Grab(group='com.ibm.icu', module='icu4j', version='56.1'), | |
| @GrabConfig(systemClassLoader=true, initContextClassLoader=true) | |
| ]) | |
| import com.ibm.icu.text.Transliterator | |
| //------------- script -----------------// | |
| println "-----start-----" + new Date() |
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
| "dein.vimの設定"{{{ | |
| if &compatible | |
| set nocompatible | |
| endif | |
| " plugin directory for dein | |
| let s:dein_dir = expand('~/.cache/dein') | |
| " actually dein | |
| let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim' | |
- This version:
- Latest published version:
- Latest editor's draft:
- https://w3c.github.io/websub/
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
| SELECT companies.* FROM companies; |
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
| require 'rom-repository' | |
| rom = ROM.container(:sql, 'sqlite::memory') do |config| | |
| config.default.create_table(:users) do | |
| primary_key :id | |
| column :name, String, null: false | |
| column :email, String, null: false | |
| end | |
| config.default.create_table(:tasks) do |
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 | |
| echo 'push_release_branch start...' | |
| CURRENT_VERSION="" | |
| NEXT_VERSION="" | |
| function notifySlack () { | |
| # ignore "bash: !: event not found" | |
| # see https://qiita.com/anqooqie/items/785f46a8cc5f10ba7abb |
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
| /******/ (function() { // webpackBootstrap | |
| /******/ var __webpack_modules__ = ({ | |
| /***/ "./node_modules/ansi-html-community/index.js": | |
| /*!***************************************************!*\ | |
| !*** ./node_modules/ansi-html-community/index.js ***! | |
| \***************************************************/ | |
| /***/ (function(module) { | |
| "use strict"; |
OlderNewer