Friday, December 28, 2007

need to do some more today

1 finish xml part II part III
2 jogging 8 miles or 1:30 minutes, setup 3X25; arm 8 minutes, leg 8 minutes; tennis 9:00am-10:am
3 find 2 papers on eraser coding and read 1;
4
5 "The broker" till page 65; "How to read a book" chapter 1

Thursday, December 27, 2007

The second day

1 finish xml part II
2 jogging 8 miles or 1:30 minutes, setup 3X25; arm 8 minutes, leg 8 minutes
3 find 2 papers on eraser coding and read 1;
4 go to water the garden
5 "The broker" till page 49; "How to read a book" chapter 1



1 did not finish (read a little)
2 did not finish
3 did not finish
4 did finish
5 did not finish (the brokier to Page37)

The reason for not finishing was a long call from Ms. Hu, a evening nap and then call my parents. I will do better tomorrow.

Wednesday, December 26, 2007

new start from today

1 finish java xml tutorial part 1 and 2
2 exercise setup 25X2
arm 8 minutes, leg 8 minuts
3 read how to read book 5 pages
4 find 2 papers on eraser coding
5 listen to "the broker" about 15 pages

Friday, October 12, 2007

Open online account and learn some basic knowledge

Learning about MM (money market)

A money market account is a type of savings account offered by banks and credit unions just like regular savings accounts. The difference is that they usually pay higher interest, have higher minimum balance requirements (sometimes $1000-$2500), and only allow three to six withdrawals per month. Another difference is that, similar to a checking account, many money market accounts will let you write up to three checks each month.

With bank accounts, the money in a money market account is insured by the Federal Deposit Insurance Corporation (FDIC), which means that even if the bank or credit union goes out of business (which is very rare) your money will still be there. The FDIC is an independent agency of the federal government that was created in 1933 because thousands of banks had failed in the 1920s and early 1930s. Not a single person has lost money in a bank or credit union that was insured by the FDIC since it began. With credit unions, the money in a money market account is insured by the National Credit Union Administration (NCUA), a federal agency.



Hard inquiry and soft one

The truth of the matter is, every single time that you apply for a credit card or inquire about any type of a loan or store credit, the information will show up on your credit report. This is called a "hard inquiry". Many times, people will apply for different kinds of credit while they are completely unaware that the inquiries are going against their credit score. It is actually too bad that this information is not given to these individuals up front so that better choices may be made.

Another common misunderstanding is that a requesting a copy of your credit report can actually hurt you. However, this type of an inquiry is called a "soft inquiry" and should never count against your credit score. If this kind of error ever shows up on your credit report and it is showing against you, it is very important that you go through the steps to resolve the error immediately.

Tuesday, October 2, 2007

从今天开始健康生活

1 准备好给父母的材料 (工作聘书,工资单,税表,银行存款证明--去银行开存款证明时候,顺便问问CD,另外问一下是不是可以拒付比自己checking account多的支票的cash。)
2 理发
3 研究,并开一个利率高的银行帐号

Wednesday, September 19, 2007

backup

Design:

Types (classes):
DigitalEntity, SIP, PrimaryDE extend DigitalEntity
Relation

DigitalEntity
Data members:
Boolean isParent (true if the DE is a parent, false otherwise)
File deFile (Digital Entity file that this DigitalEntity object represent)
FCLA_JAXPDOMParser parser;
String pid;
Set subordinateSet;
int sizeOfSet;


Methods:

public String getEntityType(FCLA_JAXDOMParser parser){}
public String getUsageType(FCLA_JAXDOMParser parser){}
public String getIngestID(FCLA_JAXDOMParser parser){}
public Set getIncludingList(FCLA_JAXDOMParser parser){}
//for PRIMARYTYPE_A only























