Home
View our life changes [entries|archive|friends|userinfo]

[ userinfo | livejournal userinfo ]
[ archive | journal archive ]

Links
[Links:| Office Site Office Site Office Site Google News ]
[-Friends-| A Nagappanal Yang Jing HuaHua cyndi ]
[-Tools-| Test Tool -- Borland Test Tool -- LDTP ]

Delete your IE data from command line [Sep. 6th, 2007|12:41 pm]
http://www.howtogeek.com/howto/windows/clear-ie7-browsing-history-from-the-command-line/

Good command line way to delet some data from IE:
>>>>>>>>>>>>>>>>>>>>>>
Temporary Internet Files

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

Cookies

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

History

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1

Form Data

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

Passwords

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

Delete All

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

Delete All - "Also delete files and settings stored by add-ons"

RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
<<<<<<<<<<<<<<<<<<<<
Link1 comment|Leave a comment

Long time no see here. [Sep. 4th, 2007|10:29 am]
Hello everyone,

we are here are for long long time lost even we are connecting at office every day, I'm happy to get this first jouranl to put right here.

I'm now testing some other FAs with pdk or sdk in our project instead of automatic testing but I hope I can start that again since it's my favorite job.

Happy knowing one of my classmates joined a big firm which in medical industrial. Get a big bomb for her !


Cos this site were blocked by our goverment for a long time, however, I'll insists on putting all thing together as I can !


Best,
Link1 comment|Leave a comment

关于腹式呼吸的一点看法. [Mar. 13th, 2007|09:55 am]
[Tags|]

==== 为了息事, 用简单的语句随便说说了, 聊以慰藉 ====

言吐纳乃嘘吸知道, 人为活物, 非止, 调形神待之方得安宁.

然修年余不得道, 期闻腹式及胎息, 似均谓肺为废物, 惑也. 作罢.

谓腹式, 时感动静有别, 如太极, 发力时若常人, 必吐气鼓腹--逆也;
寻常坐卧, 肺少动, 吸鼓均顺, 故为顺式.

吾不及古人, 胎息奢.

辽国浩, 多家言, 尔又分你我. 憾也!
LinkLeave a comment

FW: Fix a bug which you can not saw the online status of one of added your friend. [Jan. 17th, 2007|01:57 pm]
Sees this page for referring:
    re-xyz-is-not-in-your

I encountered this same problem with MSN 8.0, follows above page, I delete the following key(rename suggesting)

Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger\Policies]

Then login again, add the appeared "off-line" friend again, see he there.


New Tool Curl Intro:


curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, FILE and LDAP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, proxy tunneling and a busload of other...

It seems this tool is so useful for daily work which through the network.
LinkLeave a comment

Template for Result [Dec. 20th, 2006|01:58 pm]








Automation result on Build: build_number






Summary:


  Number Percent(%)
Pass
pass_number
pass_percent
Fail
fail_number
fail_percent
Total
total_number
total_percent



Machine: local_name

Started: started_time

Elapsed: elapsed_time







+

category_name




    +

    testcase_id - testcase_name
    testcase_status


      This is a debug info

      This is a warning info

      This is a error info





    +

    testcase_id2 - testcase_name
    testcase_status


      This is a debug info

      This is a warning info

      This is a error info









LinkLeave a comment

Automation result on Build [Dec. 19th, 2006|01:41 pm]
                        Automation result on Build: xx

Summary:

            Number    Percent
Pass        90          90%
Fail          10          10%
Total        100        100%

Machine: local
Started:        01:34:05 PM on 19-Dec-2006
Elapsed:        0:22:24

Button for expanding and collapsing the log info
Expand All        Collapse all

+For Memo Cases
        +TestCase 10000 – Delete an exists memo – PASS
        +TestCase 10001 – Create Memo – PASS

+For Contacts Cases
        +TestCase 10002 – Delete an exists contact  – PASS
        +TestCase 10003 – Create contact – PASS
        - TestCase 10004 – Edit Contact - FAIL
                0:00 Create a new contact
                0:04 Edit contact
                0:07 Click button “btnNew” failed      locate file
