Computer Programming for Lawyers: An Introduction. Spring Paul Ohm Jonathan Frankle. Syllabus Version 0.57

Size: px
Start display at page:

Download "Computer Programming for Lawyers: An Introduction. Spring 2016. Paul Ohm Jonathan Frankle. Syllabus Version 0.57"

Transcription

1 Computer Programming for Lawyers: An Introduction Spring 2016 Paul Ohm Jonathan Frankle Syllabus Version 0.57 Course Description This class provides an introduction to computer programming for law students. The programming language taught may vary from year-to-year, but it will likely be a language designed to be both easy to learn and powerful, such as Python or JavaScript. There are no prerequisites, and even students without training in computer science or engineering should be able successfully to complete the class. The course is based on the premise that computer programming has become a vital skill for non-technical professionals generally and for future lawyers and policymakers specifically. Lawyers, irrespective of specialty or type of practice, organize, evaluate, and manipulate large sets of text-based data (e.g. cases, statutes, regulations, contracts, etc.) Increasingly, lawyers are asked to deal with quantitative data and complex databases. Very simple programming techniques can expedite and simplify these tasks, yet these programming techniques tend to be poorly understood in legal practice and nearly absent in legal education. In this class, students will gain proficiency in various programming-related skills. A secondary goal for the class is to introduce students to computer programming and computer scientific concepts they might encounter in the substantive practice of law. Students might discuss, for example, how programming concepts illuminate and influence current debates in privacy, intellectual property, consumer protection, antidiscrimination, antitrust, and criminal procedure. This is a hands-on class. Each student will spend most class sessions using his or her own computers, reading, writing, and debugging code. Every student must bring to every class a computer, on which free software will be provided to be installed. Students will be required to complete problem sets between class meetings. To obtain a passing grade, students must complete problem sets and larger coding assignments, participate in class sessions, and demonstrate they have learned the assigned skills. 1 Version 0.57

2 At the completion of this class, students should be able to write simple to moderately complex computer programs that can automate text-handling and datahandling tasks that would be difficult or impossible to perform without programming skill. Students will also gain a solid foundation of programming knowledge and skills they can build upon to progress toward mastering more advanced programming techniques and other programming languages. Class Times and Office Hours The class will meet every Tuesday from 1:20 3:20 P.M. in McDonough 425. Professor Ohm will be available for office hours in his office (McDonough 480) on Mondays and Wednesdays from 10:00 11:00 A.M. or at any other time by appointment. He can also be reached via at ohm@law.georgetown.edu. Professor Frankle will be available in his office (McDonough 444) at times to be chosen on the first day of class or any other time by appointment. He can be reached via at jonathan.frankle@law.georgetown.edu. Course Expectations Grading. This class will be graded on a pass-fail basis. To earn a passing grade, students must successfully complete graded assignments in a timely manner. Some non-graded assignments will be distributed as well. Attendance. Regular attendance is crucial. We may decrease the grade of any student with unexplained absences at my discretion up to giving them a failing grade. Participation. Although this class will not be taught in the traditional Socratic style, students will be expected to do the reading and participate in class. Failure to do so could be a factor in deciding to give a student a non-passing grade. No Experienced Programmers Allowed! This class is intended for beginners only. If you have taken any classes in college or graduate school that featured computer programming, or if you have mastered any computer programming language, you are not permitted to take this class. If you are unsure whether you fall within the excluded categories, get in touch with me as soon as you can. Course Materials Required Text. The required book for the course is Al Sweigart, Automate the Boring Stuff with Python, No Starch Press 2015, ISBN-13: The 2 Version 0.57

3 author of the book has made the full text available for free online at Other Resources. You might also find some of the following resources useful: 1. Another free book: Charles Severance, Python for Informatics: Exploring Information. This book is extremely straightforward and moves at a slower pace than the required book, so beginners might especially find it useful. Also, the author helpfully provides free video lectures for a class based on the book that you may want to look at to supplement your reading. 2. You will be referring often to the official documentation for Python 3. In particular, you will spend a lot of time with the Library Reference and the Language Reference. 3. When in doubt, ask Google. And what Google will tell you most often is that others have already asked and answered your question on Stack Exchange. Course Website. Information for this class will be posted in two places in duplicate: our course website and our course Canvas page. Our course website is at paulohm.com/classes/cpl16. You should know by now how to find our class Canvas page. In these two places, you will find class notes, important announcements, supplemental readings, changes to the reading, and links to other resources. I will make supplemental readings and changes to the reading available at least one week prior to the assigned date. To make it quick and easy for you to see what is new, the Latest Updates part of the class website and the Announcements part of the Canvas page will note any changes or updates to these sites. Students must consult either Canvas or the class website before every class. Assignment Submission. Unless otherwise noted, assignments must be submitted at the start of class on the day they are due (1:20pm). After this time, assignments will lose 20% of possible credit for each day or partial day late. Assignments should be submitted by attaching them to an to jonathanfrankle+pythons16@gmail.com with the assignment name (see below) in the subject line. Submissions should be sent from your law.georgetown.edu address. Collaboration Policy. Part of the process of learning to program a computer is getting stuck and working to get unstuck. Part of getting unstuck is talking to your classmates and other people, but part of it is rolling up your sleeves and working 3 Version 0.57

4 the problem alone. For this reason, although we encourage many forms of collaboration, we are implementing a fairly strict, bright-line collaboration policy for this class. Any violation of this policy will be considered a violation of the school's Student Disciplinary Code. Rule 1: For problem sets and graded assignments, you may not view the code of anybody else who is taking (or in future years, has taken) the class. The only exceptions are for assignments that have been explicitly designated to be completed in groups or pairs, in which case you may view the code of your assigned groupmates or partner. Rule 2: For problem sets and graded assignments, you may not show your code to anybody except the course staff (instructors and TAs, if any). Rule 3: You may discuss general concerns or concepts with your classmates, but please keep this at a general level. For example, you are allowed to discuss questions such as, "what does this error message mean?" or "what is a tuple?". Rule 4: You may discuss answers to problems from the book or found elsewhere that have not been assigned, and in so doing, you may share or view code with others. Do not use this as an end-around this policy. Rule 5: You must acknowledge specifically any assistance or collaboration you use in the readme.txt file accompanying your code. Python Version 3. In this class, we will be using Python Version 3, the newest version of the language. Unfortunately, a lot of the documentation on the web involves Python 2. There are many subtle and important differences between the two languages, and the two that you will run into first and most often are: Print In Python 3, the "print" command requires parentheses around the thing you are trying to print. So if you see something like: print "Hello, World!" you should replace it with: print("hello, World!") Integer Division The integer division command works differently. If you want to know more about this, read this article. 4 Version 0.57

