Groups | Search | Server Info | Login | Register
Groups > tw.bbs.comp.sources > #7
| From | YAMAGUTIseisei <seisei@hello.to> |
|---|---|
| Newsgroups | tw.bbs.comp.sources, ccsf.test |
| Subject | jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_4_0_1__1040810200.rb |
| Date | 2018-04-01 13:24 +0000 |
| Organization | RaymondKurzweil,KenSakamura,AlanKay,JohnHenryHolland,Ktkwt,YasuhikoYokote,JeanLouisGassee,MasamuneShirow,YoukoOno,LarryFlynt,rms |
| Message-ID | <5AC0DD87.5060605@hello.to> (permalink) |
| References | (30 earlier) <5954F13B.3030107@hello.to> <59892D82.4060203@hello.to> <59D0DC7D.8010704@x68k.net> <5A48DEAC.1030603@x68k.net> <5A76E605.8090801@hello.to> |
Cross-posted to 2 groups.
e
./build/mrbgems/mruby-process/src/process.c
357a
mrb_define_method(mrb, mrb->kernel_module, "usleep", mrb_ker_usleep, MRB_ARGS_REQ(1)); // kimushu/mruby-sleep
// mrb_define_method(mrb, mrb->kernel_module, "msleep", mrb_ker_msleep, MRB_ARGS_REQ(1)); // kimushu/mruby-sleep
.
191a
static mrb_value
mrb_ker_usleep(mrb_state *mrb, mrb_value self) // kimushu/mruby-sleep
{
mrb_int usecs;
mrb_get_args(mrb, "i", &usecs);
usleep(usecs);
return mrb_nil_value();
}
/*
static mrb_value
mrb_ker_msleep(mrb_state *mrb, mrb_value self) // kimushu/mruby-sleep usleep yobi
{
mrb_int msecs;
mrb_get_args(mrb, "i", &msecs);
// for (; msecs > 0; --msecs) {
// usleep(1000);
// }
// return mrb_nil_value();
// IIJ , Tomoyuki Sahara , YAMAGUTIseisei
time_t beg; // , end;
struct timeval tv;
beg = time(0);
tv.tv_sec = 0; // fuyou ?
tv.tv_usec = msecs;
if (0 > select(0, 0, 0, 0, &tv)) mrb_sys_fail(mrb,
"mrb_ker_msleep failed"
// "mrb_f_msleep failed"
);
return mrb_fixnum_value(time(0) - beg); // float ?
}
*/
.
mruby-meta-circular-heiretu/mrblib/irep.rb
53a
# >> 1 # monami-ya.mrb
.
30a
#class Kernel
# def const_get(k)
# super(k.size > 1 ? k : [[?r, :Array], [?u, :Numeric], [?i, :Fixnum], # q 3
# [?l, :Float], [?y, :Symbol], [?t, :String] # q 3
# ].assoc(k)[1]
# )
# end
#end
.
27c
# ?i == m ? self[0][0].index(k) : self[m.afl(k, ?i)] # q 2
## ?i != m ? self[m.__method__(k, ?i)] : self[0].index(self[0].assoc(k)) # q 2 # higokan mruby 70410200
?i != m ? self[m.afl( k, ?i)] : self[0].index(self[0].assoc(k)) # q 2
# ?i != m ? self[m.afl( k, ?i)] : loop {self[0].index(self[0].assoc(k) && break)} # self.index(idx) # fuguai taisaku # q 2
.
25c
def afl(k, m = self)
.
21c
# alias_method hgt
# def width
def hgt
.
11,13c
# def to_xeh
# self.to_i.to_s(0x10).reverse
# end
.
3,6c
# def to_i_from(k, i = 0) # unwork ? ( thread ? )
## self.is_a?(k) ? i + self.to_i : self # unwork ? ( thread ? )
## Class::k == self.class ? i + self.to_i : self # unwork ? ( thread ? )
# k.to_s == self.class.to_s ? i + self.to_i : self # unwork ? ( thread ? )
# end
def to_xeh
case self when Numeric then self.to_s(0x10).reverse else ?- end # q
# return ?- unless self.is_a?(Numeric) # q # ok
# self.to_s(0x10).reverse
.
1a
# gcc -Os
# class GC # monami-ya.mrb # http://www.monami-ya.jp/
# end
# def GC.start() end
# def GC.disable() end
.
mruby-meta-circular-heiretu/sample/jit-1.rb
1146c
end # fl.empty?
.
1144d
1141d
1139d
1129a
pco = rg['pc']
.
1128c
#### pco = rg.shift('pc')
rg['pc'] = rg['pc', 1]
.
1125c
# rg['pc', -1] += 1
.
1118c
# if [true][rg['thi']]
if ise.empty?
.
1115a
end
if fl.empty? # || ! ise.empty?
.
1102,1103c
# pc = @callinfo[@cp]
# rg['pc', -1] = @callinfo[@cp]
rg['pc', -1] = @callinfo[@cp] + 1
.
1089d
1084,1086d
1063c
rg['pc', -1] = 0 # -1
.
1055,1056c
# @callinfo[(@cp += 3) - 3, 3] = [rg['sp'], rg['pc'], irep]
@callinfo[(@cp += 3) - 3, 3] = [@sp, @pc, @irep]
.
1032d
1026c
rg['pc', -1] = rg['pc'] + imem.getarg_sbx(rg['cop']) # - 1
.
1015c
rg['pc', -1] = rg['pc'] + imem.getarg_sbx(rg['cop']) # - 1
.
1006c
rg['pc', -1] = rg['pc'] + imem.getarg_sbx(rg['cop']) # - 1
.
997a
# case sym.to_sym
.
990c
# if 0 == rg['ctr', 1]
if fl.empty?
rg['ctr', 1] = rg['ctr', 1].abs
.
985c
# rg.push('pc', rg['pc'])
rg.push('pc', rg['pc'] + 1)
.
983c
else
if fl.empty? || ! ise.empty?
.
976,981c
# if 0 <= rg['ctr', 1] && 0 == rg['thi']
if 0 <= rg['ctr', 1] && ! ise.empty?
# rg.push('pc', rg['pc']) ##
# rg.push('sp', rg['sp']) ##
# rg.push('pc', rg['pc', -1])
rg.push('pc', rg['pc', -1] + 1)
rg.push('sp', rg['sp', -1])
# rg['ctr', 1] += 1
end
# rg['ctr', 1] += 1 if 0 == rg['thi']
.
971,974c
# thi, th = iset(sym, cop, sp, pc, thi, th) ###
# ise ||= iset(rg)
# [true][rg['thi'] = ise.resume] && ise = nil ##
# [true][thi = (ise ||= iset(rg)).resume] && ise = nil ## # higokan ? mruby 70410200
# ise<< iset(rg) if 0 == rg['thi'] # p ##
# ise<< iset(rg) if ise.empty? # p
ise<< iset(rg) if 0 == fl.size + ise.size # p
# rg['thi'] = ise.resume ##
# ise.reject! { |fis| [true][fis.resume]}
ise.reject! { |fis| [true][rg['thi'] = fis.resume]}
.
968,969c
# if 'J' != rg['sym'][0] # higokan mruby 70410200
if ?J != rg['sym'].to_s[0] && ! [:ENTER, :SEND, :RETURN, :NOP].include?(rg['sym']) # q
# if ?J != sym = rg.shift('sym').to_s[0] && ! [:ENTER, :SEND, :RETURN, :NOP].include?(rg['sym']) # q
.
966c
# if flg[0] || 0 != rg['thi']
# if fl.empty? || 0 != rg['thi']
# if fl.empty? || ! ise.empty?
.
964c
# fl && (flg[0] = fl.resume) && fl = nil ##
fl[0] && fl[0].resume && fl = (fl[1 .. -1] || [])
.
962d
957d
954a
# fl ||= [fls(rg['pc'])][@flag[0] <=> 0] ##
# fl = fls(rg['pc']) ##
# fl += [[fls(rg['pc'])], []][@flag[0] <=> 0] ##
fl += [[fls(pco)], []][@flag[0] <=> 0] ##
end
.
951,953c
c, s = opf(irep, rg['pc'])
rg.push('cop', c)
rg.push('sym', s)
.
945,949c
# rg['ctr', 1] *= -1 # kakezan
# end
if 0 <= rg['ctr', 1]
# sp = @sp
@stack.sp(rg['sp'] = @sp) # + 0
# @stack.sp(rg.push('sp', @sp) # + 0
.
943c
# if 0 > rg['ctr', 1]
.
941c
# if flg[0]
if fl.empty?
.
936a
pco = rg['pc']
.
934a
fl = []
ise = []
.
932c
# flg = Array.new(@@rmth + 1) {true}
.
928c
i_th = lpl.afl('th', ?i) # q
.
890,891d
886c
elsif ht <= thi
.
882c
# if 0 != thi && ht <= thi then thi = -1 end
.
857c
# fv = fvl[-1].(oi); fvl.delete_at(-(((fvl.size <=> 1) << 1) - 1)) # c
fv = fvl[-1].(oi); fvl.delete_at(((1 <=> fvl.size) << 1) + 1) # c
.
855c
# when 'th' then fv = (fvl.delete_at(1) || fvl[0]).(oi) # c
.
844c
# (oi <=> ht = fv.hgt) + 1 >> 1]},
((ht = fv.hgt) <=> oi) >> 1]},
.
840,842d
838c
ht = 1
.
820d
816a
@@fls2 = nil
def fls(pc)
pc = ~ pc
# lpl = @pl
# i_th = lpl.afl('th', ?i) # q
# pl = lpl.pl_g(pc)
@@fls2 ||= fls2
Fiber.new {
Fiber.yield(false)
loop {
# flg, pl = fls2(pc, pl)
# Fiber.yield(flg)
# Fiber.yield(fls2(pc)) ####
Fiber.yield(@@fls2.resume(pc))
# Fiber.yield(flg.resume(pc))
0 > pc && pc = ~ pc
# pl[i_th] = lpl.pl_eg(pc, 'th')
}
}
end
.
811,812c
# Fiber.yield(flg.all?) ##
pc = Fiber.yield(flg.all?) ##
.
802d
798d
790a
if 0 > pc
pc = ~ pc
# s = Stack.new; sp = nil; plr = []
# i = @irep #.dup
sp = nil; plr = []
pr = nil
end
.
789c
# Fiber.new { ##
Fiber.new { |pc| ##
.
778,781c
# mx = sz - 1 + ap = ap - (ap >> 2) & 0x3f
# s.size < mx && mx = s.size
# (sz .. mx).each { |n| plr<< lm.(isr0, s[n])} # p c
plr += lm.(isr0, s[sz .. sz - 1 + ap = ap - (ap >> 2) & 0x3f]) # c
.
774d
760,761c
# lm = ->(isr0, r1) {r1 && imem.send(pr, *isr0, r1)} # l
lm = ->(isr0, r1) {imem.send(pr, *isr0, r1)} # l
.
756d
754d
752d
748d
745a
# s = []; sp = nil; plr = []
.
741c
# i_th = lpl.afl('th', ?i) # q
.
736,737c
# def fls2(pc) ##
# def fls(pc) ##
def fls2 ##
.
730,731c
# r = [r, r.map { |v| lpl.ckth(v, 1)}].map { |v| [v[0], v[-1]]}
# [pl[lpl.afl('sym', ?i)].to_sym, *r] # q
[pl[lpl.afl('sym', ?i)].to_sym, # q
*[r, r.map { |v| lpl.ckth(v, 1)}].map { |v| [v[0], v[-1]]}]
.
727c
r = pl[lpl.afl('th', ?i)] # q
.
700,701c
# @plb = @pla.dup.map { |a| a[1] = @pl.afl(a[1], ?i); a} # higokan ? mruby 70410200 # q
@@plb ||= @@pla.map { |a| [a[0], @pl.afl(a[1], ?i)]} # q
.
652,654d
607c
# [@s[a[0] + @p] = a[1]], @@m.unlock][0]
.
604c
# a = @s[@p + a[0].sgp] = a[1]
@s[a[0] + @p] = a[1]
.
597,598c
# [@s[a[0] + @p], @@m.unlock][0]
.
594c
# @s[@p + a[0].sgp]
@s[a[0] + @p]
.
588c
# @p
.
586a
@p = pt
.
584,585c
# a.empty? || @p = a[0]
.
581c
# def sp(*a)
def sp(pt)
.
555,558c
# fpl.reject!.with_index { |v, n| flg[n] = v.resume}
fpl.reject! { |fb| fb.resume}
# end
#### sl.slp
.
547,548c
# fpl<< plw(pc) if flg[0] # p
.
544,545c
# if flg[0].! || (apc.empty?.! && 0 <= pc = apc.shift)
.
539,540c
sl.slp
pc = ctr_g
# apc<< ctr_g if flg[0] # p
fpl<< plw(pc) if pc && 0 <= pc # p
.
537c
# flg = [true]
.
535c
# apc = []
.
525,526c
# ][0] && idx >= mx)
][0] && f2)
# f && idx -= (idx <=> mx) >> 1 ##
f && f2.! && idx += 1 ##
.
523d
520c
# pl_es(pc, ['th', th])
f2 = idx >= mx && pl_es(pc, ['th', th])
.
505,514c
mx = thn.hgt
# mx ||= thn.hgt
.
502c
# th = th[0 .. (mx = thn.hgt)] ####
.
497c
f = nil; mx = nil
# f2 = false
.
492c
# i_th = self.afl('th', ?i) # # higokan mruby 10410200 ( irep.rb ) # q
.
457d
444,451c
# while (0 == 1 & md) == a[(md & bf) >> 1]
## ((a[(md & bf) >> 1] ? 0 : 1) == 1 & md)
## ([true, false][1 & md] == a[(md & bf) >> 1])
# md >>= bfsz
### 0 == lf ? return(false) : (md &= bf if 0 == lf >> bfsz) # ? mruby 70410200
# 0 == md >> bfsz && break
# end.!.!
(0 == 1 & md) == a[(md & bf) >> 1]
.
441d
426c
# pl_es(0, ['ctr', [ctr]])
pl_es(0, ['ctr', ctr])
.
422c
# pl_eg('ctr')[0]
pl_eg('ctr')
.
418c
# [ctr = ctr_r, 0 <= ctr && ctr_s(-ctr)][0]
cta = pl_g(0).afl('ctr', self)
[cta.shift, pl_es(0, ['ctr', cta])][0]
.
408,415c
# def ref_pl0i; @@pl0i = pl_g(-1) end
# @@plmg = nil
# def to_ia(n, lpl = self)
# (@@plmg ||= ->(pi, pv) {pi.map { |v| [v, pv.shift]}}).( # l # c
# @@pl0i, 0 == n ? lpl[n][1] : lpl[n])
# end
.
404c
# ary.each_slice(2) { |k, v| pl[self.afl(k, ?i)] = v} # .shift(2) higokan mruby 70410200 # q
ary.each_slice(2) { |k, v| # .shift(2) higokan mruby 70410200
i_k = self.afl(k, ?i) # q
# 'ctr' == k && case v when Array then true end.! ? pl[i_k]<< v : pl[i_k] = v # p # higokan ? mruby 70410200
'ctr' == k && knid(v, :Array).! ? pl[i_k]<< v : pl[i_k] = v # p
## pl[i_k] = 'ctr' == k ? [v].flatten : v
}
.
402d
395c
pl_g(n).afl(k, self)
.
391c
# self[n] = 0 == n ? pl_g(-1).transpose[0].zip(pl) : pl # higokan mruby 70410200
self[n] = 0 == n ? (@@plmg ||= ->(pi, pv) {pi.map { |v| # l
# v[1] = pv.shift; v}}).(pl_g(-1), pl) : pl # c
[v[0], pv.shift]}}).(pl_g(-1), pl) : pl # c
.
389a
# (@@plmg ||= ->(pi, pv) {pi.map { |v| [v, pv.shift]}}).( # l # c
# @@pl0i, (0 == n && lpl = lpl[0]; lpl[n + (n <=> 0 & 1 ^ 1)]))
.
388a
@@plmg = nil
.
377,385d
374c
# unless knid(pl, :Array) then pl = @@plini end
pl ||= @@plini
.
370a
# (nil == @@fxnm) && @@fxnm = (Float == self.afl('Numeric')[0].class)
# (nil == @@fxnm) && @@fxnm = (Float == self.afl('sym')[0].class)
.
366,369c
# if 1 > n then pl = pl[idx0(n)] end
# if 1 > n
if 0 == n
pl = @@Pldv.(pl) # c
# (nil == @@fxnm) && @@fxnm = (Float == self.afl('ctr')[0].class
.
364c
# pl = self[@@Idx0.(n, 0)] # c
pl = self[@@idx0.(n, 0)] # c
.
362d
360a
.
358c
# @@Idx0 = ->(n = 0, t = 1) {n - ((n <=> t) >> 1)} # l
@@idx0 = nil
@@Pldv = ->(pl) {pl.map { |a| a[1]}} # l
.
322,323d
285c
# ref_pl0i
@@idx0 ||= ->(n = 0, t = 1) {n - ((n <=> t) >> 1)} # l
.
278,283c
# 3080410200 : 5x2 ok ( gc ) : monami-ya.mrb 8270410200 813e2af8 # http://www.monami-ya.jp/
# mruby 20410200 : higokan ? : ary_many
# mruby 70410200 : 4x2 ok , 5x2 ng
# self[0] = [['th', 'sym', 'ctr'], # mruby 20410200 : higokan ? : ary_many
# [[thini], 0, [-1]]] # mruby 70410200 : 4x2 ok , 5x2 ng
# self[0] = [pl0i, [[thini], 0, [-1]]]
# self[0] =
# [['th', [[thini]]], ['sym', [0]], ['ctr', []], ['Numeric', [0]]]
self[0] = [['th', [[thini]]], ['sym', [6309]], ['ctr', []]]
.
274c
# pl0i = ['th', 'sym', 'ctr']
.
265c
# 0.step(n) { |i|
0.step(@@rmth + 1) { |i|
.
263c
# n = RMTH + 1
.
258d
255c
# @@pl0i = nil
.
252a
@@rmth = RMTH
.
218,219c
# def method_missing(*a) self.send(?s + a[0].to_s, *a[1 .. -1]) end
def method_missing(*a)
a[0] = ?s + a[0].to_s
case a[4]
when Array then return a[4].map{ |v| v.nil? ? v : send(*a[0 .. 3], v)}
else send(*a)
end
end
.
116,122d
100,102c
(r - 1).times {usleep 0}; GC.start; r.times {usleep t} # g # conf.gem :github => 'kimushu/mruby-sleep' # msleep usleep
# (r - 1).times {msleep 0}; GC.start; r.times {msleep t} # g # usleep yobi
# (r - 1).times {sleep 0}; GC.start; r.times {sleep t} # g
.
96,98c
@@slp = 5 # conf.gem :github => 'kimushu/mruby-sleep' # msleep usleep
# @@slp = 0xbe # nanosleep()
# @@slp = 0.000005
.
86c
# def hgt # unwork ( thread ? ) # mrblib/
# def height # unwork ( thread ? ) # mrblib/
.
83c
# ?i != m ? self[m.afl(k, ?i)] : self[0][0].index(k) # self.index(idx) # q 2
?i != m ? self[m.afl(k, ?i)] : self[0].index(self[0].assoc(k)) # self.index(idx) # q 2
.
81c
def afl(k, m = self) # unwork ( thread ? ) # mrblib/
.
75a
module M__Range
def +(i = 1)
(i + self.first .. i + self.last - (self.exclude_end? ? 1 : 0))
end
end
class Range
include M__Range
end
.
62,64d
48d
33,44c
# case k.to_s[1] # .to_sym[1] # higokan mruby 70410200
# @@ks ||= (0 .. 9).to_a.join + ?- # * '' higokan mruby 70410200 # ?0.upto # higokan mruby 70410200 # 7221410200 6ccae658 suzukaze # q
.
27d
--
YAMAGUTIseisei ( str_h__namae = { :sei => "山口" , :mei => "青星" } )
http://hello.to/seisei/ mailto:seisei@.68..net tel:081-70-5152-1104
heiwa furiisekkusu 1tu
Back to tw.bbs.comp.sources | Previous | Next — Previous in thread | Next in thread | Find similar
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_7_0_6_3_0__0360710200.rb ( Was : Re: jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_6_0_7_0_7__7070610200.rb ) YAMAGUTIseisei <seisei@hello.to> - 2017-08-08 03:18 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_7_1_0_0_1__1001710200.rb YAMAGUTIseisei <seisei@x68k.net> - 2017-10-01 12:15 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_7_1_2_3_1__1321710200.rb YAMAGUTIseisei <seisei@x68k.net> - 2017-12-31 12:57 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_2_0_4__4020810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-02-04 10:52 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_4_0_1__1040810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-04-01 13:24 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_5_2_0__0250810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-05-20 12:21 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_7_0_1__1070810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-07-01 11:18 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_0_9_3_0__0390810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-09-30 11:48 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_8_1_2_1_6__6121810200.rb YAMAGUTIseisei <seisei@hello.to> - 2018-12-16 09:16 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_0_2_1_0__0120910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-02-10 13:16 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_0_3_1_7__7130910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-03-17 09:53 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_0_4_2_1__1240910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-04-21 10:40 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_0_6_0_9__9060910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-06-09 09:28 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_0_8_1_1__1180910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-08-12 10:10 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_1_0_2_7__7201910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-10-27 12:29 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_1_9_1_2_1_5__5121910200.rb YAMAGUTIseisei <seisei@hello.to> - 2019-12-15 12:24 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_0_0_2_1_6__6120020200.rb YAMAGUTIseisei <seisei@hello.to> - 2020-02-16 16:30 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_0_0_4_1_9__9140020200.rb YAMAGUTIseisei <seisei@hello.to> - 2020-04-19 16:59 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_0_0_7_0_5__5070020200.rb YAMAGUTIseisei <seisei@hello.to> - 2020-07-05 12:08 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_0_1_0_2_5__5201020200.rb YAMAGUTIseisei <seisei@hello.to> - 2020-10-25 11:16 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_1_0_1_1_0__0110120200.rb YAMAGUTIseisei <seisei@hello.to> - 2021-01-10 10:34 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_1_0_3_2_8_8230120200.rb YAMAGUTIseisei <seisei@hello.to> - 2021-03-28 15:48 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_1_0_4_2_4__4240120200.rb YAMAGUTIseisei <seisei@hello.to> - 2021-04-25 00:23 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_1_0_7_1_3__3170120200.rb YAMAGUTIseisei <seisei@hello.to> - 2021-07-13 12:15 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_1_1_0_0_8__8001120200.rb YAMAGUTIseisei <seisei@hello.to> - 2021-10-08 09:10 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_0_2_0_6__6020220200.rb YAMAGUTIseisei <seisei@hello.to> - 2022-02-06 15:29 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_0_3_0_6__6030220200.rb YAMAGUTIseisei <seisei@hello.to> - 2022-03-06 10:14 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_0_4_0_4__4040220200.rb YAMAGUTIseisei <seisei@hello.to> - 2022-04-04 15:20 +0000
Debug ? ( Was : jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_0_4_0_4__4040220200.rb ) YAMAGUTIseisei <seisei@hello.to> - 2022-04-24 08:27 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_0_6_2_6__6260220200.rb YAMAGUTIseisei <seisei@hello.to> - 2022-06-26 14:52 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_2_1_0_1_7__7101220200.rb YAMAGUTIseisei <seisei@hello.to> - 2022-10-17 22:10 +0000
jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_3_0_6_1_7__7160320200.rb "YAMAGUTIseisei(MasinZenmetu)" <seisei@hello.to> - 2024-01-07 14:44 +0000
DoNotOpen:SJIS : Re : jit-1_-_github__ysei~mruby-meta-circular-heiretu_-_nightly_-_2_0_2_0_0_7_0_5__5070020200.rb YAMAGUTIseisei <seisei@hello.to> - 2020-07-12 14:55 +0000
csiph-web