Link2 comments|Leave a comment

Need a tool to convert dll to lib? [Nov. 17th, 2006|02:41 pm]
[Tags|]

Here a sample way to create lib file for ollydbg ...
==============Copy Contents ====================
""" Usage
Copies those files from VC first:
    DUMPBIN.EXE
    LIB.EXE
    LINK.EXE
    MSPDB60.DLL(your symbol version)

Use following command to get the lib file for debug
    python dlltolib.py xxx.dll
"""

import sys, os, re

if len(sys.argv) < 2:
    print "** Plz spcecifies a dll file"
    sys.exit()

cwdpath = os.getcwd()
os.chdir(cwdpath)

dllfile = sys.argv.pop()
deffile = dllfile[0:-3] + 'def'
print '** Will create %s, %s after done, del manually' % (dllfile, deffile)

#dumpbin.exe /exports /out:g:\tool\ws2_32.def  ws2_32.dll
dumpcom = r'dumpbin.exe '
param = r'/exports /out:%s %s' % (deffile, dllfile)
print '** Begin to dump dll to def'
print dumpcom + param
os.system(dumpcom + param)
print '** Dump dll file to def file Done'

opendef = file(deffile, 'r')
startsign = re.compile(r'^\s*ordinal\s+hint\s+RVA\s+name', re.IGNORECASE)
endsign = re.compile(r'^\s*Summary\s*$', re.IGNORECASE)
fromflag = True # flag for checking whether has found function table
tempfunc = []

# read the fucntion from orignal def
exportfunc = opendef.readlines()
for line in exportfunc:
    if fromflag:
        if startsign.search(line):
            fromflag = False
    else:
        if endsign.search(line):
            break
        tempfunc.append(line.replace('\n', ''))

exportfunc = tempfunc[1:-1]
opendef.close()

# then produce to what I want to define def file
writefile = file(deffile, 'w')
heard = 'LIBRARY "%s"\n\n' % dllfile
section = 'EXPORTS\n'
# exportfunc[1] = '        22  73 00010BDE shutdown'
funcs = []
funcs.append(heard)
funcs.append(section)
for line in exportfunc:
    func = line.split()
    funcs.append('\t' + func[-1] + '  @' + func[0] + '\n')

writefile.writelines(funcs)
writefile.close()

libcmd = r'lib.exe '
param = r'/MACHINE:IX86 /def:%s' % deffile
print '** Begin to create lib file'
os.system(libcmd + param)
print '** Generate lib file for %s done' % dllfile
=========================================
LinkLeave a comment

打工的处境之一 [Nov. 16th, 2006|08:57 am]
[Tags|]

今天下雨了, 有1.5个月没这样了!

今年听到较多的词是关于"民工", "老百姓"什么的, 呵呵...

曾经听过南京零距离的孟非说到他们的性生活也许只有每年一次回家过年才有的感觉是何等凄凉啊.

而实际上, 还有比这个更悲凉的事情呢!

上周末外婆半夜在家吐血了, 借这个机会, 我妈和几个姨娘们都赶回家看望了, 包括几年都没有回去的.
(我也是前年和家人到外公家的(已经有十个年没有见面了!).)这让外公外婆欣慰了好多啊!

虽然结果是在抚州的一家医院没有查出到底是为什么(结果是做了一大堆的)!

Check who deleted me in MSN
LinkLeave a comment

交流中方言的存在引起的一个笑话 [Nov. 13th, 2006|09:02 am]
上周五的笑话(听自妈的转述):)

带萌萌到儿童医院7楼去拿化验报告知道铅含量超标了 :(, 拿报告的时候医生基本上什么都没有说(不要吃膨化食品?)...唉, 可敬医生的责任心啊!
在7楼停留的时候, 有一个听口音大概是从高淳(那里的方言, 我是听不懂一句)来的妇女和母亲带儿子过来咨询,
病情是小孩都2周岁了,怎么还不开口说话, 描述小孩的症状是只有看见大人张嘴才有反映(估计是听力有些问题吧.),
结果问了其中的一个医生, 说小孩怎么还没有说话呢?
那想那个医生的回答着实让人吃惊,原句差不多是这样的:)
  -- 你们大人(指小孩的父母)讲的话我们(指医生)都不好懂, 你怎么让小孩听懂, 怎么让他说话啊!!

