日付 | イベントpt | スタドリ10 | スタドリ20 | スタドリ30 | スタドリMAX(84) | 合計(スタミナ) |
---|---|---|---|---|---|---|
5/19 | 2678 | 10 | 10 | 10 | 0 | 600 |
5/20 | 5156 | 10 | 12 | 7 | 0 | 550 |
5/21 | 14113 | 10 | 14 | 10 | 11 | 1604 |
5/22 | 16237 | 0 | 1 | 0 | 0 | 20 |
5/23 | 20307 | 0 | 0 | 0 | 0 | 0 |
5/24 | 42003 | 10 | 11 | 10 | 0 | 620 |
5/25 | 51105 | 10 | 10 | 10 | 0 | 600 |
5/26 | 52480 | 10 | 12 | 10 | 0 | 640 |
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/sh | |
( | |
dir="$(cd "$(dirname "$1")" && pwd)" | |
name="$(basename "$1")" | |
docker run --rm -v "${dir}:/scripts" koalaman/shellcheck "/scripts/${name}" | |
) |
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 'gamegrid) | |
(defconst xmas-tree-buffer-name "*XMASTREE*") | |
(defconst xmas-tree--display-padding-top 5) | |
(defconst xmas-tree--display-padding-left 3) | |
(defvar xmas-tree--display-width) | |
(defvar xmas-tree--display-height) | |
(defvar xmas-tree--leafs nil) |
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
# /path/to/main.tf | |
variable "aws_access_key" {} | |
variable "aws_secret_key" {} | |
provider "aws" { | |
access_key = "${var.aws_access_key}" | |
secret_key = "${var.aws_secret_key}" | |
region = "ap-northeast-1" |
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
(make-variable-buffer-local | |
(defvar sushi-bar--conveyor-belt "")) | |
(make-variable-buffer-local | |
(defvar sushi-bar--backup-mode-line-format nil)) | |
(defvar sushi-bar--updater-object nil) | |
(defun sushi-bar--sushi-is-ready-p () | |
(eq (random 15) 1)) |
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/sh | |
# | |
# Short description | |
# | |
# Long description (multiline) | |
# :pizza: :pizza: :pizza: | |
# | |
# Examples: | |
# |
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 'request) | |
(defconst line-notify--endpoint | |
"https://notify-api.line.me/api/notify") | |
(setq line-notify-token "XXXXXXXXXX") | |
(defun line-notify-sync (message) | |
(request | |
line-notify--endpoint |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("rubykaigi.org") { | |
body { | |
background-color: #994444; | |
background-image: none; | |
} | |
} |
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
apt-get install \ | |
apache \ # foo | |
php \ | |
emacs \ # editor | |
vim | |
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
source "https://rubygems.org" | |
gem "turnip" | |
gem 'rspec' |