5 Assigned Topics and Reading This is the first time I have taught this class in this format, so consider this syllabus a work-in-progress. The schedule below is merely aspirational. Consult the Canvas page or course website for the latest assignments. #: Date Topic Reading 1: 1/19 Introduction and Python Basics Chapters 0 and 1. Chapter 2 pp (Up through Mixing Boolean and Comparison Operators ) Graded Assignments Distrib d Problem Set 1 Due (by 1:20 PM) None 2: 1/26 Flow Control Chapter 2 Problem Set 2 Problem Set 1 3: 2/2 Functions Chapter 3 pp Chapter 4 pp Problem Set 3 Problem Set 2 4: 2/9 Lists and Dictionaries Chapters 4 and 5 Mini-Project 1: Text adventure game Problem Set 3 (Due 2/12) 2/16 Faculty Retreat (No Class) 5: 2/23 Strings Search (Regular Expressions) and Debugging I 6: 3/1 Search (Regular Expressions) and Debugging II Chapter 6 Chapters 7 and 10 Same (Chapters 7 and 10) plus Supplemental Reading (regexone website) 3/8 Spring Break (No Class) 7: 3/15 Files Selections from Chapters 8 and 9 and other handouts Peer-evaluation 1 of Mini- Project 1 Mini-Project 2: Regular Expressions Problem Set 4 & Presentation (due final class) Mini-Project 1 Peerevaluation 1 Mini-Project 2 8: 3/22 Web Scraping I Chapter 11 Problem Set 4 9: 3/29 Web Scraping II (including HTML) Chapter 11 and Supplemental Reading (html tutorial website) Mini-Project 3: Web Scraping 5 Version 0.57

6 10: 4/5 Working with PDF Chapter 13 and Word Documents 11: 4/12 Working with Data: Excel and CSV Chapters 12 and 14 Problem Set 5 Mini-Project 3 12: 4/19 APIs TBD Problem Set 5 13: 4/26 Where do you go from here? TBD Presentation 6 Version 0.57

Advanced Online Media Production

Advanced Online Media Production Advanced Online Media Production MMC 4341 Spring 2015 Section 099F Monday periods 8, 9, 10 (3 6 p.m.), 3024 Weimer Hall Plus individual meetings, by appointment, required weekly Instructor: Mindy McAdams,

More information

USC VITERBI SCHOOL OF ENGINEERING INFORMATICS PROGRAM

USC VITERBI SCHOOL OF ENGINEERING INFORMATICS PROGRAM USC VITERBI SCHOOL OF ENGINEERING INFORMATICS PROGRAM INF 510: Principles of Programming for Informatics Dr. Jeremy Abramson Abramson@isi.usc.edu Time: 5:00-7:20 PM Day: Tuesdays Room: KAP 164 Instructor

More information

Technology and Online Computer Access Requirements: Lake-Sumter State College Course Syllabus

Technology and Online Computer Access Requirements: Lake-Sumter State College Course Syllabus Lake-Sumter State College Course Syllabus Course / Prefix Number CTS1832 Course Title: Web Authoring II CRN: 10009 Credit: 3 Term: Fall 2015 This course is a continuation of skills and concepts introduced

More information

Instructor: Carlos E. Caicedo, Ph.D. Phone: 315-443-1363 (Office) Office: 215 Hinds Hall Email: ccaicedo@syr.edu Office Hours: TBA

Instructor: Carlos E. Caicedo, Ph.D. Phone: 315-443-1363 (Office) Office: 215 Hinds Hall Email: ccaicedo@syr.edu Office Hours: TBA IST 400/600 Mobile Application Development School of Information Studies Syracuse University Fall / 2010 (IST 400 M002 - Class number: 36426 / IST 600 M004 - Class number: 36427) Instructor: Carlos E.

More information

IST565 M001 Yu Spring 2015 Syllabus Data Mining

IST565 M001 Yu Spring 2015 Syllabus Data Mining IST565 M001 Yu Spring 2015 Syllabus Data Mining Draft updated 10/28/2014 Instructor: Professor Bei Yu Classroom: Hinds 117 Email: byu.teaching@gmail.com Class time: 3:45-5:05 Wednesdays Office: Hinds 320

More information

Instructor: Carlos E. Caicedo, Ph.D. Phone: 315-443-1363 (Office) Office: 215 Hinds Hall Email: ccaicedo@syr.edu Office Hours: TBA

Instructor: Carlos E. Caicedo, Ph.D. Phone: 315-443-1363 (Office) Office: 215 Hinds Hall Email: ccaicedo@syr.edu Office Hours: TBA IST 600 Mobile Application Design & Development School of Information Studies Syracuse University Fall / 2013 Document version 1.0 (IST 600 M012 - Class number: 30857) Instructor: Carlos E. Caicedo, Ph.D.

More information

IT 230 Data Visualization

IT 230 Data Visualization Navajo Technical University http://navajotech.edu P.O. Box 849, Crownpoint, NM 87313-0849 Telephone: (505) 786-4100 FAX: (505) 786-5644 IT 230 Data Visualization 3 credit hours Section 01 T/R @ 02:00PM

More information

Fluency in Information Technology

Fluency in Information Technology Fluency in Information Technology Bulletin Description The nature of computers, their capabilities, and limitations. How computers work, popular applications, problem-solving skills, algorithms and programming.

More information

MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University

MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University MTH 110: Elementary Statistics (Online Course) Course Syllabus Fall 2012 Chatham University Meeting Times: Online course Instructor: Mr. John Wenskovitch Email: jwenskovitch@chatham.edu Office: Buhl 218

More information

Voice: (276) 619-4352 and (813) 507-9956 E-mail: bnorton@hgs.k12.va.us Office Hours: by appointment

