Yale University School of Art
1156 Chapel Street, New Haven, Connecticut
(203) 432-2600
ART 742 NETWORKS & TRANSACTIONS 1: 2008

GRAPHIC DESIGN, 742b, Networks & Transactions 1

How can graphic design influence and be influenced by the unpredictable encounters between one group and another? Or between quantities of unknown users on one side, and vast webs of fluctuating information on the other? In this first course of the Networks and Transactions sequence, we develop a typography appropriate for these pervasive conditions of the modern world. In addition to typographic concerns, fundamentals of programming—and the PHP language in specific—are learned through hands-on work. No previous programming experience necessary. Open to preliminary and first-year graphic design students, or by permission of the instructor. Dan Michaelson

Last edited by: Dylan DeWitt
Edit access: Staff, Faculty




Last edited by: Dan Michaelson







  < prev      1 / 3      next >  

PROJECT 1: RESPONSIVE ALPHABET

Last edited by: Tal Schori
Edit access: Everyone

PROJECT 2: WEATHER

Last edited by: Daniella Spinat
Edit access: Everyone


PROJECT 3: CALENDAR

  • Nazima Ahmad
  • Ke Cao
  • Stina Carlberg
  • Yeju Choi
  • Neil Donnelly
  • Laura Grey
  • Nicholas Hanna
  • Luke Harris
  • Reuben Herzl
  • Hyounyoul Joe
  • E Roon Kang
  • Tara Kelton
  • Isaiah King
  • Melissa Levin
  • Alexander Moulitsas
  • Michael Powers
  • Tal Schori
  • Daniella Spinat
Last edited by: Dan Michaelson
Edit access: Everyone

CALENDAR PLAYLIST

1. Melissa 1 (until done)
2. Ke 1 (until done)
3. Nazima 1 (100 secs)
5. Neil 1 (5 secs)
6. Neil 1 (5 secs)
7. Neil 1 (5 secs)
8. Neil 1 (5 secs)
9. Neil 1 (5 secs)
10. Neil 1 (5 secs)
11. Neil 1 (5 secs)
12. Neil 1 (5 secs)
13. Neil 1 (5 secs)
14. Neil 1 (5 secs)
15. Neil 1 (5 secs)
16. Neil 1 (5 secs)
17. Alex 1 (12 secs)
18. Alex 2 (12 secs)
19. Alex 3 (12 secs)
20. Alex 4 (12 secs)
21. Luke 1 (5 secs)
22. Luke 2 (5 secs)
23. Luke 3 (5 secs)
24. Luke 4 (5 secs)
25. Luke 5 (5 secs)
26. Luke 6 (5 secs)
27. Hyounyoul 1 (50 secs)

Last edited by: Dan Michaelson
Edit access: Everyone


GROUPS FOR APRIL 14

Section A
Dashboard widget lab (optional) 10:30-11:15
Studio 11:30-1:00

  • Stina
  • Neil/Nazima
  • Laura
  • Reuben
  • Isaiah/Nick/Tal
  • Melissa
  • Daniella

Section B
Dashboard widget lab (optional) 10:30-11:15
Studio 1:00-2:30

  • Ke
  • Michael
  • Yeju/Roon
  • Hyounyoul
  • Tara/Luke
  • Alex
  • YuJune
Last edited by: Dan Michaelson
Edit access: Everyone


GRAPHIC DESIGN, 742b, Networks & Transactions 1

How can graphic design influence and be influenced by the unpredictable encounters between one group and another? Or between quantities of unknown users on one side, and vast webs of fluctuating information on the other? In this first course of the Networks and Transactions sequence, we develop a typography appropriate for these pervasive conditions of the modern world. In addition to typographic concerns, fundamentals of programming—and the PHP language in specific—are learned through hands-on work. No previous programming experience necessary. Open to preliminary and first-year graphic design students, or by permission of the instructor. Dan Michaelson

Last edited by: Dan Michaelson
Edit access: Staff, Faculty
SEE ALSO:   SYLLABUS (PDF)    CLASS WEBSITE ‘07   


OFFICE HOURS


Sundays 6p-8p
Stewart Smith
stewart.smith@yale.edu

Sundays 6p-8p (+on-demand)
Tomas Celizna
tomas.celizna@yale.edu

Thursdays 11:30a-1:30p
Dan Michaelson
dan.michaelson@yale.edu

Last edited by: Tomas Celizna
Edit access: Everyone


COLOR CONVERSION IN PHP

Examples showing how to use PHP to convert HSV to RGB, RGB to hexadecimal, and just about any other color-related operation you’d want to perform.

Also, here’s my solution to assignment 1 in case it’d be helpful to see it in use: look at the code here, test it here.

Last edited by: Neil Donnelly
Edit access: Everyone


CSS 3

Here’s an example of experimental CSS 3 commands, currently only supported in Safari 3.1 (WebKit). See also the code comments within : http://stewdio.org/css3

Last edited by: Dan Michaelson
Edit access: Everyone


CITY CODE LOOKUP

This is the URL to use for city code lookup for the weather project (replace the “new%20haven” with another city, zip, or city code to get different results): http://xoap.weather.com/search/search?where=new%20haven

Here’s how I used it (these are links to code, the link to the functional site is above with the weather projects):

Thanks to Stewart and Stina for their help with this.

-Neil

Last edited by: Dan Michaelson
Edit access: Everyone


OS X DASHBOARD WIDGETS

Last edited by: Dan Michaelson
Edit access: Everyone


MINIMAL WIDGET INFO.PLIST FILE

<?xml version=”1.0” encoding=”UTF-8”?>
<!DOCTYPE plist PUBLIC ”-//Apple Computer//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
<plist version=”1.0”>
<dict>
    <key>CFBundleName</key>
    <string>Weather</string>
    <key>CFBundleDisplayName</key>
    <string>Weather</string>
    <key>CFBundleIdentifier</key>
    <string>edu.yale.art.networks.danm.weather</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>CloseBoxInsetX</key>
    <integer>16</integer>
    <key>CloseBoxInsetY</key>
    <integer>14</integer>
    <key>MainHTML</key>
    <string>Weather.html</string>
</dict>
</plist>

Last edited by: Dan Michaelson
Edit access: Everyone