1. createDESet(String dir) return deSet
In this step, method takes in digital_entities directory path as parameter, create a set of digital entity objects (DigitalEntity). The method calls to construct DigitalEntity instance for each file in the specified directory, within which primary type of each digital entity is roughly defined as A1, B, C1 and NONE. (by roughly we mean 1 if a DE has a non-null value of , it is a parent of some other DE but not necessary a primary of a set because it might be include in other DE as kid; 2 if begins with “dep”, it may fall into case a or case b, we can not tell without look into other Des of the same set with same ingest id.) The construction method of individual DigitalEntity also define isParent of the DE by looking at .
The method also creates sets of ingestIDs and includedPids. The set ingestIDs contains the unique (no duplicate) names (String) of ingest_id from those of primary type of C1. The set includedPids contains unique of those pids that appear in and of includes.
The method returns a set contain all DgitalEntity objects corresponding to all the files in digital_entities export directory of digitool.

2. createPrimarySet(Set deSet) return pSet
The method take the set of DEs, using the sets of ingestIDs and includedPids to determine the set of primary DEs by iterating each of the instance of the DEs.
First we create a HashMap of cSets to contain sets of type C1 DEs for each ingest_id.
Then we iterate each of the DE in the deSet and do the following:
• If the primary type of a DE is A1, check to see if the pid of the DE is contained in includedPids. If not, set its primary type to A and add it to pSet which is a set of primary DEs and remove it from deSet. If yes, set its primary type to NONE.
• If the primary type is B, put it to pSet and remove it from deSet.
• If the primary type is C1, check if is ingest_id is still contained in ingestIDs, if yes, create a set cSet containing the DE and add to cSets with its ingest_id, i.e., cSets.put(ingest_id, cSet), and remove the ingest_id from set ingestIDs; on the other hand, if ingest_id is not contained in the ingestIDs set, get the cSet of the specific ingest_id and add the DE to the set. For both cases, remove the DE from deSet upon done.

Next, we iterate the pSet containing both type A and B primary DEs, for each DE:
• As A, We include all the DEs (non-primary) referenced in this primary DE’s blocks where the value of is “includes” to its data member subordinateSet, wrapped by Relation, with relation property of “including”, remove from deSet upon finished, adjust the sizeOfSet. *We check to see if the non-primary DE is parent or not, if it is also a parent, add those children DE that the parent indicates in the blocks to the non-primary DE’s subordinateSet, remove these children from deSet and adjust the primary DE’s sizeOfSet. In The meanwhile, we also check to see either type(parent or not-a-parent) DE included has contain manifestation links that are not referenced in the primary DE by checking the primary DE’s including list. If the manifestation is not included in the list, we add the DE of the manifestation to the non-primary (also non-parent) DE’s subordinateSet wrapped by Relation (with property of “manifestation”) * The step (within *) recursively execute until all included DEs containing no parent.
• As B, we add all the DEs wrapped by Relation (with property of “manifestation”.) that are manifestations referenced by the primary DE to subordinateSet, adjust the sizeOfSet, remove the every DE from deSet when done. We check the manifestation list of the subordinate DE to see if there is any referenced manifestation not included in the primary DE’s manifestation list. If yes, add the DE wrapped with Relation to the non-primary DE’s subordinateSet, and remove it from deSet, adjust the sizeOfSet of the primary DE.

To treat the sets of C, we iterate cSets, let cSet be a set in cSets with key “key”, all the DEs in cSet has ingest_id==”key”. We mark the DE with “entity” if we find one and only one that has non-null entity_type, mark DE with “usage_type” if we find one and only one DE with usage_type of “WIEW-MAIN”, mark “zero” if we find one and only one with element in is “0”.
• If we have entity is not null (one DE in the set has been marked), we change the DE with the mark of “entity” to have primary type of A, and as above step to include the children DE to its subordinateSet and remove it from the cSet.
• Else if we have entity is null (no such DE) , and have “usage_type” not equal to null (some DE has been marked by usage_type), ), we change the DE with the mark of “entity” to have primary type of B, and as above step to include the children DE to its subordinateSet and remove it from the cSet.
• Else if we have both entity and usage_type equal to null, but zero is not, we change the DE with the mark of “entity” to have primary type of C and including all the rest of DE to its subordinateSet.
• Else, error.

Finally We combine each of the cSet in cSets to pSet.

