Agile Samurai Dojo Gatheringにて角谷さんの「アジャイルソフトウェアの12の原則」の訳に対する熱い思いを受けた。
俺もやる!君もやれ、Fork me!!!
Our highest priority is to satisfy the customer through early and continuous delivery of valuable software.
顧客満足を最優先し、価値のあるソフトウェアを早く継続的に提供します。
| import multiprocessing | |
| def f(num, d): | |
| for i in range(100): | |
| d['%d:%d'%(num, i)] = 1 | |
| if __name__=='__main__': | |
| ps = [] | |
| m = multiprocessing.Manager() | |
| d = m.dict() |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Countdown Timer</title> | |
| <meta doctype='text/html' charset='utf-8' /> | |
| <style> | |
| body { | |
| background-color: gray; | |
| } |
| !contents -R2 -g -p -f -h | |
| see also | |
| * <FitLibraryWeb.SpiderFixture.DocuMentation.CommandUserGuide | |
| * <FitLibraryWeb.SpiderFixture.SpecifySpiderFixture | |
| ドライバ(ブラウザ)によって挙動が違うものもある。 | |
| URLを開く open url | |
| |''get url''|http://localhost:@{serverPort}/files/@{webDriver.driver}/test.html| |
| # coding: utf-8 | |
| class Sudoku(object): | |
| def __init__(self, initial): | |
| self.board = {} | |
| for col in range(9): | |
| for row in range(9): | |
| self.board[(col, row)] = initial[col][row] | |
| def member_of_row(self, row): |
Agile Samurai Dojo Gatheringにて角谷さんの「アジャイルソフトウェアの12の原則」の訳に対する熱い思いを受けた。
俺もやる!君もやれ、Fork me!!!
顧客満足を最優先し、価値のあるソフトウェアを早く継続的に提供します。