Systems Thoughts

关于IT,技术,互联网及其他,一个人在瑞典

Archive for March, 2008

转载原创文章请注明,转载自:Systems Thoughts
[http://www.systemsthoughts.com/blog]


济南名吃有很多,其中有个叫大米干饭把子大肉。饭如其名,要非常干,然后交上肉汤,加上两块五花肉,几块豆腐,一个丸子,一个酱鸡蛋~~哇靠,简直是人间美味。

说了这么多,今天我终于吃上了,想来估计有1年多没吃了~~以前都是老爸带我去四喜居吃的,唉,等下次去扫墓一定给老爸梢上点。以前不觉得,老爸在我身上还是留下很多的烙印的。比如喜欢吃炖的东西,把子肉,还有很多很多小细节。回忆说完了,上图片:

bazirou.JPG

Comments (6) Posted on Saturday, March 8th, 2008

转载原创文章请注明,转载自:Systems Thoughts
[http://www.systemsthoughts.com/blog]

今天看了读《邓颖超日记》。果然,毛和周的关系像我想像中的一样。周和毛一直是两个被神化的人。但是现在我明白了所有玩政治的人都是一个样子。还有这篇瞎子与聋子的对话。都加强了我读外国人写的中国近代史的兴趣。既然在国外,为什么不好好利用这条件,多看些不同于以往洗脑资料的东西?

以前曾经和人争论过关于真相的问题。当然两个朋友为政治问题争论的不欢而散有点可笑(想想5-4时这种事情好像很常见?)。

首先,我不能回到过去,不能了解到真正的历史。但是我肯定在国内学到的东西不全部是真实的。我所做的就只能是多读点不同观点的书,争取在自己脑子里产生一个客观的判断。所以我不知道我读的是不是真相,但是多读肯定有助于我了解真相。

其次,真相没用。确实没用。了解了,明白了,但是什么也改变不了,还是得受管制,过老生活。但是至少,心理明白是怎么回事,知道外边那层皮下边是啥。这样恐怕就比以前主动了些吧。做判断时也会多些想法。

可是一边坚持自己受的教育是正确的,一方面又不敢接触其他的想法。却是很可笑的。如果是真的干吗经不起考验?如果是真的就拿出来“溜溜”。

Comments (3) Posted on Saturday, March 8th, 2008

转载原创文章请注明,转载自:Systems Thoughts
[http://www.systemsthoughts.com/blog]

同样是伟人的后代,差距咋就这么大捏。足可见大陆与台湾对待名人和教育方式的不同。点击越读:

一份提案和博客的思考

从网上搜出一个女人写的两家族后人介绍,也放这里吧。

毛泽东与蒋介石的后人们

顺便把小宇宇的墨宝放上,避避邪~~

Comments (0) Posted on Friday, March 7th, 2008

转载原创文章请注明,转载自:Systems Thoughts
[http://www.systemsthoughts.com/blog]

This is a log for my thesis study on Stochastic Pi-Calculus Machine (SPiM).

One thing that disturbs me a lot is there is no global variable in  SPiM. My method is to define a process that broadcast a value on some global channel all the time, so any other processes can inquire this value by simply monitor the output on this channel. Another process can be used to modify this global value by sending a specific parameter on that broadcast process to trigger the switch inside.

My experimental codes:


(* Global Value *)
directive sample 1000.0 1000
directive plot A();B()

new pressure@1.0:chan(float)
new keep@1.0:chan(float)
new change_keep@1.0:chan(float)
val step = 1.0
val re1=1.0
val re2=0.1

let A() = (
do delay@re1; (B()|Press(step))
or ?keep(n); delay@re1/n; (B()|Press(step))
)

and B() = (
delay@re2; (A()|Press((-1.0)*step))
)

and Press(p:float) = (
?keep(current_p);!change_keep(current_p+p)
)

and keeper(n:float) = (
if n > 0.0
then
(do !keep(n);keeper(n)
or ?change_keep(current_p);keeper(current_p)
)
else
keeper(1.0)
)

run (100 of A()|50 of B()|keeper(1.0))

process_on_pressure.JPG

The only problem for now is some processes seemed missing, therefore could not provide a control over the A()  production based on pressure changes… Still working on it…

Comments (0) Posted on Wednesday, March 5th, 2008
Filed under Update

转载原创文章请注明,转载自:Systems Thoughts
[http://www.systemsthoughts.com/blog]

忘了说了,域名改成http://blog.systemsthoughts.com了,在feedbuner的种子也更新了,请大家更新~

Comments (0) Posted on Tuesday, March 4th, 2008