3. aaaa

4. bbbb

Wednesday, August 22, 2007

8月22日的计划

今天上午把tooth crown完成了
1 注册和EEP申请
2 visa材料准备
3

Thursday, August 16, 2007

8月16号的目标

8月15号的目标:
1 开始找办护照从前的材料 【没进行】 0%
2 游泳1500yard,跑步3mile 【游泳,但是没有跑步】 50%
3 text transfer的小程序 50% 【没有完成,但是investigate了一下】 20%
4 写300字关于几种ereasure coding的比较 【没有】0%
5 抽烟3支以下 【3.5支】 80%

今天做得比较差,反复啊,但是不要失去信心

8月16号的目标:
1 开始找办护照从前的材料; 买个豆浆机
2 骑车上班; water walk 50分钟
3 text transfer的小程序 50%;写一页DT2FDA的spec
4 写300字关于几种ereasure coding的比较
5 抽烟3支以下

Wednesday, August 15, 2007

第三天了,前两天执行的不好,可能有的计划太大了

8月14号的目标:
1 到网上看看办B2我需要准备的材料,开始复印护照和签证等需要的材料 【找到要办的东西了】80%
2 游泳1500m,骑车上下班 【没有游泳,water walk 45分钟,骑车上下班】100%
3 cvs frontend, text transfer的小程序 50%, 查看D2Arch project的有关file 【没有开始】0%
4 搞懂怎么用IEEEtran的template,写300字关于几种ereasure coding的比较 【搞懂了template,但是还是没有开始写,今天不做犹豫了】40%
5 抽烟3支以下 【2支半,呵呵,真的】100%

8月15号的目标:
1 开始找办护照从前的材料
2 游泳1500yard,跑步3mile
3 text transfer的小程序 50%
4 写300字关于几种ereasure coding的比较
5 抽烟3支以下

Monday, August 13, 2007

8月14号的目标

8月13号目标:
1 去买decal,并把汽车和摩托车decal和register的小黄tag贴好【还没有贴摩托车】 80%
2 早上去游泳,了解west park的游泳池的情况 【1000m】100%
3 工作上要把8600 lap top安装好,可以cvs front end,可以java,可以看到lanshare和ndrive;开始写那个text transfer的小程序;找到关于software engineering的书,开始写specification。【基本安装好8600, 没有sync frontend, 没有开始写程序,找到SE的书,但是基本没看,没有看书写specification】70%
4 写300字关于几种ereasure coding的比较 0%
5 抽烟3支以下 【只抽了两支】 100%

8月14号的目标:
1 到网上看看办B2我需要准备的材料,开始复印护照和签证等需要的材料
2 游泳1500m,骑车上下班 【没有游泳,water walk 45分钟,骑车上下班】100%
3 cvs frontend, text transfer的小程序 50%, 查看D2Arch project的有关file
4 搞懂怎么用IEEEtran的template,写300字关于几种ereasure coding的比较
5 抽烟3支以下

从今天起,我要有目标地生活

每天5个目标,完成了就可以安心睡觉了。
有些目标本来应该是习惯,但是因为过去生活懒散,没有好的习惯,就暂时列为目标,等到习惯养成后,就不再是目标了。然后加入一些新的目标,直到把每天安排充实为止。
今天的目标是昨天在maguire swimming pool里water walking时候想的,包括这个每天5个目标的生活态度,看样子锻炼就是好,不但强健了身体,还可以在锻炼时候想一些怎么更好生活,学习,工作。我的目标要有锻炼,饮食,工作,学习,还有和不良习惯做斗争方面。另外还有一些平时不愿意去做,但是必须去做的事情。

8月13号目标:
1 去买decal,并把汽车和摩托车decal和register的小黄tag贴好
2 早上去游泳,了解west park的游泳池的情况
3 工作上要把8600 lap top安装好,可以cvs front end,可以java,可以看到lanshare和ndrive;开始写那个text transfer的小程序;找到关于software engineering的书,开始写specification。
4 写300字关于几种ereasure coding的比较
5 抽烟3支以下