2009-08-03から1日間の記事一覧

prawn:Prawn::Graphics::Color#hex2rgb

まんま #!/usr/bin/env ruby require "prawn" p Prawn::Graphics::Color.hex2rgb("ff7808") で、 [255, 120, 8]

Commons Lang、StandardToStringStyle#setFieldSeparator

import org.apache.commons.lang.builder.StandardToStringStyle; public class C2009080300 { public static void main(String[] args) { StandardToStringStyle x = new StandardToStringStyle(); System.out.println(x.getFieldSeparator()); x.setFieldS…

Manual:Getting Started:Single Dictionary

まんま >>> from lepl import * >>> def combine(results): ... all = {} ... for result in results: ... all[result['name']] = result['phone'] ... return all ... >>> spaces = Space()[0:] >>> name = Word() > 'name' >>> phone = Integer() > 'phone…