Archive

Author Archive

Obtain Certificate From Sun

November 30th, 2009

Today we went to the Sun’s Melbourne office on St Kilda road to present our SOVoIP project.

In front of SUN's house

In front of SUN's house

This is the first time I tried video conference. Arif gave a presentation on our project and we made a demonstration on the SOVoIP software.

On the presentation

On the presentation

The audience in the Melbourne side included Dr. Tao,  from the HPC team, Ashley and Nick, the manager of Melbourne office; on the other side facing the camera are Cristina and her staff from Brisbane office.

At the end of the presentation, people’s opinions focused on “how this system would be attractive comparing to other existing ones”. Yes indeed, business models sometimes are more important than the technical issues. Read more…

dairy

First Dip in Enterprise System

September 27th, 2009
its name is spaghetti monster, or enterprise system

its name is spaghetti monster, or enterprise system

This is a project I have done in RMIT University, which involves a lot of cooperation and interaction between multiple applications, which is so-called “Enterprise System”. The first part of the system is used to serve the University which relies on an old-fashioned system for student administration. As it usually happens in industry, requirements and/or values may change, so you should take this into account and design for flexibility. (This is an instruction in the project description, which is quite useful trying hard to figure out the blueprint.)

Another helpful tool when I was designing the restrictions in the data manipulation is thhe CRUD Management table Read more…

dairy

Sleep Manager — An App Based on JS

August 6th, 2009

This article will introduce an application called SleepManager with its story of birth, which is an Ajax-based web diary application. DWR will form the foundation of the server side of things, DB4O for the persistence tier, and some client-side DOM scripting and CSS will be used to make this application “pretty”, ExtJs will help us to do so.

Wanna try by yourself?
1. Source Code
2. War File (put it into Tomcat Server’s container)

1. The Idea.

The future applications seem to be more concerning on the individuals. Read more…

Web Apps , , ,

Make Gadgets for UI of Applications: Icon

July 1st, 2009

BorderDid you notice that web 2.0 apps use huge, shining icons in their interfaces? Quite straightforward and intuitive, aren’t they?

I find these very useful when I was designing the UI, they are helpful on give users an instruction and making the app stylish. Choosing the right .  Today I am going to make one. Read more…

UI design , , ,

Develope & deploy a simple web service

June 6th, 2009

In this article, a web service is created without IDE and is deployed into Glassfish server in the form of war file. The purpose of doing so is to gain more independence when deploying services.
Meanwhile, a client is built using NetBeans IDE’s benefits to achieve fast development. The client can be distributed and run on the computer equipped with JVM.

The files related to this article can be found in this zip file (all.zip).

Read more…

web service , , , , , ,

Hello world!

June 5th, 2009

Hi, this is Jin Li, welcome to my blog. In this blog, I will deliver some experience on programming and other interesting gadgets. Let me try my new plug-in for displaying codes.

  1. /* HelloWorld.java */
  2. public class HelloWorld {
  3.   public static void main(String arg[]) {
  4.      System.out.println("Hello, World!");
  5.   }
  6. }

dairy