leal

记录成长

1. 个人兴趣

coming soon

1.1. scripting

1.2. documentation

  • latex
  • wiki, I use moinmoin as the engine, and sometimes, use python package EditMoin to edit the moin pages with vim. It is a pure python implementation, and I made the following modification to make it works for me :)

   1 # original code commented out
   2 # self.datestamp = self._get_data(DATESTAMPRE, "datestamp")
   3 self.datestamp = ''

1.3. processing excel with python

1.3.1. read

xlrd从python.cn上看到的介绍,自己没有试过。

1.3.2. write

xlwriter I have ever used this package to generate the summary verification report, quite good to do the same kind of work like report auto-generation. It is also platform independent. The bad side is not very easy to control the format. Some sample code:

   1 import pyXLWriter as xl
   2 def report_autogen(filename):
   3     wbk = xl.Writer(filename)
   4     sumsheet = wbk.add_worksheet('Summary')
   5     wbk.close()
   6     return 0

1.4. xml and python

XML-RPC for distributed computation, functions will be defined in the server side, client side can call these functions via http POST with xml as the embeded content.

2. 技术类

   1 from myhdl import *

3. QA

4. 精品电子书

comment: This book is almost same as the IUS document UVM

{zh} [email protected] :)

<< <  2007 / 11 >  >>
Mon Tue Wed Thu Fri Sat Sun
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30    

CategoryHomepage