A number of students submitted work over the summer. I want to meet each student to go through the submissions.
I believe that I have contacted all the relevant students at this stage. If you submitted something but haven't heard from me, please e-mail me.
In the meantime you should sign up for a meeting slot at
http://www.doodle.com/2bbpbwgunyqhxuuk
Showing posts with label SOFT7001. Show all posts
Showing posts with label SOFT7001. Show all posts
Monday, September 3, 2012
Friday, August 10, 2012
SOFT7001 Deadline
The deadline for on time submissions for SOFT7001 is now passed.
I will provide feedback soon (hopefully today) to students who submitted URLs
The next important date is the 1 week late deadline. That is noon on Friday 17 August. The standard -10% late penalty will apply.
I will provide feedback soon (hopefully today) to students who submitted URLs
The next important date is the 1 week late deadline. That is noon on Friday 17 August. The standard -10% late penalty will apply.
Monday, May 14, 2012
SOFT7001 Autumn Repeats
Every student I have met who needs to repeat this module has expressed an interest in getting it done and dusted before the summer break.
The specification is largely the same, but students must make a new site. Fixing the old one is not enough.
Make sure you are registered for the repeat. The spec is over there --->
under pages.
I'm happy to look at drafts and give feedback.
The specification is largely the same, but students must make a new site. Fixing the old one is not enough.
Make sure you are registered for the repeat. The spec is over there --->
under pages.
I'm happy to look at drafts and give feedback.
Wednesday, December 21, 2011
Thursday, December 1, 2011
SOFT7001 Class
Some students are still working on the assignment. Remember to get the URL in on time. There's nothing stopping you from updating the site in the meantime.
Colin
Colin
Thursday, November 24, 2011
SOFT7001 Class canceled this afternoon
I'm not feeling great so I'm going to head home early today. But if you are stuck for something please e-mail me before 1430.
Tuesday, November 22, 2011
SOFT7001 Extension
The deadline for the project is extended to noon on Friday 02 December. Students must e-mail the URL for the website to Colin before then.
SOFT7001 Class
Students worked away on their projects.
We discovered that if the max-width media query doesn't do what need, maybe the max-device-width will do the trick.
We discovered that if the max-width media query doesn't do what need, maybe the max-device-width will do the trick.
Monday, November 21, 2011
Thursday, November 17, 2011
Tuesday, November 15, 2011
SOFT7001 Class
I arrived a bit late.
I met with students and they showed me what they have done so far.
Some issues that came up.
The requirement not to use too many classes is not a total ban. Obviously the menu list is going to be a different class of list
Yo don't need to specifically check for iPhones. Below a certain width or height we can presume we are in mobile phone territory
I met with students and they showed me what they have done so far.
Some issues that came up.
The requirement not to use too many classes is not a total ban. Obviously the menu list is going to be a different class of list
Yo don't need to specifically check for iPhones. Below a certain width or height we can presume we are in mobile phone territory
Monday, November 14, 2011
Thursday, November 10, 2011
SOFT7001 Class 24
We looked at sprites
Slides: http://atlantis.cit.ie/interaction/notes1/PDFs/css-sprites-11.pdf
I went to each student for an update on the project. Some still have to decide what they are doing. Some were workng on stuff for other classes.
Slides: http://atlantis.cit.ie/interaction/notes1/PDFs/css-sprites-11.pdf
I went to each student for an update on the project. Some still have to decide what they are doing. Some were workng on stuff for other classes.
Tuesday, November 8, 2011
Monday, November 7, 2011
SOFT7001 Class 22
We discussed the assignment. Students need not spend time worrying about content. Dummy text can be used for the body of web pages, but the menus and structure must make sense.
I met with students individually to discuss their project plans.
K: games site
S: still thinking about it. might do 2 sites
T: still thinking and experimenting
CP: fan site
CM: sports shop
P: online shop
E: food site
O: planed restaurant site. But I advised against it. Need something about 20 pages
In response to a question I announced that students need only worry about Firefox and Safari.
I met with students individually to discuss their project plans.
K: games site
S: still thinking about it. might do 2 sites
T: still thinking and experimenting
CP: fan site
CM: sports shop
P: online shop
E: food site
O: planed restaurant site. But I advised against it. Need something about 20 pages
In response to a question I announced that students need only worry about Firefox and Safari.
Thursday, November 3, 2011
SOFT7001 Class 21
I came to class with an idea for the project that would save the students trying to come up with content. But no one was especially inspired. I think people want to do their own thing, which is perfectly fine.
I met with students ask asked about their plans. None have really made a start.
I met with students ask asked about their plans. None have really made a start.
Tuesday, November 1, 2011
SOFT7001 A List Apart
If there was a website that was the sponsor of this module it would be alistapart.com
It's full of information about the main issues this module deals with.
There are articles on CSS, fluid layout, and mobile design. Students looking for tips and design ideas for their assignment should definitely check it out.
It's full of information about the main issues this module deals with.
There are articles on CSS, fluid layout, and mobile design. Students looking for tips and design ideas for their assignment should definitely check it out.
SOFT7001 Class 20
We discussed the assessment for this module. The website is to be delivered in two part according to the assessment schedule for the module descriptor, but given that it is now week 08 it doesn't make sense for it to be in two deliverables. I will be providing feedback though on a on-going basis.
Students need to make a start on their websites soon.
We looked at the learning outcomes of the module descriptor. Students' websites should demonstrate competence in all of these areas. I also discussed other things that I expect to see in the websites.
Students are free to show off who much CSS they know
Students will lose marks for over use of classes (users of Dreamweaver beware)
I met with students individually to discuss their plans for their sites
audio: soft7001-20020111101.m4a
Students need to make a start on their websites soon.
We looked at the learning outcomes of the module descriptor. Students' websites should demonstrate competence in all of these areas. I also discussed other things that I expect to see in the websites.
- Fluid design that allows the page to display in at all (reasonable) dimensions
- Images on the page should reposition and resize as the page dimensions change
- A mobile phone version of the site that displays well both horizontally and vertically
- minimum of 15 pages. but 25 would be more like it
- nested list based CSS menus
- a style sheet for print
Students are free to show off who much CSS they know
Students will lose marks for over use of classes (users of Dreamweaver beware)
I met with students individually to discuss their plans for their sites
audio: soft7001-20020111101.m4a
Thursday, October 27, 2011
SOFT7001 Class 18
I asked the students to work on media queries and to make different pages for desktops machine and phones. This requires tha pages be hosted somewhere however.
Example
mystyle.css:
@media screen and (orientation: landscape)
{
body {background-color:yellow;}
}
@media screen and (orientation: portrait)
{
body {background-color:gray;}
}
Example
mystyle.css:
@media screen and (orientation: landscape)
{
body {background-color:yellow;}
}
@media screen and (orientation: portrait)
{
body {background-color:gray;}
}
Tuesday, October 25, 2011
Subscribe to:
Posts (Atom)