Wednesday, November 2, 2016
Tuesday, November 1, 2016
COMP7004 CyberEthics Class 08.1
We looked at the Fair Use concept from the US and the equivalent fair dealing copyright exception in Ireland. We discussed the issues that arise when new works are created from existing ones. I asked students to act as jurors in hypothetical cases of music sampling where the defendants invoked the fair use defence and ask students to portion the ownership of the new work in cases where they found there was no fair use. The was considerable discussion about the extent of Kanye West's genius.
For this classes blog entry students will be expected to briefly outline and justify each decision.
For this classes blog entry students will be expected to briefly outline and justify each decision.
COMP7002 UI Class 08.1
We completed our look at Chapter 11 of the book. We looked at the grid pane for layout.
Listing 11-2 didn't seem to be a match for the example.
In the next class we will look at skinning using CSS.
Listing 11-2 didn't seem to be a match for the example.
In the next class we will look at skinning using CSS.
Friday, October 28, 2016
SOFT6013 Assessment 1 information
The exam next Wednesday will have two questions.
Question 1 (60 marks) will be a programming problem. This can be answered in the kind of code we used for the phone problems. The marks will be for the logic. There is no need to be concerned with syntax. The problem will be of the kind we did in class.
Question 2 (40 marks) will be about loops.
The is a one-sheet exam. Students are allowed to bring a single A4 (front-and-back) sheet with them into the exam.
Thursday, October 27, 2016
SOFT6002 HCI Week 07
We looked at requirements gathering and prototyping.
We went to the lab and students worked on a paper prototype for an app that lets the user design a birthday card and have it sent in the post.
We looked at how to use pencil for higher fidelity prototypes.
We went to the lab and students worked on a paper prototype for an app that lets the user design a birthday card and have it sent in the post.
We looked at how to use pencil for higher fidelity prototypes.
Wednesday, October 26, 2016
COMP7004 CyberEthcis Class 07.2 Copyright (1)
We began our formal look at copyright.
[Slides and audio available on Blackboard]
[Slides and audio available on Blackboard]
COMP7002 UI Class 07.2
We began our look at Chapter 1 of the text book. There's a lot in that. We looked at anchor panes, grid panes, tile panes, and scroll panes. We got as fas as Listing 11-1
Tuesday, October 25, 2016
COMP7004 CyberEthics Class 07.1
I asked student to get into groups and discuss the issues of downloading music for free. We discussed arguments for and against although most students said they do now download. Few students presented counter-argumets or justifications for downloading. That surprised me.
All of the discussion centered on the economic (instrumentalist) view. I highlighted the autor's rights point of view.
I published the schedule for the presentations and sent a copy to students by e-mail.
All of the discussion centered on the economic (instrumentalist) view. I highlighted the autor's rights point of view.
I published the schedule for the presentations and sent a copy to students by e-mail.
Monday, October 24, 2016
SOFT7002 UI Week 06 Lab B
Students worked on the assignment. I met with some students to discuss their mock ups.
Thursday, October 20, 2016
SOFT6002 HCI Week 06
We looked at attention [2016-HCI-W04-L2 Human Attention.pptx], memory [2016-HCI-W05-L1 Human Memory.pptx], mental models [2016-HCI-W06-L1 Mental Models.pptx], and metaphors [2016-HCI-W06-L2 Metaphor.pptx].
My voice started to fade after two hours of non-stop talking.Since we didn't have anything particular to do in the lab I let the students do.
COMP7004 CyberEthics Mid-Semester Review
We are half-way through the module now. I have tried hard to make it interesting by facilitating groups discussions and giving students space to explore ideas with their classmates. That's not working. The apathy is the room is palpable. Students refuse to get into groups, and don't even do the courtesy of pretending to talk to each other. I see now that tying marks to attendance was a mistake because it is better is uninterested students stay away.
The format will be different from now on. There will me much more of me talking and much less group discussion.
The format will be different from now on. There will me much more of me talking and much less group discussion.
Wednesday, October 19, 2016
SOFT6013 Week 06
void setup()
{
size (400,400);
noStroke();
rectMode(CENTER);
for (int i = 0; i < 10; i = i+1) {
int posx = int(random(400));
int posy = int(random(400));
int size = int(random(100))+30;
myFourSquares (posx, posy, size);;
}
}
void myFourSquares (int x, int y, int size)
{
int myRed = int(random(255));
int myGreen = int(random(255));
int myBlue = int(random(255));
fill (myRed, myGreen, myBlue, 128);
rect (x, y, size, size);
rect (200 + (200 - x), y, size, size);
rect (x, 200 + (200-y), size, size);
rect (200 + (200 - x), 200 + (200-y), size, size);
}
I walked students through a number of Processing programs and explained in detail how they work. The main concept I wanted to get across this week was functions and how they can be used to abstract out code that can be reused. I also wanted students to get to grips with parameters.
I gave out printed copies of the code afterwards and I had uploaded a recording of the class to Blackboard.
I asked students to write some simple programs but with circles and lines.
COMP7004 CyberEthics Class 06.2
I asked students to discuss in groups the Derek Even Copyright case study. Afterwards we discussed it.
COMP7002 UI Class 05.2
We looked at tree views from Chapter 8, but not in much detail.
We looked at Chapter 9 of the book: Tables
I asked students to make a Leaving Cert points calculator in the lab. There won't be any marks going to for (contrary to what I said in class).
We finsihed up quite early.
I met with one students and we discussed his prototype
We looked at Chapter 9 of the book: Tables
I asked students to make a Leaving Cert points calculator in the lab. There won't be any marks going to for (contrary to what I said in class).
We finsihed up quite early.
I met with one students and we discussed his prototype
Tuesday, October 18, 2016
COMP7004 CyberEthics Class 06.1
I asked students to discuss the "Question of Delegating Responsibilities" and the "US Parts" in groups of 4 or 5. Most did. Some students just sat by themselves and played with their phones.
I spoke a little bit about the presentations. Students should choose a topic by the end of the week.
Attendance:37
Subscribe to:
Posts (Atom)