Voice: (276) 619-4352 and (813) 507-9956 E-mail: bnorton@hgs.k12.va.us Office Hours: by appointment A. Linwood Holton Governor s School INTRODUCTION TO ENGINEERING METHODS and COMPUTER PROGRAMMING Course Syllabus Instructor: Dr. Bruce C. Norton Voice: (276) 619-4352 and (813) 507-9956 E-mail: bnorton@hgs.k12.va.us

More information

AGEC 448 AGEC 601 AGRICULTURAL COMMODITY FUTURES COMMODITY FUTURES & OPTIONS MARKETS SYLLABUS SPRING 2014 SCHEDULE

AGEC 448 AGEC 601 AGRICULTURAL COMMODITY FUTURES COMMODITY FUTURES & OPTIONS MARKETS SYLLABUS SPRING 2014 SCHEDULE AGEC 448 AGRICULTURAL COMMODITY FUTURES AGEC 601 COMMODITY FUTURES & OPTIONS MARKETS SYLLABUS SPRING 2014 SCHEDULE Time: TR, 2:20pm 3:35pm (stacked sections) Location: Heep Center, Rm.103 INSTRUCTOR Dr.

More information

Syllabus Business Law 1 Spring 2016 Section #3156 Wednesday 6:50 pm 10:00 pm Room: Culinary Arts Institute (CAI) # 228

Syllabus Business Law 1 Spring 2016 Section #3156 Wednesday 6:50 pm 10:00 pm Room: Culinary Arts Institute (CAI) # 228 1 Encouraging students to become critical thinkers and lifelong learners; Ensuring that students successfully transfer to four-year institutions, find meaningful employment, improve their basic skills,

More information

Hong Kong University of Science and Technology School of Business and Management Spring 2015

Hong Kong University of Science and Technology School of Business and Management Spring 2015 Hong Kong University of Science and Technology School of Business and Management Spring 2015 ISOM 2010 INTRODUCTION TO INFORMATION SYSTEMS Instructor: Professor Tat Koon KOH Email: koh@ust.hk Office: LSK

More information

Psychological Testing (PSYCH 149) Syllabus

Psychological Testing (PSYCH 149) Syllabus Psychological Testing (PSYCH 149) Syllabus Psychological Testing (PSYCH 149) is held on Mondays, Wednesdays, and Fridays from 11:45 a.m. 12:50 p.m., in Science 2, Room 107. This 4-unit course is designed

More information

ACCT 430: Accounting Ethics Leventhal School of Accounting University of Southern California Spring 2013

ACCT 430: Accounting Ethics Leventhal School of Accounting University of Southern California Spring 2013 ACCT 430: Accounting Ethics Leventhal School of Accounting University of Southern California Spring 2013 Professors: Kenneth A. Merchant Lori Smith Office: HOH 606 ACC 111 Phone: 213-821-5920 714-686-0564

More information

The University Of Texas At Austin. The McCombs School of Business

The University Of Texas At Austin. The McCombs School of Business The University Of Texas At Austin The McCombs School of Business Financial Risk Management FIN 377.2 Spring 2012 Location: CBA 4.332 Time: TTH 8:00 9:30 Professor: Josh Alexander, CFA Phone(s): 512 439

More information

Engineering Ethics and Communications Course Summary

Engineering Ethics and Communications Course Summary Engineering Ethics and Communications Course Summary Course Description: Engineering Ethics and Communication is designed to introduce engineering students to the concepts, theory and practice of engineering

More information

Office Hours: Monday: 11:30AM 12:30PM Wednesday: 11:30AM 12:30PM Please make an appointment and other hours can be arranged, if you need assistance.

Office Hours: Monday: 11:30AM 12:30PM Wednesday: 11:30AM 12:30PM Please make an appointment and other hours can be arranged, if you need assistance. Course Number: IS117 Course Title: Introduction to Website Development Section: 101 Date & Time: R: 6:00PM 9:05PM Credits: 3 Contact Hours: 3 Hours Face-to-Face Instructor Information Name: Keith Williams

More information

IT 415 Information Visualization Spring Semester

IT 415 Information Visualization Spring Semester The Department of Applied Information Technology The Volgenau School of Information Technology & Engineering George Mason University 4400 University Drive Fairfax. VA 22030-4444 IT 415 Information Visualization

More information

COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT

COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT COMMONWEALTH OF MASSACHUSETTS BUNKER HILL COMMUNITY COLLEGE CHARLESTOWN, MASSACHUSETTS COMPUTER INFORMATION TECHNOLOGY DEPARTMENT CIT 523 PYTHON PROGRAMMING COURSE OUTLINE & REQUIREMENTS COURSE DESCRIPTION:

More information

PSY 6361 Teaching of Psychology Online Course Spring 2015 2 nd Eight Weeks

PSY 6361 Teaching of Psychology Online Course Spring 2015 2 nd Eight Weeks PSY 6361 Teaching of Psychology Online Course Spring 2015 2 nd Eight Weeks Instructor: Kristi Cordell-McNulty Email: kmcnulty@angelo.edu Phone: 325-486-6116 Office: Academic Building 104D Office Hours:

More information

IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS

IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS IST359 - INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS 1. COURSE DETAILS Revised: 1/13/2012 COURSE (SECTION): IST359 (M001) TERM: Spring 2012 INSTRUCTOR: Deborah Nosky FINAL EXAM: Tuesday, May 8 th 10:15

More information

Statistical Methods Online Course Syllabus

Statistical Methods Online Course Syllabus VALENCIA COLLEGE EAST CAMPUS STA 2023 STATISTICAL METHODS (ONLINE COURSE) SYLLABUS Term/Year: Fall 2011 CRN: 11563/11615/13231/11839 Professor: Dr. Agatha Shaw E-mail: Blackboard Course E-Mail or ashaw17@mail.valenciaccollege.edu

More information

Strategic Use of Information Technology (CIS 190.01) Summer / 2015 https://messiah.instructure.com

Strategic Use of Information Technology (CIS 190.01) Summer / 2015 https://messiah.instructure.com Summer Online 2015 Strategic Use of Information Technology (CIS 190.01) Summer / 2015 https://messiah.instructure.com Professor: Bev Motich Dates: June 8 July 31, 2015 Email: bmotich@messiah.edu Office

More information

METHODS OF SOCIAL RESEARCH

METHODS OF SOCIAL RESEARCH 1 METHODS OF SOCIAL RESEARCH SYA4300 Sections 01-03 Fall 2015 Distance Learning Section Course Website: http://campus.fsu.edu Professor: Jennifer Marie Brailsford TA/Mentor: Kristin Allen Email: jmb11y@my.fsu.edu