真强! 她的意思是说, 感情这小孩从娘肚里就得明确, 要说话啊, 得区分方言和普通话的?
还有难道这小孩的智力和这医生差不多, 要听懂母亲的话, 首先得让医生能听懂!
  -- 哈哈哈哈 ...

聊以慰藉!!
LinkLeave a comment

Way to get the dynamic domain of any sites [Nov. 10th, 2006|12:50 pm]
[Tags|]

In our country, we may not access some of websites which contains some of sensitive things.

so, in no proxy environ, I find a new way to get rid of this situation.

open your search-engineer, like Go0ogle, Baidu, and other, types the keyword

'nslookup https' as reference, you'll find the site which starts https protocol, I mean
this site should encrypt the data of transmission with your asking.

so, you can get the some of site IP which generates in dynamic, like:

^$#do(*)ng(not space)t[*]ai(not space)w'*'ang=-=-=3w(dot)ultra(not space)reach(dot)net.

I'll find the good site for downloading the proxy-ssl tool or accessing  directly throughout above.

Good Luck for your surfer.
LinkLeave a comment

我出生的地方 :) [Nov. 8th, 2006|07:32 pm]
不是google 的 earth 工具, 我都不能想象我出生的地方是怎样的地貌

图中JinXi是我标的县, Xiugu是地图(我发誓我在得证之前看到过这几个字母上十边, 始终没有和
我上过小学的名字联系到一起!!)上有的.

四周都是包围着的山, 都不知道那些曾留下我的小脚丫子印啊...
...
LinkLeave a comment

Connecting Network with SSL Proxy-Server [Nov. 2nd, 2006|02:10 pm]
[Tags|]

Set up the following steps to use some of applications (Gaim) under the http-ssl protocol in Ubuntu.

it 's so easy.

1. # aptitude install stunnel ssl

2. # stunnel -c -d (local-port) -r (remote-addr:port)

3. Via gnome menu -> System -> Preferences -> Network Proxy
    setting the proxy parameter in Proxy Configuration:
Check the 'Manual proxy configuration', and set both 'Http proxy' the Secure HTTP proxy' to
    127.0.0.1 : (local-port)

4. Rerun you Gaim, so all of message of IM should be encrypted.

Note:
  stunnel should been running under the root permit.

Any question is appreciate!
Link4 comments|Leave a comment

关于医疗保障的一点想法 [Nov. 2nd, 2006|08:50 am]
[Tags|]

====

现在看病难, 难在医费超出我们的支付力.

而对于大多数人而言, 拖延看病的时间也就突出显示出来, 这样势必造成病情异化.

目前的医疗保障通常的只是在发生大的医疗事故(除了身故外)给与一些补偿, 平时的费用仍然是自己出.

然而面对突发性的大病, 我们能面对的是什么呢?

如何提高(提早)我们看病的意识呢?

年龄能否与补贴的系数(越长就越补偿越多)成为一定的正比呢?

拯待完善!!

====
LinkLeave a comment

昨晚的一出虚惊 [Oct. 25th, 2006|04:03 pm]
上个月隔壁家放在家里的手机夜里被小偷拿了去(应该是夜里忘了关门).
比起去年小偷用小长棍子通过窗户够我家的衣物"挪用"200元钱--
价值是大了.
安全是...

昨晚my darling说有笔存款到期了, 正庆喜着说一笔意外之财呢...
谁想一找折子发现不在...

我从被窝爬起把床底都找了...

我们反复询问/落实这之前的几次见过折子的情形--无果!

最后她从桌子上一个招行宣传袋里找到了--*临时*放的.

我问她紧张不, 她说没有...
  ** 同时说在找到前的一刹那, 她意识到在!

