Archive for October, 2010

Sources for HUMN response paper

http://plato.stanford.edu/entries/ethics-environmental/

http://en.wikipedia.org/wiki/Environmental_ethics

http://www.melbexperience.com/nature-complexity-sustainability-towards-environmental-ethics/

http://books.google.ca/books?id=oYzqXcmK5HYC&pg=PA79&lpg=PA79&dq=a+new+environmental+ethic+and+sustainability&source=bl&ots=t1pCd1Qva0&sig=TP7ImEIsYUi20Q8ucEb6qfpxyUo&hl=en&ei=BVbETOqjC4i2sAOM2cWfDA&sa=X&oi=book_result&ct=result&resnum=3&ved=0CBwQ6AEwAjgK#v=onepage&q=a%20new%20environmental%20ethic%20and%20sustainability&f=false

http://www.globalchangeblog.com/category/environmental-ethics/

http://www.scu.edu/ethics/articles/articles.cfm?fam=enviro

http://www.google.ca/#q=a+new+environmental+ethic+and+sustainability&hl=en&biw=1024&bih=618&prmd=v&ei=BVbETOqjC4i2sAOM2cWfDA&start=20&sa=N&fp=4aeaa14e93ada747

Leave a comment »

Diva 205- class note on october 18

For next class(October 25):

Every page of the poem mock up.(due)

size:  980*580

add a scroll to let user to roll the page down.as part of the interaction

use pattern as a background,repeating pattern. william morris

http://www.squidfingers.com/

http://www.squidfingers.com/patterns/

http://bgpatterns.com/

2 page:without white cutout

3 page : poem with central line, left line. the color of the letter is better be the dark brown color.

foldline

make a folder for the webpage.

about file naming: no spaces, no special characters, always lower cases,no upper cases

upload to web server:

1.index.html-css

2.images- style.css

use templete the 3rd one

click <div- container> click the edit(pencil) to edit the background

click <body> add another background. put the image in

Leave a comment »

socs note on oct 14

what is the meaning of create a fake name account,

how it is connect with the real place and the real world.

if you use fake username on google earth, what if someone see ur position is one block away , then are u comfortable to meet them?

GPS, google earth.

what if the google earth became real time?

Leave a comment »

Diva 205- Hypemedia poem project

I am doing Du Fu’s poem. Here is the photoshop mockup:

Leave a comment »

My personal webpage mockup

This is the photoshop version of my personal webpage.

I use the pencil to sketch the heading picture, then I use photoshop to colour it.

The text will be clickable.

Leave a comment »

web essential class note on 10/04/2010

Wireframes diagrams

send the teacher e-mail about where to find assigment ,

For next week: float chat, wireframes,at least 2 pages mock up for poem. before next monday. 10/11/2010.

assignment 2:

read the poem, site map first, about 8 pages.

Flickr

one part to be clickable: select it first, then crop then save as slide 1, saving it with transparecing  background. save for web, format PNG24.

create one folder for html, then inside that create another folder for images. get everything organized.

Picking the right format, save as gif, or jepg

Leave a comment »

Diva 315 10/04/2010 class note 2

schematic of the time-course of  ITPRA theory of expectation:

imagination response

tension response

prediction response

reaction response

appraisal response

example: computer & files.

<<Getting started with processing>>- by  Casey Reas & Ben Fry

Leave a comment »

Diva 315 10/05/2010 class note

Project 2 due:   Monday, 18 October 2010, 05:10 PM

1.pdf of program design

2.screen shot of processing sketch your code

Name

keyPressed()

Examples
// Click on the image to give it focus,
// and then press any key

int value = 0;

void draw() {
  fill(value);
  rect(25, 25, 50, 50);
}

void keyPressed() {
  if (value == 0) {
    value = 255;
  } else {
    value = 0;
  }
}
Description The keyPressed() function is called once every time a key is pressed. The key that was pressed is stored in the key variable.

For non-ASCII keys, use the keyCode variable. The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode If you’re making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. Check for both ENTER and RETURN to make sure your program will work for all platforms.

Because of how operating systems handle key repeats, holding down a key may cause multiple calls to keyPressed() (and keyReleased() as well). The rate of repeat is set by the operating system and how each computer is configured.

Syntax
void keyPressed() {
  statements
}
Returns None
Usage Web & Application
Related keyPressed
key
keyCode
keyReleased()

Name

keyCode

Examples
color fillVal = color(126);

void draw() {
  fill(fillVal);
  rect(25, 25, 50, 50);
}

void keyPressed() {
  if (key == CODED) {
    if (keyCode == UP) {
      fillVal = 255;
    } else if (keyCode == DOWN) {
      fillVal = 0;
    }
  } else {
    fillVal = 126;
  }
}
Description The variable keyCode is used to detect special keys such as the UP, DOWN, LEFT, RIGHT arrow keys and ALT, CONTROL, SHIFT. When checking for these keys, it’s first necessary to check and see if the key is coded. This is done with the conditional “if (key == CODED)” as shown in the example.

The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode If you’re making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. Check for both ENTER and RETURN to make sure your program will work for all platforms.

For users familiar with Java, the values for UP and DOWN are simply shorter versions of Java’s KeyEvent.VK_UP and KeyEvent.VK_DOWN. Other keyCode values can be found in the Java KeyEvent reference.

Usage Web & Application
Related key
keyPressed
keyPressed()
keyReleased()

Name

key

Examples
// Click on the window to give it focus
// and press the 'B' key

void draw() {
  if(keyPressed) {
    if (key == 'b' || key == 'B') {
      fill(0);
    }
  } else {
    fill(255);
  }
  rect(25, 25, 50, 50);
}
Description The system variable key always contains the value of the most recent key on the keyboard that was used (either pressed or released).

For non-ASCII keys, use the keyCode variable. The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode If you’re making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. Check for both ENTER and RETURN to make sure your program will work for all platforms.

Syntax
key
Usage Web & Application
Related keyPressed
keyCode
keyPressed()
keyReleased()

Leave a comment »

Follow

Get every new post delivered to your Inbox.