Thursday, February 18, 2021

Assignment #5 Due March 3rd, 2/18/2021, 7:10 PM, English, 2/18/2021, 7:10 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

2/18/2021, 7:10 PM

Create a web site on your cloud storage bucket that
will allow customers to add, change, delete and list their customer information

Using google cloud python functions, html forms and mysql database
tables from the SQL customer table.

https://googleclouduconn.blogspot.com/p/mysql-exercise.html

https://googleclouduconn.blogspot.com/p/cloud-function-project-python.html

Thursday, February 11, 2021

Assignment#4 due 2/17/21, 2/11/2021, 2:37 PM, English, 2/11/2021, 2:37 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

2/11/2021, 2:37 PM

Assignment #4
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://googleclouduconn.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 daff
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)$

Thursday, February 4, 2021

Assignment#3 due 2/10/21 app engine form, 2/4/2021, 1:40 PM, English, 2/4/2021, 1:40 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

2/4/2021, 1:40 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://googleclouduconn.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 2/10/2021

Please send me your app engine link

https://googleclouduconn.blogspot.com/p/app-engine-flask-html-form.html

Wednesday, January 27, 2021

Assignment 2 due 2/3/2021, 1/27/2021, 8:55 PM, English, 1/27/2021, 8:55 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

1/27/2021, 8:55 PM

Assignment #2

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://googleclouduconn.blogspot.com/p/web-assignment.html

Wednesday, January 20, 2021

Assignment #1 due 1/27/2021, 1/20/2021, 8:58 PM, English, 1/20/2021, 8:58 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

1/20/2021, 8:58 PM

Assignment 1 due 1/27/21

https://googleclouduconn.blogspot.com/p/linux.html

Create a linux shell program to state name, major, what you want to do
and high school, favorite subject growing up, what i am passionate about

Send both code and output via email

List all lines of code

Program

# my first script
echo "Hello my name is John Iacovacci"

Copy and paste output

Output

john_iacovacci1@cloudshell:~/scripts (uconn-engr)$ ./my_profile2
Hello my name is John Iacovacci

Email to john.iacovacci1@gmail.com

Sunday, January 17, 2021

ENGR 1166 Syllabus, 1/17/2021, 7:13 PM, English, 1/17/2021, 7:13 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

1/17/2021, 7:13 PM

Syllabus
ENGR 1166: Foundations of Engineering - Z81 (11981)

Spring 2021
Instructor: John A. Iacovacci/Tendai Gomo
John.iacovacci1@gmail.com; john.iacovacci@uconn.edu; Tendai@tendaigomo.com
Lectures Wednesday 6:20-8:50 pm webex

https://uconn-cmr.webex.com/uconn-cmr/j.php?MTID=m5aea6713be177aca45e60d960854b13b


(Distance Learning)

password: google1166

Office Hours Remote: Tuesday 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003


Our Class Website is https://googleclouduconn.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 first half lecture then 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.

Objectives
At the end of the course, the students should be able to understand
and be able to develop on the google cloud. The concepts will include
virtual machines, MySQL, NoSQL, Big Data, document storage, Linux,
HTML/CSS, Javascript, Security, Python, GitHub, Google API's, cloud
functions and Artificial Intelligence.

General Requirements & Expectations

1. Attendance: Students are expected to attend all lectures.
Attendance will be taken.
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 80%
Final Paper: 20%


Date

Codelab / Reading
1/20/2021 Week 1 Chapter 1/3 What is the Cloud / Data Center / Linux - Linux assignment
1/27/2021 Week 2 Chapter 8. Cloud Storage / HTML CSS Javascript  - HTML assignment
2/4/2021 Week 3 Chapter 9/11 Compute Engine / App Engine - App Engine Example
2/11/2021 Week 4 Chapter 12 Cloud Functions / Python /Github  Python Assignment
2/18/2021 Week 4 Chapter 4 Cloud SQL / MySQL - MySQL Assignment
2/25/2021 Week 6 Chapter 5 Document Storage / Firestore - NoSQL Assignment
3/3/2021 Week 13 Chapter 19/20. Big Query / Dataflow  - Big Query Assignment
3/10/2021 Week 8 Chapter 13 Cloud DNS (security)  - TBD
3/17/2021 Week 9 Security IAM & Admin  - TBD
3/24/2021 Week 10 Security - TBD
3/31/2021 Week 11 Chapter 14/15. Cloud Vision /Text Analysis  - Vision Assignments
4/7/2021 Week 12 Chapter 16/17. Cloud Speech / Translations  -Translation Assignment
4/14/2021 off
4/21/2021 Week 13 Chapter 18 Machine Learning -Machine Learning Assignment
4/28/2021 All project work due
Paper


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, November 25, 2020

Google Class Assignment & , 11/25/2020, 6:15 PM, English, 11/25/2020, 6:15 PM

Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com

11/25/2020, 6:15 PM

Assignment 6 update - face_detect is not required, only need to
deliver output for label_detect, text_detect and landmark_detect.

Make sure you shut your SQL's down so no charges occur. Only shut down
if you have already handed the assignment in.

If your free Google account expires Google has provided $50 coupons
for our class.

Below is the instructions for download.

Note:Assignment 6
https://googleclouduconn.blogspot.com/p/vision-example-explained.html

NOSQL project https://googleclouduconn.blogspot.com/p/python-crud.html
Due 12/2/2020



Email Address: john.iacovacci@uconn.edu
Course: ENGR 1166: Foundations of Engineering - Z81 (11981)
Course Start Date: 9/2/2020
Students' email domain(s): @uconn.edu
Students can request coupons from the URL and redeem them until: 1/2/2021
Coupons Valid Through: 9/2/2021
Number of Coupons: 28
Face Value of Coupon(s): USD 50.00
Dear Students,
Here is the URL you will need to access in order to request a Google
Cloud Platform coupon. You will be asked to provide your school email
address and name. An email will be sent to you to confirm these
details before a coupon is sent to you.

Student Coupon Retrieval Link

You will be asked for a name and email address, which needs to match
the domain. A confirmation email will be sent to you with a coupon
code.
You can request a coupon from the URL and redeem it until: 1/2/2021
Coupon valid through: 9/2/2021
You can only request ONE code per unique email address.

Please contact me if you have any questions or issues.
Thanks,
John Iacovacci

Metrics

  Build is going on now. Have company and security tables created and python code to access and insert data into SQL tables. Asked Gemini to...