Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/28/2022, 7:50 PM
Please let me know if anyone will attend office hours this Thursday, 5 to 6pm
https://uconn-cmr.webex.com/meet/jai17003
Monday, February 28, 2022
Sunday, February 27, 2022
Due dates for #3 & #5 now 3/11 - New Flask version required #3, 2/27/2022, 8:52 AM, English, 2/27/2022, 8:52 AM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/27/2022, 8:52 AM
Assignment 3 issues
john_iacovacci1@cloudshell:~ (uconn-engr)$ pip3 install --upgrade Flask
The requirements.txt need to be changed to
Flask==2.0.3
New Assignment 3 due Friday 3/11/2022
Build an appengine program that will allow a user to take in
information regarding your business/web site
That you have build for assignment 2 and send the data back to the
user formatted via HTML
https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
Due date for Assignment 5 has also been changed to 3/11/22
And the Cloud SQL Admin API needs to be enabled
See updates
https://uconnstamfordslp.blogspot.com/p/cloud-function-project-python.html
Classroom blog: googleclouduconn.blogspot.com
2/27/2022, 8:52 AM
Assignment 3 issues
john_iacovacci1@cloudshell:~ (uconn-engr)$ pip3 install --upgrade Flask
The requirements.txt need to be changed to
Flask==2.0.3
New Assignment 3 due Friday 3/11/2022
Build an appengine program that will allow a user to take in
information regarding your business/web site
That you have build for assignment 2 and send the data back to the
user formatted via HTML
https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
Due date for Assignment 5 has also been changed to 3/11/22
And the Cloud SQL Admin API needs to be enabled
See updates
https://uconnstamfordslp.blogspot.com/p/cloud-function-project-python.html
Tuesday, February 22, 2022
Assignment #5 Due 3/11/22, 2/22/2022, 8:35 PM, English, 2/22/2022, 8:35 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/22/2022, 8:35 PM
Assignment #5 Due 3/11/22
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://uconnstamfordslp.blogspot.com/p/mysql-exercise.html
https://uconnstamfordslp.blogspot.com/p/cloud-function-project-python.html
Classroom blog: googleclouduconn.blogspot.com
2/22/2022, 8:35 PM
Assignment #5 Due 3/11/22
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://uconnstamfordslp.blogspot.com/p/mysql-exercise.html
https://uconnstamfordslp.blogspot.com/p/cloud-function-project-python.html
Monday, February 21, 2022
Flask update, 2/21/2022, 8:56 PM, English, 2/21/2022, 8:56 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/21/2022, 8:56 PM
pip3 install --upgrade Flask
Classroom blog: googleclouduconn.blogspot.com
2/21/2022, 8:56 PM
pip3 install --upgrade Flask
Saturday, February 19, 2022
Assignment #4 update, 2/19/2022, 2:52 PM, English, 2/19/2022, 2:52 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/19/2022, 2:52 PM
Assignment #4 update
Please not on Assignment 4 when you have a for loop in python the next
statement needs to be indented in order or work.
for x in items:
print(x, items[x])
https://uconnstamfordslp.blogspot.com/p/python-invoicer.html
Classroom blog: googleclouduconn.blogspot.com
2/19/2022, 2:52 PM
Assignment #4 update
Please not on Assignment 4 when you have a for loop in python the next
statement needs to be indented in order or work.
for x in items:
print(x, items[x])
https://uconnstamfordslp.blogspot.com/p/python-invoicer.html
Tuesday, February 15, 2022
Assignment #4 due 2/24, 2/15/2022, 8:33 PM, English, 2/15/2022, 8:33 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/15/2022, 8:33 PM
Assignment #4 due 2/24
Build a Python Invoicer program that lists 4 items that you want to
sell and produce a total.
Also, add a line for sales tax when you total the bill
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)$
email me the code and the output from the code
Classroom blog: googleclouduconn.blogspot.com
2/15/2022, 8:33 PM
Assignment #4 due 2/24
Build a Python Invoicer program that lists 4 items that you want to
sell and produce a total.
Also, add a line for sales tax when you total the bill
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)$
email me the code and the output from the code
Monday, February 14, 2022
Midterm Monday 2/28/22 at 7:30pm, 2/14/2022, 4:59 PM, English, 2/14/2022, 4:59 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/14/2022, 4:59 PM
Midterm Monday 2/28/22 at 7:30pm
Chapter 1/3 What is the Cloud / Data Center / Linux
Chapter 8 Cloud Storage / HTML CSS Javascript
Chapter 9/11 Compute Engine / App Engine
Chapter 12 Cloud Functions / Python /Github
Chapter 4 Cloud SQL / MySQL
Classroom blog: googleclouduconn.blogspot.com
2/14/2022, 4:59 PM
Midterm Monday 2/28/22 at 7:30pm
Chapter 1/3 What is the Cloud / Data Center / Linux
Chapter 8 Cloud Storage / HTML CSS Javascript
Chapter 9/11 Compute Engine / App Engine
Chapter 12 Cloud Functions / Python /Github
Chapter 4 Cloud SQL / MySQL
Friday, February 11, 2022
App Engine Assignment 3 due 2/18/22, 2/11/2022, 5:19 PM, English, 2/11/2022, 5:19 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/11/2022, 5:19 PM
New Assignment 3 due Friday 3/11/2022
Build an appengine program that will allow a user to take in
information regarding your business/web site
That you have build for assignment 2 and send the data back to the
user formatted via HTML
Use https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
As a template
Changed assignment dates to Friday so they come after Thursday office hours
Classroom blog: googleclouduconn.blogspot.com
2/11/2022, 5:19 PM
New Assignment 3 due Friday 3/11/2022
Build an appengine program that will allow a user to take in
information regarding your business/web site
That you have build for assignment 2 and send the data back to the
user formatted via HTML
Use https://uconnstamfordslp.blogspot.com/p/app-engine-flask-html-form.html
As a template
Changed assignment dates to Friday so they come after Thursday office hours
Saturday, February 5, 2022
Assignment #2 Due 2/7/2022 updated, 2/5/2022, 11:14 AM, English, 2/5/2022, 11:14 AM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/5/2022, 11:14 AM
Assignment #2 Due 2/7/2022
Create a web site with main page of index.html and 2 lother linked html pages
Web site must have
HTML
CSS
JavaScript
Images
Web form for collecting information
Use blog for reference
https://uconnstamfordslp.blogspot.com/
Detailed directions
https://uconnstamfordslp.blogspot.com/p/web-assignment_14.html
My site can also be used as reference
https://www.uconnstamforddsc.org/
Right click and view page source to see code
Choose any topic you like.
I'd like to see you build on the topic thru the term e.g. sneaker site
to sell sneakers
Please send me a link to your main index page so I can review
Classroom blog: googleclouduconn.blogspot.com
2/5/2022, 11:14 AM
Assignment #2 Due 2/7/2022
Create a web site with main page of index.html and 2 lother linked html pages
Web site must have
HTML
CSS
JavaScript
Images
Web form for collecting information
Use blog for reference
https://uconnstamfordslp.blogspot.com/
Detailed directions
https://uconnstamfordslp.blogspot.com/p/web-assignment_14.html
My site can also be used as reference
https://www.uconnstamforddsc.org/
Right click and view page source to see code
Choose any topic you like.
I'd like to see you build on the topic thru the term e.g. sneaker site
to sell sneakers
Please send me a link to your main index page so I can review
Wednesday, February 2, 2022
Anyone need office hours tomorrow?, 2/2/2022, 10:23 PM, English, 2/2/2022, 10:23 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/2/2022, 10:23 PM
Please let me know if anyone plans on attending
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Classroom blog: googleclouduconn.blogspot.com
2/2/2022, 10:23 PM
Please let me know if anyone plans on attending
Office Hours Remote: Thursdays 5:00pm to 6:00pm
https://uconn-cmr.webex.com/meet/jai17003
Tuesday, February 1, 2022
Assignment #2 due Monday 2/7, 2/1/2022, 9:32 PM, English, 2/1/2022, 9:32 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
2/1/2022, 9:32 PM
Assignment #2 Due 2/7/2022
Create a web site with main page of index.html and 2 lother linked html pages
Web site must have
HTML
CSS
JavaScript
Images
Web form for collecting information
Use blog for reference
https://uconnstamfordslp.blogspot.com/
Detailed directions
https://uconnstamfordslp.blogspot.com/p/web-assignment_14.html
My site can also be used as reference
https://www.uconnstamforddsc.org/
Right click and view page source to see code
Choose any topic you like.
I'd like to see you build on the topic thru the term e.g. sneaker site
to sell sneakers
Classroom blog: googleclouduconn.blogspot.com
2/1/2022, 9:32 PM
Assignment #2 Due 2/7/2022
Create a web site with main page of index.html and 2 lother linked html pages
Web site must have
HTML
CSS
JavaScript
Images
Web form for collecting information
Use blog for reference
https://uconnstamfordslp.blogspot.com/
Detailed directions
https://uconnstamfordslp.blogspot.com/p/web-assignment_14.html
My site can also be used as reference
https://www.uconnstamforddsc.org/
Right click and view page source to see code
Choose any topic you like.
I'd like to see you build on the topic thru the term e.g. sneaker site
to sell sneakers
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...