hi everyone, I had uploaded my final report and website on server, please have a look and give me some feedback.
For my website, it is look very simple but I much focus on writing HTML and JavaScript rather than server side language.
For my final report, I revised the learning proposal, micro/macro analysis and system plan, but also add in some new section like reflection and do some modification based on other student feedback.
Good luck for all of you and see you all tomorrow for our last class.
Thanks
Monday, June 7, 2010
Tuesday, May 18, 2010
Progress of my personal website
hi all, I had finished the javascript and php part of my personal website.
In my personal website, I using the JavaScript to create a slideshow of my images. The Php is using to storing the email address of visitors. Once any visitor gives his email address to me, the address will store into a mailing list, if I have any update of my personal website, I will send an email to inform to them.
For my JavaScript, I had created an external javascript file in different folder, but to display the images on my personal website, I also need to use some internal javascript code in my html file.
In my personal website, I using the JavaScript to create a slideshow of my images. The Php is using to storing the email address of visitors. Once any visitor gives his email address to me, the address will store into a mailing list, if I have any update of my personal website, I will send an email to inform to them.
For my JavaScript, I had created an external javascript file in different folder, but to display the images on my personal website, I also need to use some internal javascript code in my html file.
Saturday, May 8, 2010
System Plan
hi all, I already uploaded my system plan on FIT web server, please have a look and give me some comments. Thanks
http://www-student.it.uts.edu.au/~xiaoxzha/System%20Plan/System%20Plan.html
http://www-student.it.uts.edu.au/~xiaoxzha/System%20Plan/System%20Plan.html
Friday, May 7, 2010
About me personal website
hi all, I already upload my personal website on FIT server, but I'm still keep going to do it. So you guys can go to have a look and give me some comments.
http://www-student.it.uts.edu.au/~xiaoxzha/Personal%20Website/index.html
Thanks
http://www-student.it.uts.edu.au/~xiaoxzha/Personal%20Website/index.html
Thanks
Wednesday, April 14, 2010
Week 7 PHP and database
hi all, this week we have learnt about PHP and some basic database connection skill.
For my personal website, I think I do not have too much chance to implement with PHP, because I'm going to use more client side programming. But, I will still try to use some basic PHP programming to show my understanding about PHP.
For the database, I'm still try to work with it on FIT webserver. I think it will be very fun if I can connect to the server successfully.
For my personal website, I think I do not have too much chance to implement with PHP, because I'm going to use more client side programming. But, I will still try to use some basic PHP programming to show my understanding about PHP.
For the database, I'm still try to work with it on FIT webserver. I think it will be very fun if I can connect to the server successfully.
Saturday, April 3, 2010
My personal website (Week 5)
hi all, I had create my personal website using simple html and css techniques. I will try to upload my personal website to Faculty of IT web server as soon as possible.
This week, I feel that CSS really is a powerful technique to design a website. Although, writing a CSS may not easy and take some time, it is still a useful technique to create a template to my website. We can use CSS to create a template rather than using table (e.g.) to styling my website. For example, I can using CSS to put my textbox on particular position without drawing a table. Also, I can change my website outlook in one CSS stylesheet without the need to modify all my webpage.
W3 validator also has a function to check my CSS code, it is really good enough to validate my CSS code. W3 validator also will show you a message when you has a text with the same color as your background
This week, I feel that CSS really is a powerful technique to design a website. Although, writing a CSS may not easy and take some time, it is still a useful technique to create a template to my website. We can use CSS to create a template rather than using table (e.g.
W3 validator also has a function to check my CSS code, it is really good enough to validate my CSS code. W3 validator also will show you a message when you has a text with the same color as your background
Friday, March 26, 2010
My final Learning Proposal
Hi all, this is my final learning proposal.
http://www-student.it.uts.edu.au/~xiaoxzha/Learning%20Proposal/10884993%20Learning%20Proposal.html
http://www-student.it.uts.edu.au/~xiaoxzha/Learning%20Proposal/10884993%20Learning%20Proposal.html
Wednesday, March 24, 2010
Week 4 Practical
hi all, this is my week 4 practical
Within the php tag, the code should be
echo date('l jS \of F Y h:i:s A');
l - A full textual representation of the day of the week
j - Day of the month without leading zeros
S - English ordinal suffix for the day of the month, 2 characters
F - A full textual representation of a month, such as January or March
Y - A full numeric representation of a year, 4 digits
h - 12- hour format of an hour without leading zeros
i - Minutes with leading zeros s - Seconds, with leading zeros
A - Uppercase Ante meridiem and Post meridiem
(PHP.NET 2010)
Reference
PHP.NET, 2010, "date", viewed by 25 March 2010,
As I had taken UNIX programming last semester, I feel that php has a little bit similar as Unix code. Unix also using "echo" to display word on terminal. The different is Unix command need to add a preceding symbol - % (percent) in front of the parameter.
As refer to the PHP.NET, I using the backslash(\) to omit the "of" word which will display the correct date format without showing any error.
As PHP is a server side programming, so when I click to view the source code, it will show the current date only without show my original code. I think it is good to protect our source code without expose to everyone.
I already upload this php file to my website.
The following is a link of my website and this php file is under "Weekly Practical" folder:
http://www-student.it.uts.edu.au/~xiaoxzha/
The absolute link for this week exercise is http://www-student.it.uts.edu.au/~xiaoxzha/Weekly%20Practical/week4prac.php
Within the php tag, the code should be
echo date('l jS \of F Y h:i:s A');
l - A full textual representation of the day of the week
j - Day of the month without leading zeros
S - English ordinal suffix for the day of the month, 2 characters
F - A full textual representation of a month, such as January or March
Y - A full numeric representation of a year, 4 digits
h - 12- hour format of an hour without leading zeros
i - Minutes with leading zeros s - Seconds, with leading zeros
A - Uppercase Ante meridiem and Post meridiem
(PHP.NET 2010)
Reference
PHP.NET, 2010, "date", viewed by 25 March 2010,
As I had taken UNIX programming last semester, I feel that php has a little bit similar as Unix code. Unix also using "echo" to display word on terminal. The different is Unix command need to add a preceding symbol - % (percent) in front of the parameter.
As refer to the PHP.NET, I using the backslash(\) to omit the "of" word which will display the correct date format without showing any error.
As PHP is a server side programming, so when I click to view the source code, it will show the current date only without show my original code. I think it is good to protect our source code without expose to everyone.
I already upload this php file to my website.
The following is a link of my website and this php file is under "Weekly Practical" folder:
http://www-student.it.uts.edu.au/~xiaoxzha/
The absolute link for this week exercise is http://www-student.it.uts.edu.au/~xiaoxzha/Weekly%20Practical/week4prac.php
Monday, March 22, 2010
Change my blog's layout
Today I'm feel a little bit free, so I try to change my blog layout. I add in a visitor counter and a youtube link that related to Digital Media Technology. I hope all my blog's visitor like this layout, haha.
If anyone want to use the visitor counter, you can click the link below the counter. You need to register and enter your blog url before using the visitor counter.
If anyone want to use the visitor counter, you can click the link below the counter. You need to register and enter your blog url before using the visitor counter.
Saturday, March 20, 2010
Problem on discussion board
I have met some problems when I open the UTS online discussion board, I try to read some people’s work listed in last page, but it doesn’t work, the page is still in the first page. I try Firefox and Internet Explorer both, they got the same problems. Sometimes it’s working well, but sometimes may not.
So, does anyone know how to fix it? Is it my computer’s problem, browser problem or website problem?
So, does anyone know how to fix it? Is it my computer’s problem, browser problem or website problem?
Saturday, March 13, 2010
My learning proposal.. ..
hi everyone, I just finished my learning proposal and I already post it on UTS IT web server.
The following is the url for my learning proposal-
Learning Proposal 10884993
Furthermore, do we need to post the url on UTS online, or somewhere else ??
Thanks
The following is the url for my learning proposal-
Learning Proposal 10884993
Furthermore, do we need to post the url on UTS online, or somewhere else ??
Thanks
My Personal Website...
Hi, everyone, this is my personal website url.
http://www-student.it.uts.edu.au/~xiaoxzha/
I decided to use the IT faculty's web server to host my website.
I did not do anything on this website yet. I just post this link to let all you know..
Thanks
http://www-student.it.uts.edu.au/~xiaoxzha/
I decided to use the IT faculty's web server to host my website.
I did not do anything on this website yet. I just post this link to let all you know..
Thanks
Friday, March 12, 2010
DMT - My second weeeeeek
hi, everyone, I think most of you already started to do your learning proposal,so do I.
I already decided to design a personal website, that will show my study life in Australia. Furthermore, beside the study, I also will upload some photo and introduce to all of you where I already been in Australia during this 2 years.
I hope to finish the draft by tomorrow.
Good luck for all my classmates... ...
I already decided to design a personal website, that will show my study life in Australia. Furthermore, beside the study, I also will upload some photo and introduce to all of you where I already been in Australia during this 2 years.
I hope to finish the draft by tomorrow.
Good luck for all my classmates... ...
Tuesday, March 9, 2010
Try to add people...
I'm trying to add and become a follower to all my DMT classmates..so many there... ...
I already try my best to add most the people there...
Anyone missing on my list?.. ..
I already try my best to add most the people there...
Anyone missing on my list?.. ..
Why Firefox...not IE? Now, I understand....
O...this few days, my IE browser is always crashed when I want to login to UTS Online.. ..so now I understand why Firefox is better than IE..
Normally, I'm love to use IE as my default browser, but I will try to make Firefox as default browser, because I don't want my browser to crash again when I try to do my assignment..haha
Normally, I'm love to use IE as my default browser, but I will try to make Firefox as default browser, because I don't want my browser to crash again when I try to do my assignment..haha
Monday, March 1, 2010
Subscribe to:
Comments (Atom)