More information

Technology Department Computer Forensics CMP 250-D01 Syllabus: Spring 2015

Technology Department Computer Forensics CMP 250-D01 Syllabus: Spring 2015 Technology Department Computer Forensics CMP 250-D01 Syllabus: Spring 2015 Professor: Curtis Satterfield Office Hours: Monday 3:00 5:00 PM, Tuesday 3:00 5:00 PM, Wednesday 12:00p 1:00p or by appointment.

More information

Online Basic Statistics

Online Basic Statistics Online Basic Statistics Madison Area Technical College Fall 2013 Syllabus Course Information Catalog Number: 20-804-240 Class Number: 33342 Dates: 10/21/2013-12/20/2013 Credits: 4 Website: http://blackboard.madisoncollege.edu

More information

Clinical Psychology Syllabus 1

Clinical Psychology Syllabus 1 Key Information about this Class Clinical Psychology Syllabus 1 (400:166) Fall 2008 Classroom Location: 315 Baker Hours: 3 hours Time: Tues, Thurs 12:30 1:45 p.m. University of Northern Iowa Instructor

More information

SOUTHEAST MISSOURI STATE UNIVERSITY COURSE SYLLABUS. AB 604: Advanced Professional and Ethical Conduct of Behavior Analysts I OFFERED ONLINE

SOUTHEAST MISSOURI STATE UNIVERSITY COURSE SYLLABUS. AB 604: Advanced Professional and Ethical Conduct of Behavior Analysts I OFFERED ONLINE SOUTHEAST MISSOURI STATE UNIVERSITY COURSE SYLLABUS AB 604: Advanced Professional and Ethical Conduct of Behavior Analysts I OFFERED ONLINE Instructor: Dr. Jamie Severtson Phone: 573 986 6982 Office: Scully

More information

ISM 4210: DATABASE MANAGEMENT

ISM 4210: DATABASE MANAGEMENT GENERAL INFORMATION: ISM 4210: DATABASE MANAGEMENT COURSE SYLLABUS Class Times: Tuesday, Thursday 9:35 11:30 AM Class Location: HVNR 240 Professor: Dr. Aditi Mukherjee Office; Phone: STZ 360, 39-20648

More information

SYLLABUS PUR 3801 (6044) PUBLIC RELATIONS STRATEGY ( )

SYLLABUS PUR 3801 (6044) PUBLIC RELATIONS STRATEGY ( ) SYLLABUS PUR 3801 (6044) PUBLIC RELATIONS STRATEGY ( ) Fall 2014 Tuesday, periods 9-11 (4:05 7:05 p.m.) AHA! The Innovation CoLab - Weimer 3200 Instructor: Juan-Carlos Molleda, Ph.D. Professor & Chair,

More information

Interactive Media Design

Interactive Media Design ART 307 Section 010 Spring 2011 Interactive Media Design Web Design Multimedia Design Resources Calendar On this page Course description Course information Course objectives Exercises, Quizzes, Projects

More information

CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115. Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta.

CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115. Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta. CS 1340 Sec. A Time: TR @ 8:00AM, Location: Nevins 2115 Course title: Computing for Scientists, Spring 2015 Instructor: Dr. R. Paul Mihail, 2119 Nevins Hall, Email: rpmihail@valdosta.edu Class meeting

More information

SI 539, Winter 2014 Complex Web Design

SI 539, Winter 2014 Complex Web Design SI 539, Winter 2014 Complex Web Design Lecture: Wednesday 1:00-4:00pm Office Hours*: Tuesdays 12:00pm 2:00pm *Please check my Google Calendar for updates http://collemc.people.si.umich.edu/ Instructor:

More information

CRIMINAL LAW (LAW 615) University of St. Thomas School of Law Spring Semester, 2010 Dates: Monday, Tuesday and Thursday, 8:45-9:40 Room: MSL 321

CRIMINAL LAW (LAW 615) University of St. Thomas School of Law Spring Semester, 2010 Dates: Monday, Tuesday and Thursday, 8:45-9:40 Room: MSL 321 Cribari: Spring, 2010, Criminal Law Syllabus (12/9/09) Page 1 CRIMINAL LAW (LAW 615) University of St. Thomas School of Law Spring Semester, 2010 Dates: Monday, Tuesday and Thursday, 8:45-9:40 Room: MSL

More information

Course Syllabus CRIJ-1301-001 Introduction to Criminal Justice Spring 2012 Tuesday & Thursday 2:50-4:05pm

Course Syllabus CRIJ-1301-001 Introduction to Criminal Justice Spring 2012 Tuesday & Thursday 2:50-4:05pm Course Syllabus CRIJ-1301-001 Introduction to Criminal Justice Spring 2012 Tuesday & Thursday 2:50-4:05pm 1. Course: CRIJ 1301-01 Introduction to Criminal Justice 2. Instructor: Edwin Ueckert, M.S., Criminal

More information

SYLLABUS Human Resource Management MGMT 3241 Section 001 Spring 2006, MW 3:00-4:20 Friday 9

SYLLABUS Human Resource Management MGMT 3241 Section 001 Spring 2006, MW 3:00-4:20 Friday 9 SYLLABUS Human Resource Management MGMT 3241 Section 001 Spring 2006, MW 3:00-4:20 Friday 9 Instructor: Dr. Chris Henle Office: Friday 351-C Telephone: (704) 687-3199 Email: cahenle@email.uncc.edu Web

More information

TEPM 6301 Project Management for Technical Professionals Course Overview

TEPM 6301 Project Management for Technical Professionals Course Overview TEPM 6301 Project Management for Technical Professionals Course Overview Instructor Classroom Email Class URL Office Hours Alexandra Loukina, PMP Technology Building T2 aloukina@sark.com http://www.tech.uh.edu/programs/project_management/

More information

EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems. IS213 A Management Information Systems Concepts

EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems. IS213 A Management Information Systems Concepts EMPORIA STATE UNIVERSITYSCHOOL OF BUSINESS Department of Accounting and Information Systems IS213A Course Syllabus Spring 2013 MISSION STATEMENT: The School of Business prepares a diverse student body

More information

Thursday 11:00 a.m. - 12:00 p.m. and by appointment

