UCONN

UCONN
UCONN

Monday, October 20, 2025

 Assignment #7 due 10/31/25

 Build 8 graphs using matplotlib.


I want two separate publicly traded companies e.g. AAPL & AMZN

Volume and price graphs for a 1 year period 

Volume and price graphs for a 90 period

Send the code in email and links to the graphs on your cloud storage bucket.


Saturday, October 11, 2025

 Assignment # 6 due Friday 10/24/25 

 https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html


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

 Create a datastore entity called Custinfo

 Load programs per link Add your name to the html that the program displays.

 Also, add Phone number and email address to the data along with the reading,

 writing and updating of those two new data items. 

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

Email me the app engine link

e.g.

Adjunct Professor John Iacovacci

University of Connecticut, Stamford
John.Iacovacci@uconn.edu

Sunday, October 5, 2025

Assignment #5 due Friday, October 17th

Assignment #5 due Friday, October 17th

 

All have been granted access to the project sentiment analysis


Create the tables and send me the SQL SELECT with your data on the customer and order details you used for the python homework.

Use select statements to list out contents of all 4 tables and copy the output of these select statements to email, along with all the SQL statements entered.

Take screen shot ourt output and send in an email.




Thursday, September 25, 2025

Assignment #4 due Wednesday October 8th

 Assignment #4 due Wednesday October 8th

 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 from CT (note sales tax is 6.35%)

Output to a text file using your name e.g. Iacovacci.txt

Send me the code in the body of the email and the text file as attachment  via email john.iacovacci@uconn.edu


Note you can not duplicate my items.

Monday, September 22, 2025

Assignment #3 due 10/1/25

  Assignment #3 due 10/1/25

 Build an app engine program that will allow a user to take in information 
 that you have built for assignment 1
 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
 
Name 
Address
City
State 
Zip
Phone
email
Major 
What you want to do
Favorite Song
Favorite Band


Put JavaScript validation on name, email and major to make sure those fields are not blank.

Email me the URL link that the app engine created.

Thanks

Adjunct Professor John Iacovacci
University of Connecticut, Stamford
John.Iacovacci@uconn.edu


Thursday, September 11, 2025

Assignment #2 due Wednesday 9/24/25

 

Assignment #2 due Wednesday 9/24/25

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 did not build.
Web site must have
HTML FORM  to collect
Name
Major
Graduation Year
What you want to do?
High school you went to?
Town you live in?
Favorite subject growing up?
What are you passionate about?
Favorite band or musician?
Favorite song?
What company or organization would you like to for for?

CSS with fonts, colors 
Background colors

at least 2 Images from google

Use blog for reference

Detailed directions

  Web Assignment   First select Cloud Storage then Buckets Next hit +CREATE BUCKET Select a unique name for the bucket Select Region for wh...
uconnstamfordslp.blogspot.com


My site can also be used as reference but do not copy

Right click and view page source to see code
Choose any topic you like.

Use your own downloaded images.

NOTE: Need to validate for an entry in Major exactly like the Javascript validation for the name form.

Please send me a link to your main index page so I can review via my email john.iacovacci@uconn.edu
Thanks


Adjunct Professor John Iacovacci

University of Connecticut, Stamford
John.Iacovacci@uconn.edu

Adjunct Professor John Iacovacci

University of Connecticut, Stamford
John.Iacovacci@uconn.edu


Wednesday, August 27, 2025

Assignment#1 due 9/10/25

 Assignment#1 due 9/10/25

https://uconnstamfordslp.blogspot.com/p/linux-explained.html

Note validate major for this list -  make sure you select your major

Engineering - Biomedical Engineering

ACES - Exploratory

Engineering - Mechanical Engineering

Engineering - Civil Engineering

Business - Stamford-Business-Undecided

Engineering - Electrical Engineering

Engineering - Computer Engineering

Engineering - Engineering Physics

Liberal Arts & Sciences - Physiology & Neurobiology

Engineering - Multidisciplinary Engineering

Liberal Arts & Sciences - Economics/Mathematics

Engineering - Environmental Engineering

Liberal Arts & Sciences - Communication


Name
Major - Validate Major
grade - e.g Freshman (same validation as program)
What you want to do?
High school you went to?
Town you live in?
Favorite subject growing up?
What are you passionate about?
Favorite band or musician?
Favorite song?
What company or organization would you like to for?
Send both code and output attachment via email
Attach the my_info.txt file to your email
List all lines of code
Program

#!/bin/bash

# My First scripts

echo "Enter your full name : "

read my_name

echo "Enter your major : "

read my_major

gradyear=2025

cyear=1



while true; do

    echo -n "Enter your class standing (Freshman, Sophomore, Junior, Senior): "

    read standing


    case "$standing" in

        [Ff]reshman)

            echo "✅ You entered: Freshman"

            cyear=4

            break

            ;;

        [Ss]ophomore)

            echo "✅ You entered: Sophomore"

            cyear=3

            break

            ;;

        [Jj]unior)

            echo "✅ You entered: Junior"

            cyear=2

            break

            ;;

        [Ss]enior)

            echo "✅ You entered: Senior"

            cyear=1

            break

            ;;

        *)

            echo "❌ Invalid entry. Please try again."

            ;;

    esac

done

# Perform addition

sum=$((gradyear + cyear))


# Display result

echo "Your Graduation year is $sum"


echo "My Name is : " $my_name > my_profile.txt

echo "My major is : " $my_major >> my_profile.txt

echo "My grade is : " $standing >> my_profile.txt

echo "I will graduate in the year : " $sum >> my_profile.txt


 Assignment #7 due 10/31/25

  Build 8 graphs using matplotlib. I want two separate publicly traded companies e.g. AAPL & AMZN Volume and price graphs for a 1 year p...