Skip to content

Instantly share code, notes, and snippets.

View blp1526's full-sized avatar

Shingo Kawamura blp1526

  • SAKURA Internet Inc.
  • Japan
  • 11:16 (UTC +09:00)
View GitHub Profile
@blp1526
blp1526 / kubeception.md
Created October 31, 2017 02:58 — forked from dghubble/kubeception.md
Running QEMU/KVM and Nested Kubernetes on Bare-Metal Kubernetes
@blp1526
blp1526 / speech.rb
Last active November 5, 2015 12:16
発表を持ち時間以内に終わらせるためのお知らせ
class Speech
attr_reader :speaker, :minutes
def initialize(speaker, minutes)
@speaker = speaker
@minutes = minutes.to_i
end
def say(words, options = {})
options[:bg] ? bg = '&' : ''
system("say -v Kyoko '#{words}' #{bg}")