Thursday, March 18, 2021

Assignment #8 due 3/24/21, 3/18/2021, 5:31 PM, English, 3/18/2021, 5:31 PM

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

3/18/2021, 5:31 PM

Assignment #8 due Wednesday, 3/24

Create a text file called mydata.txt that consist of the lesson 1
shell script exercise using standard output redirection


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


https://googleclouduconn.blogspot.com/p/encrypt-and-decrypt-data-with-cloud-kms.html

Encrypt the file and email me both the mydata.txt file and the mydata.txt.enc

Monday, March 8, 2021

Assignment #6 issue, 3/8/2021, 9:25 PM, English, 3/8/2021, 9:25 PM

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

3/8/2021, 9:25 PM

Note: Assignment #6 issue

Need to have Google Translate API turned on in order to read data

See link below


https://googleclouduconn.blogspot.com/p/python-crud.html

Assignment #7 due Wednesday, March 17th, 3/8/2021, 9:13 PM, English, 3/8/2021, 9:13 PM

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

3/8/2021, 9:13 PM

Assignment #7 Due March 17th

Send me a google sheet file that contains data downloaded from any
public google data set

Do not send me data from the Covid NYT example

https://googleclouduconn.blogspot.com/p/bigquery-covid.html

Please let me know if anyone will attend tomorrow office hours 5:00pm to 6:00pm

Monday, March 1, 2021

Assignment #5 Due March 3rd, 2/18/2021, 3/1/2021, 8:23 PM, English, 3/1/2021, 8:23 PM

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

3/1/2021, 8:23 PM

Please let me know if anyone wants office hours tomorrow 5:00pm to 6:00pm

https://uconn-cmr.webex.com/meet/jai17003

I will not be responding to emails that ask to check work.

Late assignments will be penalized.

Assignment #5 Due March 3rd, 2/18/2021

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

Saturday, February 27, 2021

Assignment #6 dues March 17th - office hours needed please email me, 2/27/2021, 1:39 PM, English, 2/27/2021, 1:39 PM

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

2/27/2021, 1:39 PM

Assignment # 6 due March 17th

https://googleclouduconn.blogspot.com/p/python-crud.html


Recreate the app engine project above and send me a working link.

I will be available Monday at 6:00pm is anyone needs help or
Tuesday at 5:00pm only be request.

If I do not receive emails I will not start the sessions.

https://uconn-cmr.webex.com/meet/jai17003




I have successfully recreated the datastore/firestore issue.

Once a project is attached to either datastore or firestore it will
not let you revert back.

I opened 2 new projects from Google Cloud uconn-firestore and selected
firestore and uconn-datastore and selected datastore.

Solution is to open new project and make sure you select datastore.

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)$

Assignment #3 due 9/23

 Note: digit was missing from end of OPEN_API_KEY(now fixed) Change the list company and list security programs to output to a csv file and ...