Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/31/2020, 1:58 PM
Correction
I had an error in the original custdel function which is now corrected.
def custdel(request):
https://googleclouduconn.blogspot.com/p/cloud-function-project.html
The web page is now correct which changed the name of the custdel function
Saturday, October 31, 2020
Wednesday, October 28, 2020
Assignment #5 due 11/4 hello world app engine, 10/28/2020, 7:52 PM, English, 10/28/2020, 7:52 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/28/2020, 7:52 PM
Assignment # 5 due 11/4 Hello world app engine
https://googleclouduconn.blogspot.com/p/python-cont.html
Build an app engine application that says Hello UCONN World from your name.
from flask import Flask
# If `entrypoint` is not defined in app.yaml, App Engine will look for an app
# called `app` in `main.py`.
app = Flask(__name__)
@app.route('/', methods=['GET'])
def hello():
"""Return a friendly HTTP greeting."""
return 'Hello World!\n'
if __name__ == '__main__':
# Used when running locally only. When deploying to Google App
# Engine, a webserver process such as Gunicorn will serve the app. This
# can be configured by adding an `entrypoint` to app.yaml.
app.run(host='localhost', port=8080, debug=True)
Send me the link from app engine
uconn-engr.uc.r.appspot.com
Classroom blog: googleclouduconn.blogspot.com
10/28/2020, 7:52 PM
Assignment # 5 due 11/4 Hello world app engine
https://googleclouduconn.blogspot.com/p/python-cont.html
Build an app engine application that says Hello UCONN World from your name.
from flask import Flask
# If `entrypoint` is not defined in app.yaml, App Engine will look for an app
# called `app` in `main.py`.
app = Flask(__name__)
@app.route('/', methods=['GET'])
def hello():
"""Return a friendly HTTP greeting."""
return 'Hello World!\n'
if __name__ == '__main__':
# Used when running locally only. When deploying to Google App
# Engine, a webserver process such as Gunicorn will serve the app. This
# can be configured by adding an `entrypoint` to app.yaml.
app.run(host='localhost', port=8080, debug=True)
Send me the link from app engine
uconn-engr.uc.r.appspot.com
Saturday, October 24, 2020
Project #4 due 10/28/2020 Customer Website, 10/24/2020, 1:20 PM, English, 10/24/2020, 1:20 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/24/2020, 1:20 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 assignment.
https://googleclouduconn.blogspot.com/p/cloud-function-project.html
Classroom blog: googleclouduconn.blogspot.com
10/24/2020, 1:20 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 assignment.
https://googleclouduconn.blogspot.com/p/cloud-function-project.html
Thursday, October 22, 2020
online now until 6:30pm, 10/22/2020, 4:58 PM, English, 10/22/2020, 4:58 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/22/2020, 4:58 PM
Online now until 6:30
https://uconn-cmr.webex.com/meet/jai17003
Classroom blog: googleclouduconn.blogspot.com
10/22/2020, 4:58 PM
Online now until 6:30
https://uconn-cmr.webex.com/meet/jai17003
Sunday, October 18, 2020
Assignment # 4 due 10/21/2020 , 10/18/2020, 7:52 PM, English, 10/18/2020, 7:52 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/18/2020, 7:52 PM
Assignment # 4 due 10/21/2020
Python Invoicer
Office Hours Monday and Thursday 5:00pm to 6:30pm
https://uconn-cmr.webex.com/meet/jai17003
In Cloud shell execute the git clone to copy programs to your shell machine
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Change the program to match items you are selling
I'm selling plates you maybe selling shoes replace plates with shoes
Note: Only assignments handed in on time will receive A grades.
Classroom blog: googleclouduconn.blogspot.com
10/18/2020, 7:52 PM
Assignment # 4 due 10/21/2020
Python Invoicer
Office Hours Monday and Thursday 5:00pm to 6:30pm
https://uconn-cmr.webex.com/meet/jai17003
In Cloud shell execute the git clone to copy programs to your shell machine
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Change the program to match items you are selling
I'm selling plates you maybe selling shoes replace plates with shoes
Note: Only assignments handed in on time will receive A grades.
Saturday, October 17, 2020
Project 3 due 10/28/2020 Customer web site, 10/17/2020, 4:09 PM, English, 10/17/2020, 4:09 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/17/2020, 4:09 PM
Project Number 3 due 10/28/2020
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 assignment.
https://googleclouduconn.blogspot.com/p/cloud-function-project.html
Classroom blog: googleclouduconn.blogspot.com
10/17/2020, 4:09 PM
Project Number 3 due 10/28/2020
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 assignment.
https://googleclouduconn.blogspot.com/p/cloud-function-project.html
Wednesday, October 14, 2020
Assignment 4 due 10/21/2020, 10/14/2020, 6:33 PM, English, 10/14/2020, 6:33 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/14/2020, 6:33 PM
Assignment # 4 due 10/21/2020
Python Invoicer
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Try to change the program to match items you are selling
I'm selling plates you maybe selling shoes replace plates with shoes
Classroom blog: googleclouduconn.blogspot.com
10/14/2020, 6:33 PM
Assignment # 4 due 10/21/2020
Python Invoicer
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Try to change the program to match items you are selling
I'm selling plates you maybe selling shoes replace plates with shoes
Tuesday, October 13, 2020
Python Assignment due 10/21/2020, 10/13/2020, 10:56 PM, English, 10/13/2020, 10:56 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/13/2020, 10:56 PM
Assignment # 4 due 10/21/2020
Python Invoicer
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Classroom blog: googleclouduconn.blogspot.com
10/13/2020, 10:56 PM
Assignment # 4 due 10/21/2020
Python Invoicer
git clone https://github.com/jiacovacci/assign4.git
https://googleclouduconn.blogspot.com/p/github-repositories.html
Create a python invoice program that takes customer information in
Uses a dictionary data type to store items and prices
Displays a menu of items
Use input statements to collect customer buys
Calculate Invoice total
Sunday, October 11, 2020
On line help for tomorrow Monday 5:00pm to 6:30pm, 10/11/2020, 7:57 PM, English, 10/11/2020, 7:57 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/11/2020, 7:57 PM
On line help for tomorrow Monday 5:00pm to 6:30pm
https://uconn-cmr.webex.com/meet/jai17003
Classroom blog: googleclouduconn.blogspot.com
10/11/2020, 7:57 PM
On line help for tomorrow Monday 5:00pm to 6:30pm
https://uconn-cmr.webex.com/meet/jai17003
Thursday, October 8, 2020
STOP SQL Instances, 10/8/2020, 5:33 PM, English, 10/8/2020, 5:33 PM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/8/2020, 5:33 PM
Remember to turn off SQL instances they cost a lot of money use STOP
when you drill into SQL instance
Classroom blog: googleclouduconn.blogspot.com
10/8/2020, 5:33 PM
Remember to turn off SQL instances they cost a lot of money use STOP
when you drill into SQL instance
Sunday, October 4, 2020
Midterm Grades and Assignments, 10/5/2020, 0:10 AM, English, 10/5/2020, 0:11 AM
Your assigned language is: English
Classroom blog: googleclouduconn.blogspot.com
10/5/2020, 0:10 AM
MID TERM GRADES SENT BY 10/8
MISSED ASSIGNMENTS WILL BE GRADED F
LINK TO 3 ASSIGNMENTS AND 2 PROJECTS
https://googleclouduconn.blogspot.com/p/assignments.html
Due 10/7/2020
Outline for term assignment
Leverage concepts from the book to explain.
Come up with an idea for a startup business.
Describe how you would build a cloud strategy based on hosting the
site on Google.
Name the services you would use. app engine or compute engine
machine types, app engine instances,
select regions or multi-regions.
The domain you would select. DNS name. e.g. google.com.
The functionality of the pages and how you would build it.
The Google API's you would integrate.
Overview of databases tables needed.Security, access control, backup,
replication,
storage requirements.
Assignment #3 Due 10/7/2020
https://googleclouduconn.blogspot.com/p/mysql-exercise.html
Create 2 tables and link them with data elements. Customer and State.
Enter 4 customers and 2 states. Display all information via joining
two tables using Select Command
at September 29, 2020 No comments:
Classroom blog: googleclouduconn.blogspot.com
10/5/2020, 0:10 AM
MID TERM GRADES SENT BY 10/8
MISSED ASSIGNMENTS WILL BE GRADED F
LINK TO 3 ASSIGNMENTS AND 2 PROJECTS
https://googleclouduconn.blogspot.com/p/assignments.html
Due 10/7/2020
Outline for term assignment
Leverage concepts from the book to explain.
Come up with an idea for a startup business.
Describe how you would build a cloud strategy based on hosting the
site on Google.
Name the services you would use. app engine or compute engine
machine types, app engine instances,
select regions or multi-regions.
The domain you would select. DNS name. e.g. google.com.
The functionality of the pages and how you would build it.
The Google API's you would integrate.
Overview of databases tables needed.Security, access control, backup,
replication,
storage requirements.
Assignment #3 Due 10/7/2020
https://googleclouduconn.blogspot.com/p/mysql-exercise.html
Create 2 tables and link them with data elements. Customer and State.
Enter 4 customers and 2 states. Display all information via joining
two tables using Select Command
at September 29, 2020 No comments:
Subscribe to:
Posts (Atom)
Office hours tomorrow(Tuesday) 5:00pm-6:00pm, 4/26/2021, 5:13 PM, English, 4/26/2021, 5:13 PM
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/26/2021, 5:13 PM Office hours tomorrow(Tuesday) 5...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/26/2021, 5:13 PM Office hours tomorrow(Tuesday) 5...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 4/19/2021, 10:17 PM No office hours tomorrow, assig...
-
Your assigned language is: English Classroom blog: googleclouduconn.blogspot.com 2/4/2021, 1:40 PM Assignment #3 Create an app engin...