我是紧张了的--年初就要急用啊!
LinkLeave a comment

我听"十年"的感觉 [Oct. 25th, 2006|03:06 pm]
初中的时候我也有写日记的感受, 有时候是对身边女孩的抒慨, 有时候是愤懑的吐述, 有时候是学习的讽刺...

......
......

有些人总无法永远存活在生活的视线里面--我的经历是我一个同乡的女孩了, 在我高中她就不知缘何匆匆"厌倦"了过活.

作为人, 她嫁人了, 应该已经给那个人生了后代吧.
作为人, 在赶集会算是热闹的日子选择做出人生最大的一件事(死亡).
作为人, 这是我记忆里面没有的范例, 同龄的人啊.

这些是农村的特色?

我...

想起来就是上半年发生的, 谁的外公和他舅舅, 我到底还是不清楚他们之间如何了, 从妈那里得知, 外公喝农药了...
--万幸的是被及时发现了把命捡回来了. 要知道那个地方是大山里啊, 做核试验兴许外界的人都不会知道有什么样的事发生.

当然, 对于农村里的人一时想不开喝农药的, 我坦诚, 太平常了.
毕竟, 那里的人所知道如何发泄自己的愤怒, 为了啥的途径不多.

愿活着的人感恩活着的幸运吧...
LinkLeave a comment

电影解读 -- 网站的建立 [Oct. 20th, 2006|08:40 am]
昨天看完了"宝贝计划", 今晨路上想到一个镜头--
当时人字拖怀里兜着那个宝贝匆匆下楼, 正碰上三妹搀扶着刚中风的老爸上楼.
人字拖百感交集, 伏在老爸的肩上不能言语, 而另一个镜头特写出那个宝贝触摸着
老爸中风的指头, 老爸并不知晓这个是谁的指头, 也许在他的心灵, 他早已原谅了这个
好赌成性的儿子(不能期望过高)...

突然想到应该可以建立一个电影解读的这样一个网站, 由网民自由撰写,倒也是一个不错的资源共享.


Looong time no wrote anything about happened thing, we are meeting a big problem in life...
......
......

Hope anything will OK.
LinkLeave a comment

Dream Transmigration [Sep. 26th, 2006|08:38 am]
I have to talk about the recently dream again.

Unfortunately, I killed 2 men in dream yesterday by hammer, and I also carelessly harmed the child's eye with tree-branch
After woke, I got a situation I did not face the life if there were exists.

I had no idea why I dreamed those dreams and why I will, I owe the live track which bring to me.

......
......
LinkLeave a comment

关于修养的一点埋怨 [Sep. 25th, 2006|08:23 pm]
前天和老妈拌嘴了, 我埋怨那天老妈教训小孩子的方式.

其实我根本没有资格去说的, 我就是老妈养活大的.
另外小孩是我的侄子, 不是我的小孩.
再其次, 我过于意气用事了.

当我在逃避责骂离开屋子的路上, 我又在安慰自己了
  -- 修养不是一辈子能做到的, 这个需要几代人的努力.

我的意思是说,即便你加强了这方面的修养, 然而这个付出是为巨大, 通常一般人做不到的.
LinkLeave a comment

做梦 [Sep. 22nd, 2006|08:11 pm]
做梦为动词往往是贬义词.
做梦作为名词却是今年来我常做的事情了.

还胆寒昨夜里梦见杀人并亡命天涯的苦境. 梦里已经可以联系到上次杀人是什么情况了, 真好害怕!
上学的时候到也是杀过人在梦里--杀过日本鬼子, 第一次不是为了正义之战的梦大概是上大学的时候吧.
一口气杀了5个, 相当的残忍.
可在2,3年前的梦做的实在是少, 基本上我很满意自己的睡眠质量的.可现在, 是我困惑的时候啊.

上学期间曾练习过静坐, 就是容易做着打盹的那种, 还记忆忧新的是秋雨冬寒出外游荡的身影,
然而现在是没有了, 都市里缺少的就是一个静谧的环境--对于穷人来说.

