- tomi (石塚富章)
- twitter @tomiacannodale
- gistでポジションペーパーかっこいいです。
- padrino-tutorialとかやってみてますがハマってます。
- rails guideをcucumber付きでやってみてますがハマってます。
Windom Guild のカードデータベースから以下の情報をcsv形式に落としこむ。
| *.png | |
| *.jpg | |
| .bundle | |
| vendor/bundle | |
| Gemfile.lock | |
| .DS_Store | |
| *~ |
| class ClassMacro | |
| class << self | |
| attr_reader :queries | |
| def attribute(name) | |
| attr_accessor name | |
| end | |
| end | |
| attr_accessor :queries |
| ;;; package --- Summary | |
| ;;; Commentary: | |
| ;;; Code: | |
| (require 'helm-ls-git) | |
| (defun helm-ls-git-find-file (arg) | |
| "Call `find-file' or `helm-ls-git'. | |
| If call on git project, call `heml-ls-git'. | |
| If call on git project and with ARG(\\[universal-argument]), call `find-file'. |
| # -*- coding: cp932 -*- | |
| # http://www.shoeisha.com/book/hp/pc/office/Outlook/files/text5.html | |
| # http://stackoverflow.com/questions/3295772/how-to-iterate-outlook-inbox-by-date-outlook-ole-automation | |
| # http://magazine.rubyist.net/?0007-Win32OLE | |
| require 'win32ole' | |
| ole = WIN32OLE::connect('Outlook.Application') | |
| class OC | |
| end |
| tap 'caskroom/cask' | |
| tap 'homebrew/brewdler' | |
| tap 'sanemat/font' | |
| brew 'ack' | |
| brew 'autoconf' | |
| brew 'automake' | |
| brew 'texinfo' | |
| brew 'bdw-gc' | |
| brew 'cairo' | |
| brew 'cloog' |
| require 'thread' | |
| require 'net/http' | |
| thread_size = 4 | |
| queue = Queue.new | |
| consumers = [] | |
| producer = Thread.start do | |
| params.each do |param| | |
| queue.push param |