Thursday 11:00 a.m. - 12:00 p.m. and by appointment Instructor Information Instructor: CIS 4: Introduction to Computers, Business Applications Gina Jerry Phone: 310-434-4686 E-mail: Website: Course Website: Office: Office Hours: Course Description jerry_gina@smc.edu

More information

Sociology 3111 Research Methods ONLINE System Requirements: focus of this course Objectives

Sociology 3111 Research Methods ONLINE System Requirements: focus of this course Objectives Sociology 3111 ONLINE Research Methods Instructor: Michael Timberlake Office: 426 BEH S Phone: (801) 581-8132 E-mail: Use CANVAS mail feature for all mail. In a pinch, use timber@soc.utah.edu Office Hours:

More information

Course Description. Course Objectives

Course Description. Course Objectives MONTGOMERY COLLEGE Business, Accounting, Economics, Computer Applications, and Paralegal Studies Department Germantown Campus CMAP272 Professional Web Site Development Instructor: John Coliton Spring,

More information

Florida Gulf Coast University Lutgert College of Business Marketing Department MAR3503 Consumer Behavior Spring 2015

Florida Gulf Coast University Lutgert College of Business Marketing Department MAR3503 Consumer Behavior Spring 2015 Course name: Class schedule: Course mode: Classroom: Lutgert Hall, Room 2208 CRN: 10141 Consumer Behavior Tuesday & Thursday, 9:30 AM 10:45 AM On campus, face-to-face meetings Credit hours: 3 Final exam:

More information

Professor: Monica Hernandez Phone: (956)295-3562 Dept. Secretary Ms. Canales 956-295-3817

Professor: Monica Hernandez Phone: (956)295-3562 Dept. Secretary Ms. Canales 956-295-3817 Texas Southmost College PSYC 2301 50A/60A General Psychology Course Syllabus PSYC 2301. 50A/60A General Psychology Professor: Monica Hernandez Phone: (956)295-3562 Dept. Secretary Ms. Canales 956-295-3817

More information

BBA 380 Management for Environmental Sustainability and Durable Competitive Advantage THE BBA PROGRAM

BBA 380 Management for Environmental Sustainability and Durable Competitive Advantage THE BBA PROGRAM GENERAL INFORMATION Semester: Fall 2015 Day / Time: Wednesdays 5:30 7 pm Room: Credit: 3 Credit Hours Professor: Lisa Herrmann, MBA, MEd Office Hours: By Appointment Phone: 480-209-6946 Email: lisa.herrmann@nau.edu

More information

Values 291 ETHICS IN SCIENCE University of Washington, Seattle Winter 2013: MWF 2:30 3:20, Savery 130 Course website: canvas.uw.

Values 291 ETHICS IN SCIENCE University of Washington, Seattle Winter 2013: MWF 2:30 3:20, Savery 130 Course website: canvas.uw. Values 291 ETHICS IN SCIENCE University of Washington, Seattle Winter 2013: MWF 2:30 3:20, Savery 130 Course website: canvas.uw.edu Instructor of Record: Co-Instructor: Laura Harkewicz, Ph.D., Lecturer

More information

Teaching Assistants (contact information for your TAs can be found on the course website): Luis Alvarez, Sarah Halterman, Corey Rovzar and Jason Ward.

Teaching Assistants (contact information for your TAs can be found on the course website): Luis Alvarez, Sarah Halterman, Corey Rovzar and Jason Ward. 1 Geography 7 (WINTER 2015): Introduction to Geographic Information Systems ONLINE Professor Michael Shin (shinm@geog.ucla.edu) Office hours: Wednesdays, 10.30am - Noon or by appointment Office: Bunche

More information

Precalculus Algebra Online Course Syllabus

Precalculus Algebra Online Course Syllabus VALENCIA COMMUNITY COLLEGE EAST CAMPUS MAC 1140 PRECALCULUS ALGEBRA (ONLINE COURSE) SYLLABUS Term/Year: Spring 2011 CRN: 22693/22954 Professor: Dr. Agatha Shaw Phone: (407) 582 2117 Office: 8-249 Student

More information

MGMT 280 Impact Investing Ed Quevedo

MGMT 280 Impact Investing Ed Quevedo MGMT 280 Impact Investing Ed Quevedo Description This course surveys the principles of impact investing, capital markets, and creation of new investment and financial instruments designed to create blended

More information

Psychology 103 Your ticket # 21935 Spring 2013 Cerritos Community College

Psychology 103 Your ticket # 21935 Spring 2013 Cerritos Community College CRITICAL THINKING This course covers the nature of critical thinking from a psychological perspective. Focusing on the nature of thinking, the course emphasizes the development of critical thinking applied

More information

IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS

IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS IST359 INTRODUCTION TO DATABASE MANAGEMENT SYSTEMS 1. COURSE DETAILS COURSE (SECTION): IST359 (M005) TERM: Fall 2012 INSTRUCTOR: Yang Wang PHONE: 443-3744 (Office) OFFICE: Hinds 342 EMAIL: ywang@syr.edu

More information

Foundations of Programming

Foundations of Programming Foundations of Programming Bulletin Description A first formal course in computer programming required (e.g. Comp 110, UNC). Intermediate programming: objects, pointers, classes, interfaces, packages,

More information

Lake-Sumter Community College Course Syllabus

Lake-Sumter Community College Course Syllabus Lake-Sumter Community College Course Syllabus Course / Prefix Number COP 2700 Course Title: Database Design & Analysis CRN: 30210 Credit: Term: Summer AE 2011 This course is designed to introduce the student

More information

INTERACTIVE STORYTELLING (IST)

INTERACTIVE STORYTELLING (IST) INTERACTIVE STORYTELLING (IST) COURSE NUMBER: DIG6027C SEMESTER/YEAR: SPRING 2015 INSTRUCTOR: Prof. Diana Reichenbach COURSE TA OR COORDINATOR: TBD CREDIT HOURS: 3.0 CLASS LOCATION: CSE E413 CLASS MEETING

More information

Dr. Jennifer Pfeifer jpfeifer@uoregon.edu Office Hours: 329 LISB, Tuesday/Thursday 10:15am-11:15am or by appointment

