by shigemk2

当面は技術的なことしか書かない

2017-10-23から1日間の記事一覧

Grails mail plugin

Grails mail plugin The Grails mail plugin provides a convenient DSL for sending email. It supports plain text, html, attachments, inline resources and i18n among other features. Grailsのメールプラグイン。DSLが使える

check type in Golang

check type in Golang こういう書き方 reflect.TypeOf(remote).Elem() == reflect.TypeOf(GitHubRepository{}) https://golang.org/pkg/reflect/#TypeOf

Fcitx

Fcitx インプットメソッドフレームワーク 比較対象はiBus https://ja.wikipedia.org/wiki/Fcitx

git cherry-pick in remote branch

Git

git cherry-pick in remote branch リモートブランチのコミットもcherry-pickできるの?できるよ。 git fetchしてればね。ってはなし。 # fetch just the one remote git fetch <remote> # or fetch from all remotes git fetch --all # make sure you're back on th</remote>…