Preamble
- Course Title: Introduction to Internet Programming (cs 275)
- CRN: 20190
- Credits: 3
- Prerequisites: cs 111 or cs 114
- Days: Tuesday and Thursday
- Time: 12:45 – 2:00 pm
- Room: Charles A Dana Hall, 318 (map )
- Dates: 23 January – 6 May 2025
- Professor: Roy Vanegas (pronounced “vuh-nay-gus”)
- Email: vanegas at hartford dot edu
- Phone: 860.768.5925
- Office: Charles A Dana Hall, 310B
- Office hours:
I meet students in my office by appt — via Compass — at the times noted below. (Meeting via videoconference is also an option.) If this time slot isn’t feasible, contact me to make an appt — vanegas@hartford.edu.
- Tuesday and Thursdays: 8:00 – 11:00 am
Description
This course serves as an introduction to programming models used to generate and support Web-based applications. The course covers markup, presentation, and front-end interactivity concerns through an in-depth examination of current client-side scripting techniques. Other topics include the document-object model (dom), event-driven programming, form validation, debugging, and asynchronous web processing.
Learning Outcomes
Upon successful completion of this course, students will understand...
- how to alter the dom dynamically using JavaScript;
- how to asynchronously alter the dom via web interactions;
- how to write JavaScript programs using modern JavaScript syntax;
- how to dynamically handle form input;
- and, how to author semi-advanced, static web pages using a modern front-end web stack.
Software Requirements
All the software required for this course is free and listed below.
Browsers (Mac and Windows)
Download all the browsers available at Browse Happy. Some students might also want Chrome Canary, Safari Technology Preview, Firefox Developer Edition, and Firefox Nightly. I use Firefox, Brave, and Chrome in class.
Git Client (Mac, Windows, Linux)
All in-class examples, assignments, and help is done via GitHub. Download the client for your computer here.
Text Editor (Mac, Windows, Linux)
The code you write will require a text editor. Although there are many on the market, such as Sublime Text (nagware), for example, vs Code (open source) is the only editor supported in class. Download the Linux, Windows, or macOS version from https://code.visualstudio.com/.
Node (Mac, Windows, Linux)
Node.js is the back-end JavaScript runtime environment that we’ll use alongside (and sometimes instead of) the browser to work with JavaScript. Download the latest stable release from nodejs.org and follow the default instructions. Note: Installing Node also installs npm, Node’s package manager.
EditorConfig (Mac, Windows, Linux)
EditorConfig is a tool that enforces consistent coding styles for everyone who works on a codebase. In our case, that codebase consists of all the examples in class and all the assignments you’ll submit throughout the semester. EditorConfig consists of an extension and a configuration file (.editorconfig
) that goes in your home — or project — folder. Some editors and ides have EditorConfig built in. vs Code, unfortunately, is not one of them. Install the EditorConfig extension for vs Code from here, then download this .editorconfig
file and place it in your home folder. Ensure the file name is exactly .editorconfig
, starting with a dot and without a file extension.
ESLint (Mac, Windows, Linux)
ESLint is a JavaScript code linter that will help to make sure your code is free of errors and bad practices. Note: Before proceeding, you must have installed Node and NPM.
Once installed, launch The Terminal and initiate the configuration process: eslint --init. Configure ESLint according to the following settings:

Textbook
JavaScript: The Definitive Guide
- 7th edition
- 978-1-491-95202-3 (isbn-13)
- David Flanagan
Schedule
Notable Dates
- Wednesday, 22 January 2025 (Week 1) — First day of classes
- Sunday, 16 March – Saturday, 22 March 2025 (Week 9) — No class (Spring recess)
- Tuesday, 8 April 2025 (Week 12) — Last day to change to pass/no pass, or vice versa; last day to withdraw with a grade of W
- Tuesday, 6 May 2025 (Week 16) — Last day of classes
Note: Time permitting, I will make every attempt to cover the topics listed below in order. However, depending on the cadence of the class, some topics may be overlooked.
Week | Class | Topics | Homework |
---|---|---|---|
1 | |||
Thur |
|
|
|
2 | Tue |
|
|
Thur |
|
||
3 | Tue |
|
|
Thur |
|
|
|
4 | Tue |
|
|
Thur |
|
|
|
5 | Tue |
|
|
Thur |
|
|
|
6 | Tue |
|
|
Thur |
|
|
|
7 | Tue |
|
|
Thur |
|
|
|
8 | Tue |
|
|
Thur |
|
|
|
9 | Tue | Spring Recess | None. Enjoy your break! |
Thur | Spring Recess | None. Enjoy your break! | |
10 | Tue |
|
|
Thur |
|
|
|
11 | Tue |
|
|
Thur |
|
|
|
12 | Tue |
|
|
Thur |
|
|
|
13 | Tue |
|
|
Thur |
|
|
|
14 | Tue |
|
|
Thur |
|
|
|
15 | Tue |
|
|
Thur |
|
|
|
16 | Tue |
|
None. Enjoy your break! |
Assignments
There are three homework-type assignments and one final project. (See the Grading section to better understand what percentage of your final grade each is worth.)
Note: Broken links in the list below will be updated once each assignment is assigned a due date.
Grading
Your grade for this course will be computed using the following formula:
- Assignments (45%)
- Assignment 1 — 15%
- Assignment 2 — 15%
- Assignment 3 — 15%
- Final project (45%)
- Attendance and participation (10%)
To calculate your final grade, convert to decimal the percentages above and the grades you’ve earned. For example, if you got an 80 on the first assignment, a 93 on the second assignment, a 60 on the third assignment, a 100 on your final project, and 100 for attendance, then you’d use the following formula:
(.80 × .15) + (.93 × .15) + (.60 × .15) + (1 × .45) + (1 × .10) = 89%
I do not give grades; students earn them. The grade you earn is based strictly on the outlined formula clearly listed in this section.
This grading formula is unbending and will be adhered to strictly.
Important Note
Please do not try to negotiate a grade with me. By asking me to treat you favorably, you’re requesting that I put you above your classmates. Manage your time well; I do not accept late work.
Class Policies
- Consuming food in class. There is no eating inside our classroom, either during class or while on break. Eat before or after class. Drinks in covered containers, however, are allowed.
- Digital devices. Silence your mobile devices before class starts.
No AI Use in Class
The use of generative ai tools is strictly forbidden in this course. All programming assignments — and any labs — associated with this course must be completed without the assistance of ai-generated content. This policy is in place to ensure that the work submitted is authentically yours and reflects your personal understanding and capabilities. Violations of this policy will be considered academic dishonesty and will be subject to disciplinary actions as outlined in the university’s academic honesty policy.
Academic Honesty
Cheating of any kind will not be tolerated in this course; make certain that all the work you submit is your own. Refresh your understanding of the college’s policy on academic honesty.
Students with Disabilities
If you have a documented disability for which you are requesting accommodation, you are encouraged to contact Access-Ability Services as soon as possible by calling 860.768.4312, emailing tlopez@hartford.edu, or by stopping by the Access-Ability Services office in Auerbach Hall, Room 209. If your request for accommodations is approved, an accommodation letter will be emailed to your instructor(s) upon your request. Please discuss your accommodations with the instructor as soon as possible to make appropriate arrangements. Note: Student requests for accommodations must be filed each semester. Visit https://www.hartford.edu/academics/academic-support/accessibility-services/ and click the “Registering” link for more info and a link to a video that walks you through the process.
Title IX and Sexual Assault
Sexual violence and other forms of sexual misconduct and harassment, including stalking and intimate partner violence, are prohibited under Title ix, federal and state law, and University of Hartford policy. Information on the University’s policies against sexual violence can be found at https://www.hartford.edu/about/policies/title-ix/. Resources regarding sexual violence can be found at https://www.hartford.edu/about/policies/title-ix/on-off-campus-resources.aspx
Note: University of Hartford faculty, staff, and ras are required to report incidents of sexual misconduct to the Title ix Office (title9@hartford.edu). For further information on The University’s policies and resources, please contact Jason Martinez (860.768.5255; jamartine@hartford.edu) or Justin Bell (860.768.4880; jbell@hartford.edu).
Mental Health and Well-Being
Mental Health is an important aspect of students’ well-being and integral to positive academic experiences and success. If, during the semester, you experience difficulties and would like support, consider contacting the University of Hartford’s caps, or Counseling and Psychological Services, which offers a range of short-term counseling services available to full-time undergraduate students at no additional cost, and to part-time undergraduate and graduate students for a small fee.
caps is located in Gengras Student Union, Room 313 , and can be reached by calling 860.768.4482 or emailing Liz Inkel at inkel@hartford.edu. Office hours are Monday – Friday, 8:30 AM – 4:30 PM.
Advice on Succeeding in Class
Read over the following to understand procedures for maximizing your chances of succeeding in class.
- Advice for Succeeding in Class (in pdf)
- Advice for Succeeding in Class (in Markdown)
Office Hours
I meet students in my office by appt — via Compass — at the times noted below. (Meeting via videoconference is also an option.) If this time slot isn’t feasible, contact me to make an appt — vanegas@hartford.edu.
- Tuesday and Thursdays: 8:00 – 11:00 am
Contact
Nowadays, I only use email for emergency situations, such as a pet emergencies, personal tragedies, etc. For matters related to our course, you’re advised to see me before or after class, during my office hours, or by appointment. My contact info is listed in the Preamble.