Skip to content

Instantly share code, notes, and snippets.

View axtutuu's full-sized avatar
🦄
On vacation

Kawasaki Atsushi axtutuu

🦄
On vacation
View GitHub Profile
@axtutuu
axtutuu / .gitignore
Last active November 26, 2016 05:24
画像、合成テスト
gems/
@axtutuu
axtutuu / jmeter.md
Last active November 28, 2016 08:05
jmeter

複数台での負荷サーバー設定(jmeter)

概要

document http://jmeter.apache.org/usermanual/

masterサーバーにremote hostを設定後、slaveサーバーから負荷試験を実施

手順

;;; init.el --- Spacemacs Initialization File
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <[email protected]>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
@axtutuu
axtutuu / calendar.rb
Created September 14, 2018 06:35
Ruby Calendar
require 'date'
## カレンダー出力
class Calender
def initialize year, month
@beginning_of_day = Date.new(year, month, 1)
end
# @example
# SUN MON TUE WED THU FRI SAT
@axtutuu
axtutuu / classroom.rb
Created November 28, 2018 08:47
classroom.rb
class ClassRoom
def initialize
@students = []
end
def save name, gender
@students.push(
{ name: name, gender: gender }
)
end