Total: 4 hours
- <Group meeting> 2hours We discussed about the presentation structure. My part is ERD. So I think it is not so difficult. But I have to write down script. We reviewed ERD, it becomes good diagram, so now it is time to start developing database.
- <Research> 2hours I researched about chart. Actually I don't want to use ASP.net package, because if I use open source, I can reuse it another language, but I understand ASP.net is difficult that kids of things. So I need to use their package.
16 Oct 2010
Total: 5hours
- <Group meeting> 3hours We discussed about the presentation structure and invoice page image. We realized we don't know many things so we have to ask the client to get more information.
- <Research> 2hours I researched about chart and google mail. ASP.net is not flexible and not enough references. Anyway, today I feel tired, so I want to try to find tomorrow.
15 Oct 2010
Total: 6hours
This morning, we played some sports, which is good for our health.
- <Documentation> 1 hour I updated my blog and Journal. There are many documentations, which we have to do. We need more time to do project.
- <Sequence Diagram> 2.5 hours I created two sequence diagrams, after that we discussed and created more sequence diagrams. So maybe we will find more classes.
- <Group Meeting> 1 hour Today we have reviewed the UML diagram from our teacher. This time it is no problem, and we can start to prepare the presentation.
- <Coding for chart> 1.5 hour Today I still searched the coding for chart function. But I cannot find good resource, so I thought it is better to refer original Google page. Tomorrow, I want to do it.
14 Oct 2010
Total: 5hours
In the morning, I have done my work to develop flash contents. This week I don't have work instead of going to her office.
- <Coding for chart> 2hours I still try to find coding for the chart. First I try to make a flash application but it is easy to use google chart tool. So I want to develop using cart tool. And I found JSON format source code. The following source code is a result.
- <Group Meeting> 1hour We discuss about next presentation. This time we don't use power point slide. So it will become difficult for me.
- <Update Class Diagram> 2hours I tried to update class diagram. However, it is hard to imagine about the class. Therefore, I realized we had better to discuss sequence diagram, and then we also update the class diagram. This way is easy to find the class.
public class Customer
{
private int id;
private string name;
public int ID {
get { return id; }
set { id = value; }
}
public string Name {
get { return name; }
set { name = value; }
}
public Customer() { }
public Customer(int id, string name)
{
this.id=id;
this.name = name;
}
}
json.aspx.cs (C# behind code for .aspx file)
Customer myPerson = new Customer(1, "Pietschmann");
System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(myPerson.GetType());
MemoryStream ms = new MemoryStream();
serializer.WriteObject(ms, myPerson);
string json = Encoding.Default.GetString(ms.ToArray());
Label1.Text = myPerson.ID.ToString();
13 Oct 2010Total: 8hours
- <Research> 3hours I researched for Gmail API and Chart function. I found the library for Gmail, but I could not download here. The Wi-fi is very very strict. I think they have to consider about this problem. We requested many times, however this is never changed. Next, I try
- <Update UML Usecase> 3hours We discussed about Usecase diagram. Maybe we found the way of drawing. So, we will update description also.
- <Coding for chart> 2hours I search internet for the chart. I found the coding for converting to JSON format.
12 Oct 2010
Total: 8hours
- <Network documentation> 3hours We requested about improving network. After that, Teacher offered to think about configure Web Sever, which is running in ASP, PHP and JSP. So I started the documentation. The most big concern is security. I'm not sure, we can create secure web server.
- <Update Sitemap> 1hour I updated sitemap based on the page image. First, I finished the update sitemap, however before saving, data was gone. I learned the saving is very important.
- <Presentation> 2.5hours Today, we studied UML diagram. The teacher explained very well, so I understood finally. But we have to modify every UML diagrams.
- <Research> 1.5hour I researched Login status and Google mail API. I think about how to deal with mails more deaply.
11 Oct 2010
Total: 6hours
- <Group Meeting> 3hours I asked the project manager that I want to have a time to research and to improve my skill. I wondered I was selfish and I had too many requests, because he has also his plan. So next time, I wanted to reduce my comments.
- <Research> 3hours I got one more project, which is to develop web server for our project and client.This is good for us, but I don't know I took time or not. Anyway, I tried to do this project also.
No comments:
Post a Comment