Jacob’s Project

Twin Python Projects

Word Game:

This trinket or game is about guessing the word and then after getting the kiwi choosing to give it to a god, basically making it an RNG where you have to go through two processes.

Number Game:

This trinket is a menu inspired by restaurants and was the closest thing that had a practical use and I thought it would be fun to create this with an huge amount of possibilities to what you can guy.

Remembrance Day Poppy Design

On Remembrance Day, we made a tinkered graveyard and poppy remembrance for those who had fallen during the World War, and this is my project. I decided to also make a tower and fenced the graveyard around making it more “secure and protected.”

Month of Failure Projects

This is a fortune teller trinket where it will allow you to ask five questions and the fortune teller will answer you with vague questions. This is meant to be a joke and shouldn’t be taken seriously.

Technology News Article

Cybersecurity is an issue

Artificial Intelligence poses significant challenges due to its potential to disrupt various aspects of society. One major concern is job displacement, as AI systems can automate tasks traditionally performed by humans, leading to unemployment in sectors such as manufacturing, customer service, and even healthcare. Additionally, AI’s ability to make decisions without human intervention raises ethical issues, particularly in areas like privacy, security, and accountability. The reliance on AI for critical decisions could lead to biases or errors, as algorithms are often based on flawed or incomplete data. Furthermore, the rapid development of AI technologies outpaces regulation, creating risks of misuse, such as in surveillance or the creation of deepfakes. As AI becomes more integrated into daily life, the potential for its abuse or unintended consequences grows, highlighting the need for responsible development and governance to ensure it benefits society without causing harm.

Problems of Data Privacy

Data privacy is a growing concern in today’s digital world, where personal information is constantly collected, stored, and shared across various platforms. The more data businesses and organizations gather, the higher the risk of unauthorized access, breaches, or misuse. Personal data can be exploited for targeted advertising, identity theft, or even surveillance, often without individuals’ full knowledge or consent. Moreover, many users are unaware of the extent to which their data is being collected and how it is being used, raising issues around informed consent. The increasing use of cloud storage and interconnected devices only amplifies the risk of data exposure. As governments and companies struggle to keep up with technological advancements, data protection laws and regulations may fail to adequately safeguard individuals. With the rise of cyberattacks and the growing value of personal data, ensuring robust data privacy measures has become more critical than ever.

Dangers of AI

Artificial Intelligence: Artificial intelligence (AI) presents significant challenges, particularly in terms of ethics, employment, and security. As AI systems become more advanced, they have the potential to replace human workers in many industries, leading to job displacement and economic inequality.

NHL Data Predictions

These are my NHL predictions stats. During the months of February, March, and April, we were tasked to predict NHL stats from our top 20 favourite NHL players and predict their stats during the games.

Group Website:

Swimming Association Rip-off Version

This website was purely made for fun and provides people with the Top 8 male and female swimmers, as well as how to swim each stroke.

Passion Projects

251EDigital Arts 9.EshanK100892@wpga.ca

Project 1 – Christmas Characters Photoshop

These are projects of characters created using Photoshop that are Christmas-themed.

Project 2 – Remembrance Day Poppy Vector Illustrator

This is our Remembrance Day project where we learned how to create vectors on Illustrator.

Project 3 – Halloween Video Project Premier Pro

This was when we learned to add videos off YouTube into a platform called Premier Pro and create a cool video with it – one of my favourites!

Project 4 – NHL Predictions Slideshow

This was when we predicted NHL players stats and collected it on a google sheet – attached is a slideshow of my findings.

https://docs.google.com/presentation/d/14Ve6jMEF7_JGy-nEIATYaz0zI78TUj8_cGqJ-8IavFA/edit?slide=id.p#slide=id.p

Project 5 – Group Website – Loshan

This was when we learned how to create a website of our own! I did mine with Lola, and we created a NHL themed lotion website.

loshan.wpga.tech

Project 6 – Technology News Articles

This was when we found 3 articles about issues regarding modern technology that we thought were interesting and wrote a summary and thoughts about them.

https://docs.google.com/document/d/1SlmmRv922WxIIMRKTEWaLNP205xFLlFxeLKN38k5aCM/edit?tab=t.0

251EDigital Arts 9.IslaD100957@wpga.ca

Halloween video Project

Halloween movie

Remembrance day poppy

Winter project fire place

Winter project snowman

Winter project tree

Technology news stories

Apple tech conference screen mirroring

This tech conference was about iPhone to MacBook screen mirroring. This tech conference talked about mirroring  your phone’s screen onto your laptop. Because of this technology, people  can view documents, videos, and pictures taken with their phone on their laptop. It also allows multitasking, allowing people to work  on their laptop and phone at the same time. It also makes sharing materials between  two devices easier. Those who use many devices for work will find this technology very helpful. They  can see  their work and access it from any device.

I think this is a good tool for when you’re working because it makes it easier to share photos from your phone to your laptop. It eliminates the need to carry around multiple devices, as well as the need for wires or cables. For schools this might be an issue because schools are trying to eliminate phone usage and this would make it easier to use a phone without anyone knowing.