Dr. Jennifer Pfeifer jpfeifer@uoregon.edu Office Hours: 329 LISB, Tuesday/Thursday 10:15am-11:15am or by appointment 1 PSYCHOLOGY 478/578 SOCIAL DEVELOPMENT SPRING 2014 Dr. Jennifer Pfeifer jpfeifer@uoregon.edu Office Hours: 329 LISB, Tuesday/Thursday 10:15am-11:15am or by appointment T.A.: Melissa Yockelson melissay@uoregon.edu

More information

COURSE OUTLINE Business 2257: Accounting and Business Analysis

COURSE OUTLINE Business 2257: Accounting and Business Analysis COURSE OUTLINE Business 2257: Accounting and Business Analysis This course presumes no prior knowledge of business administration. It is required by other faculties for some of their programs and is the

More information

CI 437: Educational Game Design

CI 437: Educational Game Design CI 437: Educational Game Design Department of Curriculum & Instruction UIUC College of Education I. Basic Course Information Semester: Spring 2015 Class Location: Course Meeting Days: Tues & Thurs Undergrad

More information

GRAPHIC DESIGN AND DIGITAL MEDIA

GRAPHIC DESIGN AND DIGITAL MEDIA GRAPHIC DESIGN AND DIGITAL MEDIA CODE: GDD-221 TITLE: Web Design I DIVISION: Science Math and Technology COURSE DESCRIPTION: This course introduces design concepts and techniques applicable to the World

More information

AEE 460: Foundations of Leadership Development Fall 2006 M/W/F, 11:15 12:05 p.m. 301 Ag Administration Bldg.

AEE 460: Foundations of Leadership Development Fall 2006 M/W/F, 11:15 12:05 p.m. 301 Ag Administration Bldg. AEE 460: Foundations of Leadership Development Fall 2006 M/W/F, 11:15 12:05 p.m. 301 Ag Administration Bldg. Instructor: Kristina G. Ricketts, Ph. D. Office: 439 Ag. Administration Bldg. Office Hours:

More information

OTTAWA ONLINE Graduate Business Programs BUS 8000 - Advanced Leadership Theory and Practice Spring 2 Term: March 31 June 21 2008

OTTAWA ONLINE Graduate Business Programs BUS 8000 - Advanced Leadership Theory and Practice Spring 2 Term: March 31 June 21 2008 OTTAWA ONLINE Graduate Business Programs BUS 8000 - Advanced Leadership Theory Practice Spring 2 Term: March 31 June 21 2008 Course Description Covers theory practice related to organizational leadership.

More information

CISM 2201 - Fundamentals of Computer Applications

CISM 2201 - Fundamentals of Computer Applications CISM 2201 - Fundamentals of Computer Applications Philip Reaves, MBA RCOB 1214, on the RCOB Advising Hall preaves@westga.edu (678) 839-4772 My physical office hours are Tuesday and Thursday from 12 to

More information

TMGT 352.01W Principles of Cost Engineering Course Syllabus: Spring 2013 Online ecollege Course

TMGT 352.01W Principles of Cost Engineering Course Syllabus: Spring 2013 Online ecollege Course TMGT 352.01W Principles of Cost Engineering Course Syllabus: Spring 2013 Online ecollege Course Instructor: Wen-Hsing Liu, Ph.D. Ad-Interim Assistant Professor Department of Engineering & Technology Office

More information

EMBA 510 02W 22847 Economic Forecasting Spring 2015

EMBA 510 02W 22847 Economic Forecasting Spring 2015 EMBA 510 02W 22847 Economic Forecasting Spring 2015 Professor: Stanley Holmes Email: Stanley.Holmes@tamuc.edu Phone: Office (903) 903 468 6029 and home office (903) 365-7190 TAMU office: BA 102 Office

More information

Brown University Department of Economics Spring 2015 ECON 1620-S01 Introduction to Econometrics Course Syllabus

Brown University Department of Economics Spring 2015 ECON 1620-S01 Introduction to Econometrics Course Syllabus Brown University Department of Economics Spring 2015 ECON 1620-S01 Introduction to Econometrics Course Syllabus Course Instructor: Dimitra Politi Office hour: Mondays 1-2pm (and by appointment) Office

More information

DBA 9101, Comprehensive Exam Course Syllabus. Course Description. Course Textbook. Course Learning Outcomes. Credits.

DBA 9101, Comprehensive Exam Course Syllabus. Course Description. Course Textbook. Course Learning Outcomes. Credits. DBA 9101, Comprehensive Exam Course Syllabus Course Description Establishes that a doctoral candidate has acquired the essential knowledge and skills covered in each of the courses, not including dissertation

More information

Borough of Manhattan Community College Department of Social Science. POL 100-036 American Government Spring 2014

Borough of Manhattan Community College Department of Social Science. POL 100-036 American Government Spring 2014 Borough of Manhattan Community College Department of Social Science POL 100-036 American Government Spring 2014 Online 3 credits Prof. Melissa T. Brown mbrown@bmcc.cuny.edu Office: N-669 Office Phone:

More information

Chesapeake College. Syllabus. MAT 031 Elementary Algebra (silcox87517) John H. Silcox

Chesapeake College. Syllabus. MAT 031 Elementary Algebra (silcox87517) John H. Silcox Chesapeake College Syllabus MAT 031 Elementary Algebra (silcox87517) John H. Silcox Phone 410-778-4540 (W) Phone 410-348-5370 (H) john.silcox@1972.usna.com Syllabus For MAT 031 I. OFFICE HOURS: One hour

More information

The world is a complex place, and. requires that we learn how to. imagine its full potential.

