Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2012-06-26から1日間の記事一覧

書籍 Ruby Cookbook | 配列の最大値・最小値

パンくず Ruby Cookbook 配列の最大値・最小値 概要 配列の最大値・最小値 サンプル require "pp" class Person attr_accessor:name,:age def initialize(name,age) @name,@age=name,age end end puts [12,11,13].min puts [12,11,13].max puts ["hage","hog…

書籍 Ruby Cookbook | 配列のソート

パンくず Ruby Cookbook 配列のソート 概要 配列のソート サンプル require "pp" class Person attr_accessor:name,:age def initialize(name,age) @name,@age=name,age end end person_list = [Person.new("tanaka",23),Person.new("suzuki",30),Person.new…

書籍 Productive Programmer | 仕事にあわせてツールを選択する

パンくず 書籍 Productive Programmer 仕事にあわせてツールを選択する 概要 ツール選択の重要性について 自動化とツール プロジェクトにて自動化の需要が出た際、はじめは一度限りの利用や長期の利用想定がない場合でも 気づけばシステムの中核となる場合が…