I hereby claim:
- I am nukosuke on github.
- I am nukosuke (https://keybase.io/nukosuke) on keybase.
- I have a public key ASCe0M8irQmTnBikGaLfWFtB43cHQKK2kw5Vl_55iJX-0wo
To claim this, I am signing this object:
| #!/bin/bash | |
| # 使いかた | |
| # source ec2ssh.bash | |
| # ec2ssh | |
| # | |
| # インストール方法 | |
| # echo "[ -f ~/ec2ssh.bash ] && source ~/ec2ssh.bash" >> ~/.bashrc | |
| # | |
| # 依存 |
| # fish-modus-vivendi color theme | |
| set -l foreground ffffff # fg-main | |
| set -l comment a8a8a8 # fg-alt | |
| set -l selection 34cfff # blue-active | |
| # *-intense color | |
| set -l red fe6060 | |
| set -l orange fba849 | |
| set -l green 4fe42f | |
| set -l yellow f0dd60 |
| defmodule Kanji do | |
| @moduledoc """ | |
| 漢字かどうかを判定する | |
| ## Usage | |
| iex(1)> Kanji.kanji?(?漢) | |
| true | |
| iex(2)> Kanji.kanji?(?A) |
| ;; | |
| ;; magit | |
| ;; | |
| (use-package magit | |
| :bind | |
| ("C-c C-v" . magit-dispatch-popup)) | |
| ;; | |
| ;; git-gutter | |
| ;; |
| #!/bin/bash | |
| ERLANG_OTP_VERSION="21.2" | |
| ELIXIR_VERSION="1.7.0" | |
| if ! type git > /dev/null 2>&1; then | |
| echo "git is not installed" | |
| exit 1 | |
| fi |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/nukosuke/go-zendesk/zendesk" | |
| "net/http" | |
| "os" | |
| ) | |
| func main() { |
| # Usage: | |
| # $ git clone git@github.com:concrete5/concrete5.git | |
| # $ cd concrete5 | |
| # $ cp /path/to/this/docker-compose.yml . | |
| # $ docker compose up | |
| concrete5: | |
| image: php:7.2-alpine | |
| command: | | |
| sh -c "\ |
| package main | |
| import ( | |
| "bytes" | |
| "crypto/md5" | |
| "encoding/gob" | |
| "fmt" | |
| ) | |
| type Data struct { |
I hereby claim:
To claim this, I am signing this object:
| # ~/.zenform | |
| [[credentials]] | |
| [credentials.production] | |
| auth_type = "basic" | |
| subdomain = "zenform" | |
| email = "zenform@example.com" | |
| password = "password" | |
| [credentials.sandbox] | |
| auth_type = "basic" |