Skip to content

Instantly share code, notes, and snippets.

View zonuexe's full-sized avatar
🤓
PHP is a Lisp. Emacs is Web.

USAMI Kenta zonuexe

🤓
PHP is a Lisp. Emacs is Web.
View GitHub Profile

ChangeLog を支える英語

ChangeLog を書く際によく使われる英語をまとめました。

ほとんど引用です。

基本形

# -*- coding : utf-8 -*-
font = "Migu 2M Regular"
Shoes.app(title: "BCDice") do
para("設定", font: font)
list_box :items => ['default']
button "この設定で保存" #{ }
button "この設定を削除" #{ }
para("\nサーバー名", font: font)
server = edit_line
para("\nポート番号", font: font)
@zonuexe
zonuexe / sangi.rb
Created September 26, 2012 11:59 — forked from atpons/sangi.rb
TMCIT Exam archives downaloder
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
# ++ TMCIT Exam Archives Downloader ++
# ++ I don't like regular expression. ++
# !! At your own risk !!
# License
# Copyright (c) 2012 atpons
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
@zonuexe
zonuexe / factorial.rb
Created January 30, 2012 04:16
Objective Programming Paradigm のサンプルコードをRubyで実装?
=begin
Class Factorial
# Fun: メンバ函数/メソッド定義?
Fun x
(* ! a b : 変数名 a に 値b が束縛される?
n 1 : 内部的にはリストの内部に連結されると想像
+ n 1 : + オブジェクトはレシーバのリストをパーズして加算した値を返す?
*)
! n + n 1
Print n