Skip to content

Instantly share code, notes, and snippets.

View boiyama's full-sized avatar

Hilo Yamamoto boiyama

  • Minato Inc.
View GitHub Profile

TXUG イベント行動規範

TXUGのイベント行動規範は、下記のような事柄に関わらずすべての人にとって安心・安全なイベント体験を提供するためのものです。この規範は、TXUGが主催・運営する全てのイベントに適用されます。

TXUGのイベント参加者は、次の規範に従う必要があります

1. イベントの趣旨と反することはしない

TXUGのイベントにはそれぞれに目的が存在します。イベントの目的を理解し、目的にそぐわない行動はしないよう努めてください。

@boiyama
boiyama / Form.elm
Created April 27, 2017 02:20
Simple form example in Elm
import Html exposing (Html, beginnerProgram, div, button, input, li, text, ul)
import Html.Attributes exposing (value)
import Html.Events exposing (onClick, onInput)
import List exposing (map)
type alias Model =
{ value : String
, posts : List String
}
@boiyama
boiyama / docker-compose.yml
Created April 6, 2017 07:51
docker-compose.yml configuring GitLab with Container Registry, Pages, CI, Mattermost (enabled WebRTC), and some other options
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different
@boiyama
boiyama / docker-compose.yml
Created April 6, 2017 07:36
docker-compose.yml configuring GitLab with Container Registry, Pages, CI, and Mattermost (enabled WebRTC)
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different
@boiyama
boiyama / docker-compose.yml
Created April 6, 2017 07:34
docker-compose.yml configuring GitLab with Container Registry, Pages, CI, and Mattermost
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different
@boiyama
boiyama / docker-compose.yml
Last active November 24, 2021 16:05
docker-compose.yml configuring GitLab with Container Registry, Pages, and CI
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different
@boiyama
boiyama / docker-compose.yml
Last active April 6, 2017 07:32
docker-compose.yml configuring GitLab
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different