ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| // Written in the D programming language. | |
| /** | |
| * High peformance downloader | |
| * | |
| * Implemented according to <a href="http://yusukebe.com/archives/20120229/072808.html">this implementation</a>. | |
| * | |
| * Example: | |
| * ----- | |
| * dmd -L-lcurl -run downloader.d |
| def index(id:String) = Action { | |
| getFirstData(id) | |
| } | |
| private def getFirstData(id:String) = { | |
| Cache.get(id) match { | |
| case Some(id2) => getSecondData(id2) | |
| case None => NotFound | |
| } | |
| } | |
| private def getSecondData(id2:String) = { |
| import math._ | |
| 1L // Long型の 1 | |
| 1:Long // Long型の 1 | |
| 127:Byte // Byte型の 127 | |
| 32767:Short // Short型の 32767 | |
| (1+2).toLong // Long型への変換 | |
| (2+3) toLong // Long型への変換 |
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| config.vm.box = "centos64_64" | |
| config.vm.define :web do |india| | |
| india.vm.host_name = "india" | |
| india.vm.network :hostonly, "192.168.50.12" |
| (function(){ | |
| var total = {}; | |
| var year = '2012'; | |
| var all = false; | |
| function init(num) { | |
| if(typeof num !== 'number') { | |
| num = 0; | |
| $('<div/>').css({ | |
| position: 'fixed', | |
| left: 0, |