Skip to content

Instantly share code, notes, and snippets.

@tbpgr
tbpgr / ODDR サンプル - エンカツへのスクラム導入.md
Last active May 24, 2023 02:01
ODDR サンプル - エンカツへのスクラム導入

エンカツへのスクラム導入

Status

accepted

Deciders

  • 髙木
  • 田部井

Date

Title

Status

proposed, accepted, rejected, deprecated

Deciders

意思決定者

Date

意思決定日

@tbpgr
tbpgr / index.html
Created May 1, 2015 13:39
Opal サンプル
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Opal Sample</title>
<script src="http://cdn.opalrb.org/opal/current/opal.min.js"></script>
<script src="http://cdn.opalrb.org/opal/current/opal-parser.min.js"></script>
</head>
<body>
<script type="text/ruby">
@tbpgr
tbpgr / index.html
Created April 30, 2015 17:30
FontAwesome(4.3.0) sample
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Font Awesome Samples</title>
<link href='http://fonts.googleapis.com/css?family=Crete+Round' rel='stylesheet' type='text/css'>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
body {
font-family: Crete Round, Arial, serif;
@tbpgr
tbpgr / index.html
Created April 30, 2015 17:20
FontAwesome(4.2) サンプル
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Font Awesome Samples</title>
<link href='http://fonts.googleapis.com/css?family=Crete+Round' rel='stylesheet' type='text/css'>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
body {
font-family: Crete Round, Arial, serif;
@tbpgr
tbpgr / index.html
Created April 7, 2015 14:19
Chart.js LineChart Sample
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Line Chart Test</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
<script language="JavaScript"><!--
function displayLineChart() {
var data = {
labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
@tbpgr
tbpgr / index.html
Created April 6, 2015 13:47
Chart.js レーダーチャートサンプル
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Qiita:Team / esa / DocBase の比較</title>
<style>
#legend {
padding: 10px;
overflow: hidden;
position: relative;
@tbpgr
tbpgr / gist:e697a792da552f6c2e55
Last active August 29, 2015 14:05
PerlBackrefsのサンプルコード
str = <<-EOS
abc hoge abc
abc hige abc
abc hage abc
EOS
str.match(/(.*)(hoge)(.*)(hige)(.*)(hage)/m)
print "$1= #{$1}", "\n"
print "$2= #{$2}", "\n"
@tbpgr
tbpgr / parametarized_table.rb
Created July 20, 2013 12:04
RSPecでパラメタライズドテストをするために利用するモジュールとその利用例
# encoding: utf-8
module ParameterizedTable
def cases(case_table)
@cases = []
keys = get_keys(case_table.split("\n").first)
case_table.split("\n")[1..-1].each_with_index do |line, line_index|
words = get_values(keys, line)
words[:case_no] = line_index + 1
@cases << words
end