Apple tech conference Ai text editing and photo

A recent tech conference was released about Apple’s new AI which edits on pieces of text and email and finds photos in your camera roll when you type a description into a search engine. This technology has the ability to help make communication more efficient and accurate. It can also free up time for users to focus on more important tasks, saving a massive amount of time. AI-based editing can also help to reduce errors and improve the overall quality of communication. Searching for photos based on a caption makes it easy for your device to figure out your likes and dislikes from your photos.

I think this is a useful tool for when you are trying to write something you don’t care about such as an invite to something and it is able to edit your texts which will make it easier to read peoples texts and you can type faster because you know it will edit it. I think it is a little creepy though with the AI photo because you have no clue what apple will do with this information.

NHL data

251ADigital Media Development 12AndrewL100963@wpga.ca

Hi my name is Andrew Li and here are some of my work this year.

Project 1 – Remembrance Day Illustrator Goes Here

This is a poppy I created with Adobe Illustrator. This is an example of vector art.

My Excel Project – Advanced Excel Skills Part 1

I did an external course on Excel. This video is a navigation speedrun of the skills I’ve learned.

My Excel Project – Advanced Excel Skills Partr 2

This video was the review exercise from module 2 “efficiency”. This is also a speedrum exercise.

251DProgramming and Robotics 8.LeeL100979@wpga.ca

1. Twin Python Projects – Numbers and Words

Number Project

This code calculates your change in cash for the latest amount of bills.

def main():
price = int(input(“You enter a store with a $100 bill, how much do you spend?”))
total = price
if total > 100:
print(“too expensive, you only have a $100 bill”)
else:
print(“you bought an item for $” + str(total) + “, and paid it with a $100 bill\nyour change is:”)
price = coump20(0, 100 – price)
price = coump10(0, price)
price = coump5(0, price)
price = coump1(0, price)

def coump20(z, p):
z = p // 20
p = p – z * 20
print(str(z) + “, $20 bill(s)”)
return p
def coump10(z, p):
z = p // 10
p = p – z * 10
print(str(z) + “, $10 bill(s)”)
return p
def coump5(z, p):
z = p // 5
p = p – z * 5
print(str(z) + “, $5 bill(s)”)
return p
def coump1(z, p):
z = p // 1
p = p – z * 1
print(str(z) + “, loonie(s)”)
return p

main()

Word Project

This code tells a scary story about you, Amy, and Jonathan

def main():
print(“””Hello, this is a story game where you will chose your path though a Haunted Mansion.
CHOOSE WHISLY!!!
!!!(IF_YOUR_NAME_IS_AMY_OR_JONATHAN_CHANGE_IT)!!!”””)
name = input(“please enter you name: “)
age = int(input(“please enter your age: “))
if age <= 13:
print(“you are too young to play this story game”)
else:
friend = room1(name)
if friend != 1:
end = room2(friend,name)
if end == 2:
print(“”)
elif end != 1 and friend.lower() == “amy”:
print(“”)
print(“You keep on running until possesed jonathan tells you that this was all a prank.\nBoth of them start cracking up at the prank and you three go home.\n(GOOD_ENDING:::THANKS_FOR_PLAYING)”)
else:
print(“”)
print(“””Jonathan jumps out the window and lands to hard.
You see possesed Amy chase you, so you jump too.
Luckly jonathans body softens the landing and you run away scared and lost FOREVER.
THE END!!!(BAD_ENDING)”””)
else:
print(“”)

def room1(name):
print(“”)
print(“””you and your friends are exploring this haunted mansion on halloween night.”””)

user_input = input(“who should enter the mansion first(” + name + “, Amy, Jonathan)”)
if user_input.lower() == name.lower():
print(“”)
print(“””You enter and a ghost suddenly possesses you.
you start to feel dizzy while the ghost takes control over you body and you black out.
(GAME_OVER)”””)
return 1
elif user_input.lower() == “amy”:
print(“”)
print(“””Amy enters first, and suddenly a ghost possesses
Amy and the door shuts behind you!”””)
friend = “Jonathan”
return friend
elif user_input.lower() == “jonathan”:
print(“”)
print(“””Jonathan enters first, and suddenly a ghost possesses
Jonathan and the door shuts behind you!”””)
friend = “Amy”
return friend
else:
print(“””That is not a valid option,
please check you spelling”””)
return 1

def room2(frined, name):
print(“”)
print(“You and ” + str(frined) + ” run passed the ghost friend and runs up stairs and you find a broken window”)
user_input = input(“who jumps first(” + str(name) + “, ” + str(frined) + “)”)
if user_input.lower() == name.lower():
print(“”)
print(“You jump out the window and landed to hard.\n (GAME_OVER)”)
return 2
elif user_input.lower() == frined.lower():
return 3
else:
print(“””\nThat is not a valid option,
please check you spelling”””)
return 2
main()

2. Remembrance Day Poppy (vector demonstration)

3. NHL Predictions

PASSION PROJECTS