Szu-Kai Hsu (brucehsu)

Results 14 issues of Szu-Kai Hsu (brucehsu)

目前官蝦預設的輸出名稱為UserPhrasesTC.cin,此處沿用慣例,要求使用者更名為liu.box --- This change is [](https://reviewable.io/reviews/chitsaou/rime-boshiamy/6)

feature

For example, `a!=10` would be parsed into `a!` only.

bug

Currently GobiesVM ends a transaction on `BC_GETLOCAL` and `BC_SEND` bytecode instructions. However, these two are too frequent therefore shrink transaction length. Shorter transactions do well when abort rate is high,...

feature

Example: ``` ruby Thread.new do lines = IO.readlines '../words_1.txt' cnt = {'cat'=>0, 'dog'=>0, 'cow'=>0, 'tiger'=>0, 'lion'=>0, 'wolf'=>0, 'fish'=>0} lines.each do |l| words = l.split(' ') words.each do |word| cnt[word] =...

defect

`if`, `if-else`, `until`, etc.

feature

Current implementation simply uses a internal golang map `map[RValue]*RObject` as a shortcut. However, the correct way of hash key-finding is to validate `RObject`s equality.

defect

Should as well be solution to method definition. May use a RProc structure for compiled bytecode storage.

feature

Introduction of exception is crucial for easier debugging due to much more comprehensive error descriptions. However under current circumstances, I think its priority should be lower than other basic features...

feature

Currently every object is internally a instance of certain `struct`. For example, a string is created as a `RString` instance, which distinguish itself from other `RString` instances. Thus no shared...

feature

After switching to Unicorn on my new project using rails 4.2.0 beta1, I found that I cannot access subdomain via `http://lvh.me`. With further investigation, the problem appears to be related...