The world is a complex place, and. requires that we learn how to. imagine its full potential. Management 328.004 (Course #13352) International Management Fall 2015 Wednesdays 5:30 8:00 ASM 1065 Office Hours MW 1-2 and 3-5pm Last updated: March 25, 2015 Professor: Dr. Manuel R. Montoya Email: mrmonto@unm.edu

More information

Comprehensive Course Syllabus. Computer Science Inquiry (CSI)

Comprehensive Course Syllabus. Computer Science Inquiry (CSI) Computer Science Inquiry (CSI) Course Description: We will explore fundamentals of computer science that are essential for students in the 21st century. The principles of computer science are taught with

More information

UNIVERSITY OF WISCONSIN-EAU CLAIRE COLLEGE OF ARTS AND SCIENCES Department of Political Science Criminal Justice Program

UNIVERSITY OF WISCONSIN-EAU CLAIRE COLLEGE OF ARTS AND SCIENCES Department of Political Science Criminal Justice Program UNIVERSITY OF WISCONSIN-EAU CLAIRE COLLEGE OF ARTS AND SCIENCES Department of Political Science Criminal Justice Program CRIMINAL JUSTICE 103/SOCIOLOGY 103 SURVEY OF THE CRIMINAL JUSTICE SYSTEM Tuesday

More information

Fall 2015 GES 4120/5120 Internet GIS

Fall 2015 GES 4120/5120 Internet GIS Fall 2015 GES 4120/5120 Internet GIS Instructor: Dr. Somayeh Dodge Assistant Professor Department of Geography & Environmental Studies website: http://www.uccs.edu/~sdodge/ e-mail: sdodge3@uccs.edu Office:

More information

ISM 4113: SYSTEMS ANALYSIS & DESIGN

ISM 4113: SYSTEMS ANALYSIS & DESIGN GENERAL INFORMATION: ISM 4113: SYSTEMS ANALYSIS & DESIGN COURSE SYLLABUS Class Times: Tuesday, Thursday 9:35 11:30 AM Class Location: HVNR 240 Professor: Dr. Aditi Mukherjee Office; Phone: STZ 360, 39-20648

More information

Law Practice Management Professor Jeanne Curtin Fall 2011 SYLLABUS

Law Practice Management Professor Jeanne Curtin Fall 2011 SYLLABUS Law Practice Management Professor Jeanne Curtin Fall 2011 SYLLABUS I. Contact Information: Office: 326A 850.644.2800 (office) / 850.591.1893 (cell) jcurtin@law.fsu.edu II. General Course Information: A.

More information

Course Syllabus MEEM 6010 Engineering Research Communication Spring 2015

Course Syllabus MEEM 6010 Engineering Research Communication Spring 2015 Instructor Information Course Syllabus MEEM 6010 Engineering Research Communication Spring 2015 Instructor: Nancy Barr, MS, ME-EM Communications Advisor Office Location: 802 ME-EM Telephone: Office (906)

More information

BA530 Financial Management Spring 2015

BA530 Financial Management Spring 2015 BA530 Financial Management Spring 2015 Professor: Wanli Zhao, Ph.D. Class Time: 4:00 ~ 6:45 PM on Wednesday in Lawson 101 Office: Rehn 124, College of Business Phone: (618) 453-7109 Email: zhaowl@business.siu.edu

More information

Class Syllabus. Department of Business Administration & Management Information Systems. Texas A&M University Commerce

Class Syllabus. Department of Business Administration & Management Information Systems. Texas A&M University Commerce BA 501 Quantitative Analysis for Management General Information: Class Syllabus Department of Business Administration & Management Information Systems Texas A&M University Commerce Semester: Fall 2013

More information

Computer Science 1015F ~ 2010 ~ Notes to Students

Computer Science 1015F ~ 2010 ~ Notes to Students Computer Science 1015F ~ 2010 ~ Notes to Students Course Description Computer Science 1015/8F and 1016S together constitute a complete Computer Science curriculum for first year students, offering an introduction

More information

Computer Programming in the Web Era: Online Business Development

Computer Programming in the Web Era: Online Business Development 8/19/2009 1 ITEC 334 Fall 2009 Computer Programming in the Web Era: Online Business Development Mondays & Thursdays 11:20 am - 12:35 pm Classroom: KSB T61 & FS&IT Lab Professor: J. Alberto Espinosa Last

More information

Introduction to Business Course Syllabus. Dr. Michelle Choate Office # C221 Phone: 305-809-3202 Mobile Office: 828-329-2157

Introduction to Business Course Syllabus. Dr. Michelle Choate Office # C221 Phone: 305-809-3202 Mobile Office: 828-329-2157 Introduction to Business Course Syllabus COURSE TITLE Introduction to Business COURSE NUMBER GEB 1011 (11137) PREREQUISITES None CREDIT HOURS 3 CONTACT HOURS 45 CLASS MEETING TIMES CLASS METHOD Virtual

More information

Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015

Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015 Technology Department Computer and Network Support Capstone CMP 259-D01 Syllabus: Spring 2015 Professor: Curtis Satterfield Office Hours: Monday 3:00 5:00 PM, Tuesday 3:00 5:00 PM, Wednesday 12:00p 1:00p

More information

Any additional readings will be available as pdf documents on our course website.

Any additional readings will be available as pdf documents on our course website. Speech 225: Small Group Communication Autumn 2007 M-F 11:30am-12:20pm; Room A228 Instructor: Whitney Anspach Office Hours: T & R 12:30-1:30 in R230, and by appointment Phone: 425-564-3064 ext #3064 Email:

More information

Finite Mathematics I / T Section / Course Syllabus / Spring 2016. Math 1324-T10 Mon/Wed/Fri 10:00 am 11:50 am MCS 215

Finite Mathematics I / T Section / Course Syllabus / Spring 2016. Math 1324-T10 Mon/Wed/Fri 10:00 am 11:50 am MCS 215 Math 1324-T10 Mon/Wed/Fri 10:00 am 11:50 am MCS 215 Instructor: Nancy S. B. Kloboučník (klō bōch nik) Phone: (325) 486-5436 Dept. Fax: (325) 942-2503 Email: Nancy.Kloboucnik@angelo.edu Routinely check

More information

ACT Mathematics sub-score of 22 or greater or COMPASS Algebra score of 50 or greater or MATH 1005 or DSPM 0850

ACT Mathematics sub-score of 22 or greater or COMPASS Algebra score of 50 or greater or MATH 1005 or DSPM 0850 MATH 1710 College Algebra Course Syllabus Spring 2014 Course Information Course Description: Learning Outcomes: Prerequisites: Course Topics: This course emphasizes analysis of functions and graphs, complex

More information

Introduction to Computer Forensics Course Syllabus Spring 2012

Introduction to Computer Forensics Course Syllabus Spring 2012 Course Information Course Syllabus Spring 2012 Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Tues/Thurs 11 a.m. noon Weds 9 a.m. noon

More information

CS 261 C and Assembly Language Programming. Course Syllabus

CS 261 C and Assembly Language Programming. Course Syllabus CS 261 C and Assembly Language Programming Course Syllabus Spring 2016 Lecture: Tuesdays and Thursdays 9:10AM to 10:25 in VSCI 255 3 Semester Hours Instructor: Dick Lang, Ph.D. dick_lang@vancouver.wsu.edu

More information

EDAD 5030: Integrating Information & Academic Technologies into Educational Practice and Professional Life

EDAD 5030: Integrating Information & Academic Technologies into Educational Practice and Professional Life Educational Leadership Post-Master Program Course: EDAD 5030: Integrating Information & Academic Technologies into Educational Practice and Professional Life Instructor: Dr. Yiping Wan Spring, 2010 Phone:

More information

Critical Thinking Syllabus

Critical Thinking Syllabus Critical Thinking Syllabus Late Start: This class begins on April 6, 2015 DePaul University School for New Learning Critical Thinking LL270, Section 905; Monday, Loop 5:45-9:00 Spring Quarter 2015 This

More information

Intermediate Economics II: Macroeconomics Economics 512: ONLINE Spring 2015

Intermediate Economics II: Macroeconomics Economics 512: ONLINE Spring 2015 Intermediate Economics II: Macroeconomics Economics 512: ONLINE Spring 2015 Purdue University Krannert School of Management Department of Economics Instructor Matthew Hoelle E-mail: Skype: Google Hangout:

More information

Introduction to Computer Programming Course Syllabus Fall 2012

Introduction to Computer Programming Course Syllabus Fall 2012 Course Syllabus Fall 2012 Course Information Instructor: Dr. Mike Jochen Phone: 570.422.3036 Email: mjochen@esu.edu Office: 337 SCITECH Building Office Hours: Tues/Thurs 12:45 1:45 p.m. Weds 9:30 a.m.

More information

02-201: Programming for Scientists

02-201: Programming for Scientists 1. Course Information 1.1 Course description 02-201: Programming for Scientists Carl Kingsford Fall 2015 Provides a practical introduction to programming for students with little or no prior programming

More information

Math 3E - Linear Algebra (3 units)

Math 3E - Linear Algebra (3 units) Math 3E - Linear Algebra (3 units) Fall 2015 Peralta Class Code 40772 Berkeley City College Class Hours & Location: TuTh 11AM- 12:15PM, BCC Room 422 (Fourth Floor) Instructor: Patrick Zulkowski Office

More information

Syllabus. School of Informatics and Computing Information Governance (Info- I400) Fall 2015

Syllabus. School of Informatics and Computing Information Governance (Info- I400) Fall 2015 Course Information Syllabus School of Informatics and Computing Information Governance (Info- I400) Fall 2015 Credit Hours: 3 Elective for graduate and undergraduate new media and informatics degrees and

More information

Financial Optimization ISE 347/447. Preliminaries. Dr. Ted Ralphs

Financial Optimization ISE 347/447. Preliminaries. Dr. Ted Ralphs Financial Optimization ISE 347/447 Preliminaries Dr. Ted Ralphs ISE 347/447 Preliminaries 1 Introductory Stuff Welcome! Class Meeting Time Office Hours TBD Surveys ISE 347/447 Preliminaries 2 What will

More information

NURS 5324 Health Care Informatics COURSE SYLLABUS

NURS 5324 Health Care Informatics COURSE SYLLABUS Course Description NURS 5324 Health Care Informatics COURSE SYLLABUS This course prepares the student to utilize informatics and health care technologies in the management of individuals, groups and organizations

More information

NEW YORK UNIVERSITY Leonard N. Stern School of Business Department of Accounting, Taxation and Business Law

NEW YORK UNIVERSITY Leonard N. Stern School of Business Department of Accounting, Taxation and Business Law NEW YORK UNIVERSITY Leonard N. Stern School of Business Department of Accounting, Taxation and Business Law Professor Jeanne Calderon Department of Accounting, Taxation and Business Law Tisch: Room 309

More information

CSC 341, section 001 Principles of Operating Systems Spring 2015 Monday/Wednesday 1:00 PM 2:15 PM

CSC 341, section 001 Principles of Operating Systems Spring 2015 Monday/Wednesday 1:00 PM 2:15 PM CSC 341, section 001 Principles of Operating Systems Spring 2015 Monday/Wednesday 1:00 PM 2:15 PM Dr. Robert Ball 303C McKibben ballrg@sfasu.edu (936) 468-2508 Course Description Operating systems principles,

More information

Learn how to store and analyze Big Data Learn about the cloud and its services for Big Data

Learn how to store and analyze Big Data Learn about the cloud and its services for Big Data CS-495/595 Big Data: Syllabus Spring 2015 Wed. 4:20PM - 7:00PM Constant Hall 1043 Instructor: Dr. Cartledge http://www.cs.odu.edu/ ccartled/teaching Big data is quadrupling every year!! Everyone is creating

More information

Course information: Copy and paste current course information from Class Search/Course Catalog.

Course information: Copy and paste current course information from Class Search/Course Catalog. GENERAL STUDIES COURSE PROPOSAL COVER FORM Course information: Copy and paste current course information from Class Search/Course Catalog. Academic Unit Informatics Department CIDSE Subject CPI Number

More information

Parsons The New School for Design Communication Design. Interaction: Core Lab PUCD 2126 A / CRN: 6125 Fall 2015

Parsons The New School for Design Communication Design. Interaction: Core Lab PUCD 2126 A / CRN: 6125 Fall 2015 Parsons The New School for Design Communication Design Interaction: Core Lab PUCD 2126 A / CRN: 6125 Fall 2015 Fridays, 3:50 6:30pm 63 Fifth Avenue, Room 204 Brendan Griffiths griffitb@newschool.edu Class

More information

H. JOHN HEINZ III COLLEGE CARNEGIE MELLON UNIVERSITY PROJECT MANAGEMENT SPRING 2015 94813 A3 / B3 COURSE SYLLABUS

H. JOHN HEINZ III COLLEGE CARNEGIE MELLON UNIVERSITY PROJECT MANAGEMENT SPRING 2015 94813 A3 / B3 COURSE SYLLABUS H. JOHN HEINZ III COLLEGE CARNEGIE MELLON UNIVERSITY PROJECT MANAGEMENT SPRING 2015 94813 A3 / B3 COURSE SYLLABUS INSTRUCTOR TEACHING ASSISTANTS Laura W. Synnott Lara Dorko ldorko@andrew.cmu.edu Associate

More information