Pick any stock and send me the linear regression chart for that stock.
Wednesday, April 22, 2026
Wednesday, April 15, 2026
Assignment #9 dues end of term
https://uconnstamfordslp.blogspot.com/p/prompt-engineering-exercises.html
Tuesday, April 7, 2026
Assignment #8 due Wednesday 4/15
Wednesday, April 1, 2026
Assignment #7 due 4/8/2026
Take or use picture of a document(piece of mail) or any picture that has words.
Wednesday, March 25, 2026
Assignment #6 due 4/1/26
Name
https://uconnstamfordslp.blogspot.com/p/encrypt-and-decrypt-data-with-cloud-kms.html
Leveraging Assignment 1
Hello my name is John Iacovacci
Email to john.iacovacci@uconn.edu
Thursday, March 5, 2026
Optional Assignment #4
I created a shorter simpler version for the Python CRUD example for those who were having issues and wish to try it out.
Adjunct Professor John Iacovacci
Update on Assignment #4
Due to inconsistencies with the Cloud Run process assignment #4 will be optional meaning it will not negatively impact anyone's grade.
Adjunct Professor John Iacovacci
Assignment #5 Due 3/13/26
Build 8 graphs using matplotlib.
Adjunct Professor John Iacovacci
Friday, February 27, 2026
Assignment # 4 due Friday 3/6/26
Assignment # 4 due Friday 3/6/26
Tuesday, February 24, 2026
Office Hours and Cloud Run
Midterm grades will reflect 4 assignments.
- Linux shell
- Web site
- Python Invoicer
- Cloud Run Datastore Python CRUD (to be reviewed in class this week)
Adjunct Professor John Iacovacci
Saturday, February 14, 2026
Cloud run exercise
To all:
Adjunct Professor John Iacovacci
Thursday, February 5, 2026
Assignment #2 due 2/13/26
Create a web site with
HTML FORM to collect
Wednesday, February 4, 2026
AI Literacy
It can take job seekers months just to get an employer's attention, while actually landing the job is even more challenging. To stand out, one career expert underscores the skill that employers value most right now.
Thursday, January 22, 2026
Assignment#1 due 1/27/26
Create a linux shell program to collect and save the following information.
Note validate major from this list
| Engineering - Engineering Physics |
| Engineering - Electrical Engineering |
| Engineering - Biomedical Engineering |
| Engineering - Mechanical Engineering |
| ACES - Exploratory |
| Engineering - Civil Engineering |
| Engineering - Computer Science & Engineering |
| Engineering - Computer Science |
Name
#!/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 10 due before grading
Pick any stock and send me the linear regression chart for that stock. https://uconnstamfordslp.blogspot.com/p/machine-learning-exercise.h...
-
Assignment #2 due Friday 2/7/25 Create a web site with main page of index.html and 2 other linked original content html pages At least 2...
-
https://uconnstamfordslp.blogspot.com/p/linux-explained.html Create a linux shell program to state Name Major Graduation Year What you want ...
-
https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html Recreate the app engine project above and send me a wor...