Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/28/2021, 5:31 PM
Resolved issue when copying files from cloud shell machine to storage bucket.
Use the -A option for cp command to overwrite the file on your cloud
storage bucket
gsutil cp -A first.html gs://johnspizza2/
Tuesday, September 28, 2021
Monday, September 27, 2021
Office Hours are Tuesday this week,, 9/27/2021, 6:00 PM, English, 9/27/2021, 6:00 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/27/2021, 6:00 PM
This weeks office hours will be Tuesday from 5:00pm to 6:00pm please
send email if you plan on joining
Office Hours Remote: Tuesday 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Classroom blog: googleclouduconn.blogspot.com
9/27/2021, 6:00 PM
This weeks office hours will be Tuesday from 5:00pm to 6:00pm please
send email if you plan on joining
Office Hours Remote: Tuesday 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Sunday, September 26, 2021
Assignment #4 due 10/7/21, 9/26/2021, 11:32 PM, English, 9/26/2021, 11:32 PM
9/26/2021, 11:32 PM
Assignment #4 due 10/7/21
Build a Python Invoicer program that lists 4 items that you want to
sell and produce a total.
Note you can not duplicate my items.
https://uconnstamfordslp.blogspot.com/p/python-invoicer.html
#!/usr/bin/python3
# DATA TYPE Examples
########## DICTIONARY #################
cust_name = input("Customer name: ")
cust_address = input(" Address: ")
cust_city = input(" City: ")
cust_state = input(" State: ")
cust_zip = input(" Zip: ")
print(cust_name)
print(cust_address)
items = {"plates" : 3, "cups" : 1, "glasses" : 2}
for x in items:
print(x, items[x])
no_plates = input("Number of Plates: ")
no_cups = input("Number of Cups: ")
no_glasses = input("Number of Glasses: ")
total_plates = int(no_plates) * int(items["plates"])
total_cups = int(no_cups) * int(items["cups"])
total_glasses = int(no_glasses) * int(items["glasses"])
total_charge = int(total_plates) + int(total_cups) + int(total_glasses)
print(cust_name)
print(cust_address)
print(cust_city)
print(cust_zip)
print(total_charge)
myplates = "You Bought {} number of plates at {} = {} dollars."
print(myplates.format(no_plates, items["plates"], total_plates))
mycups = " {} number of cups at {} = {} dollars."
print(mycups.format(no_cups, items["cups"], total_cups))
myglasses = " {} number of glasses at {} = {} dollars."
print(myglasses.format(no_glasses, items["glasses"], total_glasses))
mytotal = " Total Amount Due = {} dollars."
print(mytotal.format(total_charge))
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$ python3
invoicer.py
Customer name: John
Address: 55 daffodil Rd
City: Stamford
State: CT
Zip: 06903
John
55 daff
plates 3
cups 1
glasses 2
Number of Plates: 5
Number of Cups: 5
Number of Glasses: 5
John
55 daff
Stamford
06903
30
You Bought 5 number of plates at 3 = 15 dollars.
5 number of cups at 1 = 5 dollars.
5 number of glasses at 2 = 10 dollars.
Total Amount Due = 30 dollars.
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$
#!/usr/bin/python3
# DATA TYPE Examples
########## DICTIONARY #################
cust_name = input("Customer name: ")
cust_address = input(" Address: ")
cust_city = input(" City: ")
cust_state = input(" State: ")
cust_zip = input(" Zip: ")
print(cust_name)
print(cust_address)
items = {"plates" : 3, "cups" : 1, "glasses" : 2}
for x in items:
print(x, items[x])
no_plates = input("Number of Plates: ")
no_cups = input("Number of Cups: ")
no_glasses = input("Number of Glasses: ")
total_plates = int(no_plates) * int(items["plates"])
total_cups = int(no_cups) * int(items["cups"])
total_glasses = int(no_glasses) * int(items["glasses"])
total_charge = int(total_plates) + int(total_cups) + int(total_glasses)
print(cust_name)
print(cust_address)
print(cust_city)
print(cust_zip)
print(total_charge)
myplates = "You Bought {} number of plates at {} = {} dollars."
print(myplates.format(no_plates, items["plates"], total_plates))
mycups = " {} number of cups at {} = {} dollars."
print(mycups.format(no_cups, items["cups"], total_cups))
myglasses = " {} number of glasses at {} = {} dollars."
print(myglasses.format(no_glasses, items["glasses"], total_glasses))
mytotal = " Total Amount Due = {} dollars."
print(mytotal.format(total_charge))
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$ python3
invoicer.py
Customer name: John
Address: 55 daffodil Rd
City: Stamford
State: CT
Zip: 06903
John
55 daff
plates 3
cups 1
glasses 2
Number of Plates: 5
Number of Cups: 5
Number of Glasses: 5
John
55 daff
Stamford
06903
30
You Bought 5 number of plates at 3 = 15 dollars.
5 number of cups at 1 = 5 dollars.
5 number of glasses at 2 = 10 dollars.
Total Amount Due = 30 dollars.
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$
email me the code and the output from the code
Saturday, September 25, 2021
In person class resumes next week 9/27 and 9/29, 9/25/2021, 5:05 PM, English, 9/25/2021, 5:05 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/25/2021, 5:05 PM
In person class resumes next week 9/27 and 9/29
Homework assignment #3 due 9/30
https://uconnstamfordslp.blogspot.com/2021/09/assignment-3-due-thursday-930-9212021.html
Midterm exam based on book chapters 1,3, 8, 9, 11, 12 and 4 scheduled
Monday 10/11 and Wednesday 10/13 at 7:30pm
Classroom blog: googleclouduconn.blogspot.com
9/25/2021, 5:05 PM
In person class resumes next week 9/27 and 9/29
Homework assignment #3 due 9/30
https://uconnstamfordslp.blogspot.com/2021/09/assignment-3-due-thursday-930-9212021.html
Midterm exam based on book chapters 1,3, 8, 9, 11, 12 and 4 scheduled
Monday 10/11 and Wednesday 10/13 at 7:30pm
Tuesday, September 21, 2021
Assignment #3 due Thursday 9/30, 9/21/2021, 6:17 PM, English, 9/21/2021, 6:17 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/21/2021, 6:17 PM
Assignment #3 Create an app engine python program that creates a
comment form and display the comments back to the user like the
example below.
https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
Change the html forms to identify the name of your start up company
E.g. UCONN Stamford Development Student Club is my organization that
uses the name of the company you want to represent.
Due 9/30/21
Please send me your app engine link
Classroom blog: googleclouduconn.blogspot.com
9/21/2021, 6:17 PM
Assignment #3 Create an app engine python program that creates a
comment form and display the comments back to the user like the
example below.
https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
Change the html forms to identify the name of your start up company
E.g. UCONN Stamford Development Student Club is my organization that
uses the name of the company you want to represent.
Due 9/30/21
Please send me your app engine link
Monday, September 20, 2021
simple example, 9/20/2021, 8:39 PM, English, 9/20/2021, 8:39 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/20/2021, 8:39 PM
first.html
====================
<!DOCTYPE html>
<html>
<head>
<title>Very simple example
</title>
</head>
<body>
This will appear as is.
<a href="https://storage.cloud.google.com/johnspizza2/second.html">clickable
text</a><br>
</body>
</html>
============================================================================
second.html
============================================================================
<!DOCTYPE html>
<html>
<head>
<title>second
</title>
</head>
<body>
second
<img src="https://uconnhuskies.com/images/logos/site/site.png"/>
</body>
</html>
=========================================================================
Classroom blog: googleclouduconn.blogspot.com
9/20/2021, 8:39 PM
first.html
====================
<!DOCTYPE html>
<html>
<head>
<title>Very simple example
</title>
</head>
<body>
This will appear as is.
<a href="https://storage.cloud.google.com/johnspizza2/second.html">clickable
text</a><br>
</body>
</html>
============================================================================
second.html
============================================================================
<!DOCTYPE html>
<html>
<head>
<title>second
</title>
</head>
<body>
second
<img src="https://uconnhuskies.com/images/logos/site/site.png"/>
</body>
</html>
=========================================================================
gsutil cp -A first.html gs://johnspizza2/
Saturday, September 18, 2021
Remote class on Monday and Wednesday next week, 9/18/2021, 4:57 PM, English, 9/18/2021, 4:57 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/18/2021, 4:57 PM
Remote classes on 9/20 and 9/22
We will be moving to remote classes next week.
Link for Monday's class is
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=mc369d6628f81a422da58529a7f923fd4
Monday, Sep 20, 2021 6:20 pm | 2 hours 50 minutes | (UTC-04:00)
Eastern Time (US & Canada)
Meeting number: 2623 024 7030
Password: uconn
Link for Wednesday class is
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=m00ff6096a126d9e67a422ddf6a085468
Wednesday, Sep 22, 2021 6:20 pm | 2 hours 50 minutes | (UTC-04:00)
Eastern Time (US & Canada)
Meeting number: 2621 642 4770
Password: uconn
I've also put a link to both assignments on the blog in top right corner.
https://uconnstamfordslp.blogspot.com/
The second assignment is due on 9/23.
No late penalties for assignment 1 but they will start with second assignment.
We will be covering compute and app engine next week for assignment 3
due 9/30. (not sent yet)
Classroom blog: googleclouduconn.blogspot.com
9/18/2021, 4:57 PM
Remote classes on 9/20 and 9/22
We will be moving to remote classes next week.
Link for Monday's class is
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=mc369d6628f81a422da58529a7f923fd4
Monday, Sep 20, 2021 6:20 pm | 2 hours 50 minutes | (UTC-04:00)
Eastern Time (US & Canada)
Meeting number: 2623 024 7030
Password: uconn
Link for Wednesday class is
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=m00ff6096a126d9e67a422ddf6a085468
Wednesday, Sep 22, 2021 6:20 pm | 2 hours 50 minutes | (UTC-04:00)
Eastern Time (US & Canada)
Meeting number: 2621 642 4770
Password: uconn
I've also put a link to both assignments on the blog in top right corner.
https://uconnstamfordslp.blogspot.com/
The second assignment is due on 9/23.
No late penalties for assignment 1 but they will start with second assignment.
We will be covering compute and app engine next week for assignment 3
due 9/30. (not sent yet)
Wednesday, September 15, 2021
Tonight, Wed 9/15 class will be remote via webex, 9/15/2021, 2:39 PM, English, 9/15/2021, 2:39 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/15/2021, 2:39 PM
Remote Class tonight 9/15 will be remote starting at 6:20pm
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=m06818fc72e1c779279d3c23c1bab80bb
Password: uconn
Please make every effort to attend.
Contact me directly with any issues
Classroom blog: googleclouduconn.blogspot.com
9/15/2021, 2:39 PM
Remote Class tonight 9/15 will be remote starting at 6:20pm
https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=m06818fc72e1c779279d3c23c1bab80bb
Password: uconn
Please make every effort to attend.
Contact me directly with any issues
Tuesday, September 14, 2021
Assignment # 2 due 9/23/21, 9/14/2021, 9:03 PM, English, 9/14/2021, 9:03 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/14/2021, 9:03 PM
Assignment #2 please send me the link to your index.html page
https://storage.googleapis.com/uconnstamforddsc/index.html
Public URL
https://uconnstamfordslp.blogspot.com/p/web-assignment.html
In the example you will create 3 separate web pages
index.html
about.html
yourtopic.html (mine was boy sand girls club yours can be what you choose)
the index page is 1.
then the other 2 are linked from the index page using <a href> tags
<li><a href="https://storage.googleapis.com/uconnstamforddsc/about.html">About
US</a>
</li>
<li><a href="https://storage.googleapis.com/uconnstamforddsc/bgclub.html">Boys
and Girls Club of Stamford</a>
</li>
each page is created separately using a editor the uploaded to the
cloud storage bucket.
on the 3 html page I uploaded 2 images to my cloud bucket and using
the image tag pointed to them.
onclick="document.getElementById('myImage').src="https://storage.googleapis.com/uconnstamforddsc/bear.jpg'">My
Dog</button>
Images can be downloaded from the internet, stored and named on your
local machines.
uploaded from your folder that you downloaded the image to
Come up with an idea for a startup company. It can provide goods or services.
Design a simple 3 page web site for that company.
Create the 3 web pages on Google cloud storage bucket.
One main page that will have links to 2 other pages.
One page that has css on the page.
One page that has javascript.
Use your own content and your own images.
Can use the framework below.
https://uconnstamfordslp.blogspot.com/p/web-assignment.html
Classroom blog: googleclouduconn.blogspot.com
9/14/2021, 9:03 PM
Assignment #2 please send me the link to your index.html page
https://storage.googleapis.com/uconnstamforddsc/index.html
Public URL
https://uconnstamfordslp.blogspot.com/p/web-assignment.html
In the example you will create 3 separate web pages
index.html
about.html
yourtopic.html (mine was boy sand girls club yours can be what you choose)
the index page is 1.
then the other 2 are linked from the index page using <a href> tags
<li><a href="https://storage.googleapis.com/uconnstamforddsc/about.html">About
US</a>
</li>
<li><a href="https://storage.googleapis.com/uconnstamforddsc/bgclub.html">Boys
and Girls Club of Stamford</a>
</li>
each page is created separately using a editor the uploaded to the
cloud storage bucket.
on the 3 html page I uploaded 2 images to my cloud bucket and using
the image tag pointed to them.
onclick="document.getElementById('myImage').src="https://storage.googleapis.com/uconnstamforddsc/bear.jpg'">My
Dog</button>
Images can be downloaded from the internet, stored and named on your
local machines.
uploaded from your folder that you downloaded the image to
Come up with an idea for a startup company. It can provide goods or services.
Design a simple 3 page web site for that company.
Create the 3 web pages on Google cloud storage bucket.
One main page that will have links to 2 other pages.
One page that has css on the page.
One page that has javascript.
Use your own content and your own images.
Can use the framework below.
https://uconnstamfordslp.blogspot.com/p/web-assignment.html
Wednesday, September 8, 2021
Blog address https://uconnstamfordslp.blogspot.com/, 9/8/2021, 6:06 PM, English, 9/8/2021, 6:06 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/8/2021, 6:06 PM
Blog Address https://uconnstamfordslp.blogspot.com/
Unfortunately the wrong address gets emailed out
yllabus Fall 2021
Syllabus
ENGR 1166: Foundations of Engineering - Z81 / Z82
Fall 2021
Instructor: John A. Iacovacci/Tendai Gomo
John.iacovacci1@gmail.com; john.iacovacci@uconn.edu; Tendai@tendaigomo.com
Cell Phone: 917-701-6177
Lectures Mondays 6:20-8:50 pm Room DWTN 305A
Wednesdays 6:20-8:50 pm Room DWTN 305G
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Our Class Website is https://uconnstamfordslp.blogspot.com/
Book: Google Cloud Platform in Action JJ Geewax
eBook: https://livebook.manning.com/book/google-cloud-platform-in-action
Catalog Description
ENGR 1166 - Provides an in depth study of the Google cloud platform.
We will be focusing on learning various aspects of the google cloud
using small assignments related to cloud concepts. The class format is
based upon the first half lecture then the second half hands on
workshop. The environment is hosted at cloud.google.com.
$300 of cloud services is budgeted for each student by google. A
credit card is needed to get google credit. Students will not be
spending the entire $300 google credit so no costs should be incurred.
Objectives
At the end of the course, the students should be able to understand
and be able to develop applications on the google cloud. The concepts
will include virtual machines, MySQL, NoSQL, BigQuery, Document
Storage, Linux, HTML/CSS, Javascript, Security, Python, GitHub, Google
API's, Cloud Functions, Networking, Authentication, Encryption,
Machine Learning and Artificial Intelligence.
General Requirements & Expectations
1. Attendance: Students are expected to attend all lectures.
Attendance will be taken. Students will have the option of attending
Monday or Wednesday depending upon desk space.
Reading and assignments are required. Each class will have assignments
required as well as projects due at different times during the term.
2. Make sure you check your UCONN.EDU e-mail account regularly, or
have it forwarded to an account that you use regularly. Otherwise you
may miss important announcements.
Grading Percentages
Description Percent of course grade
Class assignments: 12 assignments 60%
Midterm and Final : 40%
Date
Codelab / Reading
8/30-9/1
Week 1 Chapter 1/3 What is the Cloud / Data Center / Linux
Linux assignment
9/8-9/13
Week 2 Chapter 8. Cloud Storage / HTML CSS Javascript
HTML assignment
9/15-9/20
Week 3 Chapter 9/11 Compute Engine / App Engine
App Engine Example
9/22-9/27
Week 4 Chapter 12 Cloud Functions / Python /Github
Python Assignment
9/29-10/4
Week 4 Chapter 4 Cloud SQL / MySQL
MySQL Assignment
10/6-10/11
Week 6 Chapter 5 Document Storage / Firestore (Midterm Exam)
NoSQL Assignment
10/13-10/18
Week 13 Chapter 19/20. Big Query / Dataflow
Big Query Assignment
10/20-10/25
Week 8 Chapter 13 Cloud DNS (security)
TBD
10/27-11/1
Week 9 Security IAM & Admin
Encryption Assignment
11/3-11/8
Week 10 Security
Authentication Assignment
11/10-11/15
Week 11 Chapter 14/15. Cloud Vision /Text Analysis
Vision Assignments
11-17
Week 12 Chapter 16/17. Cloud Speech / Translations
Translation Assignment
11/21-11/28
off
11/29-12/1
Week 13 Chapter 18 Machine Learning
Machine Learning Assignment
12/6-12/8
All project work due
Academic Honesty
Students should refer to the Student Code (see section on Academic Integrity -
http://www.dos.uconn.edu/student_code.html) for specific guidelines.
Students with Disabilities
Students with disabilities who believe they may need accommodations in
this class are encouraged
to contact the Center for Students with Disabilities (486-2020) as
soon as possible to better ensure that such accommodations are
implemented in a timely fashion.
Classroom blog: googleclouduconn.blogspot.com
9/8/2021, 6:06 PM
Blog Address https://uconnstamfordslp.blogspot.com/
Unfortunately the wrong address gets emailed out
yllabus Fall 2021
Syllabus
ENGR 1166: Foundations of Engineering - Z81 / Z82
Fall 2021
Instructor: John A. Iacovacci/Tendai Gomo
John.iacovacci1@gmail.com; john.iacovacci@uconn.edu; Tendai@tendaigomo.com
Cell Phone: 917-701-6177
Lectures Mondays 6:20-8:50 pm Room DWTN 305A
Wednesdays 6:20-8:50 pm Room DWTN 305G
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Our Class Website is https://uconnstamfordslp.blogspot.com/
Book: Google Cloud Platform in Action JJ Geewax
eBook: https://livebook.manning.com/book/google-cloud-platform-in-action
Catalog Description
ENGR 1166 - Provides an in depth study of the Google cloud platform.
We will be focusing on learning various aspects of the google cloud
using small assignments related to cloud concepts. The class format is
based upon the first half lecture then the second half hands on
workshop. The environment is hosted at cloud.google.com.
$300 of cloud services is budgeted for each student by google. A
credit card is needed to get google credit. Students will not be
spending the entire $300 google credit so no costs should be incurred.
Objectives
At the end of the course, the students should be able to understand
and be able to develop applications on the google cloud. The concepts
will include virtual machines, MySQL, NoSQL, BigQuery, Document
Storage, Linux, HTML/CSS, Javascript, Security, Python, GitHub, Google
API's, Cloud Functions, Networking, Authentication, Encryption,
Machine Learning and Artificial Intelligence.
General Requirements & Expectations
1. Attendance: Students are expected to attend all lectures.
Attendance will be taken. Students will have the option of attending
Monday or Wednesday depending upon desk space.
Reading and assignments are required. Each class will have assignments
required as well as projects due at different times during the term.
2. Make sure you check your UCONN.EDU e-mail account regularly, or
have it forwarded to an account that you use regularly. Otherwise you
may miss important announcements.
Grading Percentages
Description Percent of course grade
Class assignments: 12 assignments 60%
Midterm and Final : 40%
Date
Codelab / Reading
8/30-9/1
Week 1 Chapter 1/3 What is the Cloud / Data Center / Linux
Linux assignment
9/8-9/13
Week 2 Chapter 8. Cloud Storage / HTML CSS Javascript
HTML assignment
9/15-9/20
Week 3 Chapter 9/11 Compute Engine / App Engine
App Engine Example
9/22-9/27
Week 4 Chapter 12 Cloud Functions / Python /Github
Python Assignment
9/29-10/4
Week 4 Chapter 4 Cloud SQL / MySQL
MySQL Assignment
10/6-10/11
Week 6 Chapter 5 Document Storage / Firestore (Midterm Exam)
NoSQL Assignment
10/13-10/18
Week 13 Chapter 19/20. Big Query / Dataflow
Big Query Assignment
10/20-10/25
Week 8 Chapter 13 Cloud DNS (security)
TBD
10/27-11/1
Week 9 Security IAM & Admin
Encryption Assignment
11/3-11/8
Week 10 Security
Authentication Assignment
11/10-11/15
Week 11 Chapter 14/15. Cloud Vision /Text Analysis
Vision Assignments
11-17
Week 12 Chapter 16/17. Cloud Speech / Translations
Translation Assignment
11/21-11/28
off
11/29-12/1
Week 13 Chapter 18 Machine Learning
Machine Learning Assignment
12/6-12/8
All project work due
Academic Honesty
Students should refer to the Student Code (see section on Academic Integrity -
http://www.dos.uconn.edu/student_code.html) for specific guidelines.
Students with Disabilities
Students with disabilities who believe they may need accommodations in
this class are encouraged
to contact the Center for Students with Disabilities (486-2020) as
soon as possible to better ensure that such accommodations are
implemented in a timely fashion.
Blog address , 9/8/2021, 6:05 PM, English, 9/8/2021, 6:05 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/8/2021, 6:05 PM
Blog Address https://uconnstamfordslp.blogspot.com/
Unfortunately the wrong address gets emailed out
yllabus Fall 2021
Syllabus
ENGR 1166: Foundations of Engineering - Z81 / Z82
Fall 2021
Instructor: John A. Iacovacci/Tendai Gomo
John.iacovacci1@gmail.com; john.iacovacci@uconn.edu; Tendai@tendaigomo.com
Cell Phone: 917-701-6177
Lectures Mondays 6:20-8:50 pm Room DWTN 305A
Wednesdays 6:20-8:50 pm Room DWTN 305G
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Our Class Website is https://uconnstamfordslp.blogspot.com/
Book: Google Cloud Platform in Action JJ Geewax
eBook: https://livebook.manning.com/book/google-cloud-platform-in-action
Catalog Description
ENGR 1166 - Provides an in depth study of the Google cloud platform.
We will be focusing on learning various aspects of the google cloud
using small assignments related to cloud concepts. The class format is
based upon the first half lecture then the second half hands on
workshop. The environment is hosted at cloud.google.com.
$300 of cloud services is budgeted for each student by google. A
credit card is needed to get google credit. Students will not be
spending the entire $300 google credit so no costs should be incurred.
Objectives
At the end of the course, the students should be able to understand
and be able to develop applications on the google cloud. The concepts
will include virtual machines, MySQL, NoSQL, BigQuery, Document
Storage, Linux, HTML/CSS, Javascript, Security, Python, GitHub, Google
API's, Cloud Functions, Networking, Authentication, Encryption,
Machine Learning and Artificial Intelligence.
General Requirements & Expectations
1. Attendance: Students are expected to attend all lectures.
Attendance will be taken. Students will have the option of attending
Monday or Wednesday depending upon desk space.
Reading and assignments are required. Each class will have assignments
required as well as projects due at different times during the term.
2. Make sure you check your UCONN.EDU e-mail account regularly, or
have it forwarded to an account that you use regularly. Otherwise you
may miss important announcements.
Grading Percentages
Description Percent of course grade
Class assignments: 12 assignments 60%
Midterm and Final : 40%
Date
Codelab / Reading
8/30-9/1
Week 1 Chapter 1/3 What is the Cloud / Data Center / Linux
Linux assignment
9/8-9/13
Week 2 Chapter 8. Cloud Storage / HTML CSS Javascript
HTML assignment
9/15-9/20
Week 3 Chapter 9/11 Compute Engine / App Engine
App Engine Example
9/22-9/27
Week 4 Chapter 12 Cloud Functions / Python /Github
Python Assignment
9/29-10/4
Week 4 Chapter 4 Cloud SQL / MySQL
MySQL Assignment
10/6-10/11
Week 6 Chapter 5 Document Storage / Firestore (Midterm Exam)
NoSQL Assignment
10/13-10/18
Week 13 Chapter 19/20. Big Query / Dataflow
Big Query Assignment
10/20-10/25
Week 8 Chapter 13 Cloud DNS (security)
TBD
10/27-11/1
Week 9 Security IAM & Admin
Encryption Assignment
11/3-11/8
Week 10 Security
Authentication Assignment
11/10-11/15
Week 11 Chapter 14/15. Cloud Vision /Text Analysis
Vision Assignments
11-17
Week 12 Chapter 16/17. Cloud Speech / Translations
Translation Assignment
11/21-11/28
off
11/29-12/1
Week 13 Chapter 18 Machine Learning
Machine Learning Assignment
12/6-12/8
All project work due
Academic Honesty
Students should refer to the Student Code (see section on Academic Integrity -
http://www.dos.uconn.edu/student_code.html) for specific guidelines.
Students with Disabilities
Students with disabilities who believe they may need accommodations in
this class are encouraged
to contact the Center for Students with Disabilities (486-2020) as
soon as possible to better ensure that such accommodations are
implemented in a timely fashion.
Classroom blog: googleclouduconn.blogspot.com
9/8/2021, 6:05 PM
Blog Address https://uconnstamfordslp.blogspot.com/
Unfortunately the wrong address gets emailed out
yllabus Fall 2021
Syllabus
ENGR 1166: Foundations of Engineering - Z81 / Z82
Fall 2021
Instructor: John A. Iacovacci/Tendai Gomo
John.iacovacci1@gmail.com; john.iacovacci@uconn.edu; Tendai@tendaigomo.com
Cell Phone: 917-701-6177
Lectures Mondays 6:20-8:50 pm Room DWTN 305A
Wednesdays 6:20-8:50 pm Room DWTN 305G
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Our Class Website is https://uconnstamfordslp.blogspot.com/
Book: Google Cloud Platform in Action JJ Geewax
eBook: https://livebook.manning.com/book/google-cloud-platform-in-action
Catalog Description
ENGR 1166 - Provides an in depth study of the Google cloud platform.
We will be focusing on learning various aspects of the google cloud
using small assignments related to cloud concepts. The class format is
based upon the first half lecture then the second half hands on
workshop. The environment is hosted at cloud.google.com.
$300 of cloud services is budgeted for each student by google. A
credit card is needed to get google credit. Students will not be
spending the entire $300 google credit so no costs should be incurred.
Objectives
At the end of the course, the students should be able to understand
and be able to develop applications on the google cloud. The concepts
will include virtual machines, MySQL, NoSQL, BigQuery, Document
Storage, Linux, HTML/CSS, Javascript, Security, Python, GitHub, Google
API's, Cloud Functions, Networking, Authentication, Encryption,
Machine Learning and Artificial Intelligence.
General Requirements & Expectations
1. Attendance: Students are expected to attend all lectures.
Attendance will be taken. Students will have the option of attending
Monday or Wednesday depending upon desk space.
Reading and assignments are required. Each class will have assignments
required as well as projects due at different times during the term.
2. Make sure you check your UCONN.EDU e-mail account regularly, or
have it forwarded to an account that you use regularly. Otherwise you
may miss important announcements.
Grading Percentages
Description Percent of course grade
Class assignments: 12 assignments 60%
Midterm and Final : 40%
Date
Codelab / Reading
8/30-9/1
Week 1 Chapter 1/3 What is the Cloud / Data Center / Linux
Linux assignment
9/8-9/13
Week 2 Chapter 8. Cloud Storage / HTML CSS Javascript
HTML assignment
9/15-9/20
Week 3 Chapter 9/11 Compute Engine / App Engine
App Engine Example
9/22-9/27
Week 4 Chapter 12 Cloud Functions / Python /Github
Python Assignment
9/29-10/4
Week 4 Chapter 4 Cloud SQL / MySQL
MySQL Assignment
10/6-10/11
Week 6 Chapter 5 Document Storage / Firestore (Midterm Exam)
NoSQL Assignment
10/13-10/18
Week 13 Chapter 19/20. Big Query / Dataflow
Big Query Assignment
10/20-10/25
Week 8 Chapter 13 Cloud DNS (security)
TBD
10/27-11/1
Week 9 Security IAM & Admin
Encryption Assignment
11/3-11/8
Week 10 Security
Authentication Assignment
11/10-11/15
Week 11 Chapter 14/15. Cloud Vision /Text Analysis
Vision Assignments
11-17
Week 12 Chapter 16/17. Cloud Speech / Translations
Translation Assignment
11/21-11/28
off
11/29-12/1
Week 13 Chapter 18 Machine Learning
Machine Learning Assignment
12/6-12/8
All project work due
Academic Honesty
Students should refer to the Student Code (see section on Academic Integrity -
http://www.dos.uconn.edu/student_code.html) for specific guidelines.
Students with Disabilities
Students with disabilities who believe they may need accommodations in
this class are encouraged
to contact the Center for Students with Disabilities (486-2020) as
soon as possible to better ensure that such accommodations are
implemented in a timely fashion.
Wednesday, September 1, 2021
Office hours by email appointment only Thursday 5-6pm , 9/1/2021, 7:54 PM, English, 9/1/2021, 7:54 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
9/1/2021, 7:54 PM
Office Hours Remote: Thursdays 5:00pm to 6:00pm
By appointment. Please email me at john.iacovacci1@gmail.com if you
need office hours. If I don't receive any emails I will no be on line.
Note: Need to use gmail account to set up up cloud accounts
https://uconn-cmr.webex.com/meet/jai17003
Classroom blog: googleclouduconn.blogspot.com
9/1/2021, 7:54 PM
Office Hours Remote: Thursdays 5:00pm to 6:00pm
By appointment. Please email me at john.iacovacci1@gmail.com if you
need office hours. If I don't receive any emails I will no be on line.
Note: Need to use gmail account to set up up cloud accounts
https://uconn-cmr.webex.com/meet/jai17003
Subscribe to:
Posts (Atom)
Disable Billing
Search for Billing Manage billing accounts Go to MYPROJECTS CLICK ON THE 3 BUTTON Actions Then hit disable
-
Create a web site with main page of index.html and 2 other linked original content html pages At least 2 links to public web pages you di...
-
Assignment # 6 due 10/18/24 https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html Recreate the app engine pr...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 8/31/2021, 8:08 PM Assignment 1 due 9/9/21 https...