什么"日有所思, 夜有所梦", 我白天想杀人?
什么"内外部刺激的影响", 我白天看到杀人?

这倒是让我想起来幼时在外婆家曾看过一场枪杀--那是枪毙犯人--重要的是, 对于我而言,
除了知道枪声响了之后人会死, 其它的仍处于发育阶段.

当然, 做梦对于健康的影响, 个人倒没有受到什么客观上的影响, 只是心理上认为做梦会降低睡眠质量吧.
于杀人梦醒时分后, 倒是庆幸生活如此没有. 可以再拥人(老婆)入睡 :)

希望少做梦, 因为我想清静些更好...
LinkLeave a comment

No Title [Sep. 20th, 2006|09:33 am]
/*********************************************************/
究竟什么是散裂中子源?——质子通过大型加速器获得高能量后,轰击重金属靶,将重金属的原子核打碎发生散裂,从而将中子从原子核内赶出来,每个高能量的质子可以赶出20到30个中子,瞬间就会形成非常强的中子束流,中子慢化后与样品发生散射,由中子散射谱仪接收。科研人员则利用中子谱仪研究样品最本质的结构细节和动力学性质。

“中子的特性决定了它是研究物质微观结构的理想探针。比如,中子波长与物质中原子间距相近,是度量物质微观结构最适合的标尺;比如,中子穿透性极强,使得它在多种极端条件下探测样品都成为可能;比如,中子的固有磁矩是揭示材料微观磁结构和磁涨落的强有力手段……”
涡轮
/*********************************************************/
涡轮增压简称Turbo,如果在轿车尾部看到Turbo或者T,即表明该车采用的发动机是涡轮增压发动机。
  涡轮增压器实际上是一种空气压缩机,通过压缩空气来增加进气量。它是利用发动机排出的废气惯性冲力来推动涡轮室内的涡轮,涡轮又带动同轴的叶轮,叶轮压送由空气滤清器管道送来的空气,使之增压进入气缸。当发动机转速增快,废气排出速度与祸轮转速也同步增快,叶轮就压缩更多的空气进入气缸,空气的压力和密度增大可以燃烧更多的燃料,相应增加燃料量就可以增加发动机的输出功率。
涡轮增压器的最大优点是能在不加大发动机排量就能较大幅度地提高发动机的功率及扭力,一般而言,加装增压器后的发动机的功率及扭矩要增大20%—30%。涡轮增压器的缺点是滞后,即由于叶轮的惯性作用对油门骤时变化反应迟缓,使发动机延迟增加或减少输出功率,这对于要突然加速或超车的汽车而言,瞬间会有点提不上劲的感觉。
/*********************************************************/
小知识
  音速:音速约为每秒钟340米。马赫:超高速单位,物体运动的速度与音速的比值为马赫或马赫数。亚音速:速度小于1马赫。超音速:速度在1至5马赫间。高超音速:速度在5马赫以上。
ie.X-43A从火箭中分离出来,依靠自身的超音速燃烧冲压发动机工作了大约10秒钟,最高时速达到8000公里,相当于7马赫.

高超音速飞机采用的是超音速燃烧冲压发动机,它类属于冲压发动机。冲压发动机的原理由法国人雷恩?洛兰于1913年提出,1939年首次被德国用于V-1飞弹上。冲压发动机由进气道、燃烧室、推进喷管三部分组成,它比涡轮喷气发动机简单得多。冲压是利用迎面气流进入发动机后减速、提高静压的过程。该过程不需要高速旋转的、复杂的压气机。高速气流经扩张减速,气压和温度升高后,进入燃烧室与燃油混合燃烧,温度为2000—2200℃,甚至更高,经膨胀加速,由喷口高速排出,产生推力。
其中眼下正在研发的水下侦察系统更是潜艇的克星。据说该系统通过观察海水温度以及潜艇排出气体的变化,就能断定海洋里有没有潜艇,是何种潜艇。
LinkLeave a comment

navigation
[ viewing | most recent entries ]
[ go | earlier ]

Advertisement