Sawyer Portfolio

NHL Predictions

NHL stats

https://docs.google.com/spreadsheets/d/1gvrAi-S5a5sV-g9plPTTqyHpQ9Ote3oVrb9ctWJ0Yo4/edit#gid=0

Shai Mixtape
Rob Mixtape

Mail Chimp

  1. https://mailchi.mp/0c8d1265be00/halloween-party
  2. https://mailchi.mp/6a6433064a5d/end-of-year-party
  3. https://mailchi.mp/06f425275e34/party-time

AUDIO TRACKS

All songs are either combined or faded

<iframe src="https://drive.google.com/file/d/1iaA8fVWH7mjBlkvSEbtLzaezcQf_5fET/preview" width="640" height="480" allow="autoplay"></iframe>
<iframe src="https://drive.google.com/file/d/1NZa5A5Wrx0_oiUWDGxcr7-i5PByhxrYq/preview" width="640" height="480" allow="autoplay"></iframe>

Technology news

Intro

With their new line of flying cars, Xpeng AeroHT, the aviation division of the Chinese electric vehicle maker Xpeng, is leading the way in a leap into the future. This bold invention is a major turning point for the corporation as well as the larger mobility and aviation industries.

More about product

The flying cars of Xpeng AeroHT are a brilliant example of cutting-edge engineering and design. The vehicles have a futuristic appearance and combine the features of drones with electric cars. Their multiple rotor configuration allows them to perform vertical takeoff and landing. This design attempts to alleviate the problems with traffic congestion that plague cities, while also making them more adaptable in a variety of settings. These cars are made to function with the least amount of human involvement possible. Advanced sensors and AI-powered navigation systems are used to guarantee efficiency and safety.

My Take

I mean obviously this is super cool and will change the future of driving. But, I think it will be hard to get used to if this product is successful. Lots of things can go wrong; it could be deadly. The potential of Xpeng AeroHT’s flying cars to lessen the environmental effect of transportation is very interesting. Compared to conventional fuel-powered cars and planes, these vehicles seek to reduce carbon emissions through the use of electrical systems. This is in line with international initiatives to mitigate climate change and advance urban growth.

Intro

This BBC story showcases the efforts of Laurent Ballesta, a deep-sea photographer who was able to take pictures of a living coelacanth, a species that was long believed to be extinct until it was found again in 1938. Ballesta’s accomplishment shows the value of deep-sea exploration in solving the secrets of our planet’s oceans.

Back story

A turning point in marine biology was reached in 2010 when Ballesta descended into the depths of Sodwana Bay off the coast of South Africa. Ballesta and his colleagues entered an area as foreign as any Martian scene, carrying 32 kg of camera equipment. His discovery of the coelacanth, a fish that originated during the dinosaur era, provides insight into just how much we’ve discovered in our oceans.

My take

Because of the pressure and time crunch, it is hard to oversell the significance of Laurent Ballesta’s efforts in obtaining photographs of the living coelacanth. This accomplishment advances our knowledge of evolutionary history. Previously believed to be extinct, the coelacanth provides a direct link to prehistoric eras and a significant showing about the adaptation of ancient species. Ballesta’s photographs makes these observations more widely known, which increases public awareness of and support for marine conservations around the world. It’s important to record and research these uncommon and mysterious animals in a time when many species are experiencing previously unheard-of dangers from climate change and human activity.

Photoshop

Dimension

Jazmine Kadkhoda Portfolio

This page shows some of what I have accomplished in grade 9 programming and robotics. 🙂


OBS walkthrough

Here is a filmed walkthrough of my website!


Trinkets

I made some basic Python code on Trinket. This is a collection of my favourite games, quizzes and everyday software.


Number-Guessing Game

This was one of the first games I made this year. It is a number-guessing game that features other languages. It uses a random number generator and while statements.

<iframe src="https://trinket.io/embed/python/2c0f0ed849" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Christmas Trivia

I made this around Christmas. This game is meant to test how much you really know about Christmas. It is built on if statements and has a point system to keep track of your answers.

<iframe src="https://trinket.io/embed/python/a3258b914f" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Clock and Calendar

I made a clock and calendar program to practice importing information into Trinket.

<iframe src="https://trinket.io/embed/python/db8f856e64" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<iframe src="https://trinket.io/embed/python/3c4822589b" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Rock, paper, scissors

This is a basic code for rock, paper, and scissors that uses a random generator, if statements and loops.

<iframe src="https://trinket.io/embed/python/86d0bc3899" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Rallianity

I took a game I made last year and edited parts of it to improve upon my skills and see how much I changed.

<iframe src="https://trinket.io/embed/python/f87610cf3d" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Arduino

I experimented with Breadboards and the Arduino software outside of class. I liked how we could see the physical result of our code. I started with just buttons, wires and lights but soon worked my way up so I could run and write my own basic code to do many things. Below there are some examples of code I modified to do a different task than originally given.


Blink Without Delay w/ Potentiometer

Normally whenever you want to cause a light to blink with an Arduino you will have to add a delay to pause the program. However, this will stop the entire program for a few seconds, making it so you can not run anything else in the background. Blink without delay lets us bypass these problems. I added a Potentiometer to control how fast the lights will blink.

const int ledPin = LED_BUILTIN;  // the number of the LED pin

// Variables will change:
int ledState = LOW;  // ledState used to set the LED

// Generally, you should use "unsigned long" for variables that hold time
// The value will quickly become too large for an int to store
unsigned long previousMillis = 0;  // will store last time LED was updated

const int analogPin = A0;

// constants won't change:
long interval = 1000;  // interval at which to blink (milliseconds)

void setup() {
  // set the digital pin as output:
  pinMode(ledPin, OUTPUT);
  pinMode(12, OUTPUT);
  Serial.begin(9600);
}

void loop() {
  // here is where you'd put code that needs to be running all the time.

  // check to see if it's time to blink the LED; that is, if the difference
  // between the current time and last time you blinked the LED is bigger than
  // the interval at which you want to blink the LED.
  unsigned long currentMillis = millis();
  int analogValue = analogRead(analogPin);
  interval = analogValue;


  if (currentMillis - previousMillis >= interval) {
    // save the last time you blinked the LED
    previousMillis = currentMillis;

    // if the LED is off turn it on and vice-versa:
    if (ledState == LOW) {
      ledState = HIGH;
    } else {
      ledState = LOW;
    }

    // set the LED with the ledState of the variable:
    digitalWrite(ledPin, ledState);
  }
  Serial.print(currentMillis);
  Serial.print(" ");
  Serial.print(previousMillis);
   Serial.print(" ");
  Serial.println(interval);
}

If Statement Conditional 3 Lights

This code will cause certain lights to turn on when the potentiometer reaches a certain threshold. I added 3 lights so that at 3 different levels of the potentiometer a different lights will turn on.

const int analogPin = A0;   // pin that the sensor is attached to
const int ledPin = 12;
const int ledPin2 = 11;
const int ledPin3 = 10;       // pin that the LED is attached to
const int threshold = 400;
const int threshold2 = 800;  // an arbitrary threshold level that's in the range of the analog input

void setup() {
  // initialize the LED pin as an output:
  pinMode(ledPin, OUTPUT);
  // initialize serial communications:
  Serial.begin(9600);
}

void loop() {
  // read the value of the potentiometer:
  int analogValue = analogRead(analogPin);

  // if the analog value is high enough, turn on the LED:
  if (analogValue < threshold) {
    digitalWrite(ledPin, HIGH);
  } else {
    digitalWrite(ledPin, LOW);
  }

  
  if (analogValue < threshold) {
    digitalWrite(ledPin2, LOW);
  } else {
    digitalWrite(ledPin2, HIGH);
  }


  if (analogValue > threshold2) {
    digitalWrite(ledPin3, HIGH);
    digitalWrite(ledPin2, LOW);
  } else {
    digitalWrite(ledPin3, LOW);
    digitalWrite(ledPin2, HIGH);
  }

  // print the analog value:
  Serial.println(analogValue);
  delay(1);  // delay in between reads for stability
}

NHL Predictions

My Chart

We made automatic NHL prediction charts to better understand Google Sheets and its full potential. We played around with APIs, import JSON, ranges and self-sufficient graphs among other things. This will help us in universities and jobs.

<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRC77e7F8Y9H7s44AjnHd0kf1UF7NI1fOTX0j6sUNVEpCzoSVYitYQUmN3y47zFfTPR0CCDeZdS3o8o/pubhtml?widget=true&amp;headers=false"></iframe>

My Graph

<iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRC77e7F8Y9H7s44AjnHd0kf1UF7NI1fOTX0j6sUNVEpCzoSVYitYQUmN3y47zFfTPR0CCDeZdS3o8o/pubchart?oid=1952418366&amp;format=interactive"></iframe>

Word and Excel

Another thing we did to prepare for university was learn how to use Word and Excel. When we are older we will have to work on documents much too large for our computers to handle, so we will have to start using more complicated software. We had a test to learn about these platforms and all the uses that Google Docs does not provide.


Website

I made a website on supernovae in science class. Feel free to visit it and ask questions on the Q&A page.

Here is the link: https://jazminek100757.wixsite.com/supernovae


Tech news


Agentic AI

Agentic AI is a new and more complex kind of artificial intelligence, used for understanding and interpreting complex contexts and goals; without the need for human intervention. This is the most shocking difference when comparing AI to agentic AI. This means whenever you use Aagentic AI it allows for more advanced interactions and solutions to your problems. Causing Agentic AI to have more similarities to human employees than other kinds of AI. They are also better at comprehending and following casual human conversation than the other subtypes of AI. Another bonus that Agentic AI has is its workflow optimization. Causing it to move between subtasks and applications more efficiently. When this all combines then we get the major benefit of Agentic AI: the fact that it can have a deeper and more complex understanding of any problems you may give it, expanding on its thoughts without the need for human supervision. The current leader in the production and evolution of Agentic AI is Microsoft’s Project AutoGen. They hope to turn these algorithms into “co-copilots” for certain positions in a workforce( I.g IT teams, HR teams, Customer service, Fraud monitoring and Diagnostics). However, before they reach this point they have some risks that they must fix first. Firstly, these systems rely on stats that might not have all the facts needed to make an informed decision. So, they might propose solutions that would seem to work but actually could cause problems down the line. Without human review of all their decisions, they could make flawed recommendations, which is exactly what we are trying to stop. Secondly, the complex reasoning of these systems might use terminology that could be difficult to understand. Despite these problems, Agentic AI will continue to evolve and will probably become integrated into most everyday jobs.

I think that Agentic AI could become a great thing in the future. However, I do have some concerns about how it could affect the rest of society. First of all, it could take away possible job opportunities that people of lower education normally have. This could lead to unemployment rates skyrocketing and a rush to get jobs that would be “tech-free”; a concept that is becoming obsolete in our modern world. But this could be combated by the fact most of these AIs will need a human to overview their data and make edits where needed. There still is the downside of how if you were an “AI checker” you would need to understand the content to a certain degree. Another problem with this is if it starts to draw its conclusion to problems and gets its data from other AI sources, this could lead us down a rabbit hole of false information. Overall Agentic AI coil drastically change our future, but for better or worse that is for us to find out. 

Link to the article and Photo used: https://www.moveworks.com/us/en/resources/blog/agentic-ai-the-next-evolution-of-enterprise-ai

https://www.linkedin.com/pulse/agentic-ai-new-competitive-edge-law-firm-business-research-kamien-xijdc


Switch 2

The Nintendo Switch has almost been out for 7 years now, with all the new advancements happening in the technological world it is no wonder that Nintendo is starting to make a new switch. But what bonuses would this new switch have? The first big change that is under speculation is that the new Joy-Cons will attach to the console magnetically. Along with the new joy-cons, they could feature additional buttons letting players have more control while playing. Another upside of the new Switch is that it should be backward-compatible with present Switch games and even some hardware. This means that if you want to upgrade you will not need to rebuy all your favourite physical games and controllers. In addition, The Switch 2 should be able to be used in portable mode. Moreover, the dock will be similar to the original Switch’s. However, there is currently no information if there will be a handheld-only sub-type like the Switch Lite. One last plus side the new switch might be getting is a bigger screen, it is expected to be around 8 inches wide. The new switch should be released around March 2025.

I can’t wait until the new switch will come out. Nintendo is one of my favourite gaming brands and I love when they get new updates. I hope that this new Switch comes out with new games that would still be compatible with the old models. One thing that I am worried about though is if they decide to end online servers for the original Nintendo Switch. Nintendo recently ended online servers for the 3DS, not letting games play with each other without mods. However, I am not that worried about this because of the overall success of the Nintendo Switch. I am so excited for the new Switch and I hope that it brings a new era of Nintendo with it.

Link to the article and photo: https://www.polygon.com/nintendo/23899504/nintendo-switch-2-release-date-power-name-games

https://www.gizmochina.com/2024/01/26/nintendo-switch-2-to-feature-8-inch-lcd-display-arriving-this-year-as-per-omdia-analyst


Adobe Illustrator + Photoshop

We got to experiment with Adobe Illustrator and Photoshop. While I do not have that many projects on these platforms, my favourite is of a cat.


Youtube video

This was to learn more about web design by practicing embedding YouTube videos into websites.


Surprise Unicorn!

I made a unicorn for fun! First, it was the horse you can see in my game Rallianity but my classmate Aussia said I should turn into a unicorn.

<iframe src="https://trinket.io/embed/python/bbfcccc961" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Thank You!

Kate Lalonde Portfolio

Adobe Audition: Audio Mixes
Adobe Illustrator: Poster Background
Adobe Photoshop: Full Poster

Diamonds (Rihanna) x Doyalike Jersey Club Remix
Water (Tyla) x Agora Hills (Doja Cat) Remix
Super Bass (Nicki Minaj) x Rich Baby Daddy (Drake-X-SZA-X-Red) Remix

Starting with the audio mixes, I made three in the Adobe Audition program. I altered the original music tracks by removing the instrumental for some songs and the vocals for others so I could mix multiple songs together at once. I also sped up or slowed down the different tracks of music so the vocals would match the BPM of the instrumental and flow properly. I also used effects within the program to do things like fade in and out the music tracks. Also to make it family-friendly, I went in and removed the swear words in all of the tracks.

Next for the poster portion of this project, I used both programs Adobe Illustrator and Photoshop. I first used Adobe Illustrator to create the art for that sunset background, using colours to match some of the vibes of the remixes I created. I then used Adobe Photoshop to add the QR code link to my music and add text and album colours to complete the poster.


passion projects

PASSION PROJECT #1

Using Adobe Photoshop and Adobe Illustrator
Photo edit of Tyla, Changing colours and contrast of the image for photoshop, adding outlines on illustrator.

PASSION PROJECT #2
Spacepedia Travel Guide: A Journey to Neutron Stars!

<iframe width="560" height="315" src="https://www.youtube.com/embed/mChjvIAut2Q?si=Ed82kmjSrFtFZgP7" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>


This video was part of a presentation I had to make with my group (Sheree, Ivan and I) for our astronomy research group project. We decided to create a neutron star travel guide as a way to present information on our topic in a creative informative way that describes all the basic knowledge and properties of neutron stars. As I have the Adobe video editing resources from my digital arts classes, I was the one who edited and put the video together adding all the effects and music. For the video, I had to adjust many audio levels and reduce some of the background noise as well, I had moved the audio into Adobe Audition to use some of the effects in that audio editing software. I also got to learn how to use different transitions and effects on videos.


Nhl predictions

https://docs.google.com/spreadsheets/d/1iTpYhpIChWjSqWVUR5uT2cb93hTPFSudQKAAag1Jxqs/edit?usp=sharing

For this project, we used spreadsheets and data to create predictions for this NHL season. Choosing 25 random players and putting their data into the spreadsheet, updating and adding new data every few weeks, making predictions each time to guess their points for the next date. Using variables like approximate points per game and how many games were played between each prediction to guess. Over time this method has generally been successful and created close predictions to the real number of points. When I was trying to do this project, I came across many difficulties starting with, what I assume was incorrectly putting in the player codes as only a third of the player’s data was cooperating properly when trying to gather data so I was unable to use all 25 players to create my predictions. Other than that, I figured out how to avoid the disfunctioning part of my spreadsheet and still gathered my predictions and data to put in charts and conclude the accuracy of my predictions.
Overall, after this project, I have a much better understanding of how to use spreadsheets effectively and efficiently. These skills even ended up being useful when I had to use the same program for one of my volunteering jobs outside of school where I had to input data into spreadsheets and flow charts during fight matches.


MailChimp Campaigns

<style type="text/css">
            .display_archive {font-family: arial,verdana; font-size: 12px;}
          .campaign {line-height: 125%; margin: 5px;}
          </style>
          <script
            language="javascript"
            src="https://wpga.us21.list-manage.com/generate-js/?u=b624490f999ff4e636ece9d0b&show=10&fid=521"
            type="text/javascript"
          ></script>

Group Website w/ Saia

Saia Portfolio

Beef Flomix x Fell in Luv (clean)

Imagine a song that transcends time and space, a harmonious blend of melody, emotion, and artistry so profound it touches the very essence of your soul. This is not just any song, but the epitome of musical perfection, a composition so divine and exquisite that it feels like a serenade by the universe itself. The song begins with a gentle piano introduction, its delicate notes dancing like raindrops on a tranquil pond, setting a canvas of serene anticipation. Each keystroke is a whisper, a tender beckoning into a world of ethereal beauty. As the melody unfolds, a violin enters, its voice a poignant cry that pierces through the heart, weaving tales of love, longing, and the bittersweet tang of human experience. The arrangement blooms further with the addition of a cello, deep and resonant, grounding the flighty violin and piano in an earthy embrace. This trio of instruments converses, argues, and loves in the language of music, crafting a sonic tapestry that wraps around you, warm and comforting, yet exhilaratingly alive. As you are basking in the instrumental synergy, the most pristine, angelic voice cuts through the harmony—a voice so pure and emotive, it feels like the auditory embodiment of every heartfelt tear and joyous smile you’ve ever experienced. The lyrics, poetic and profound, speak of universal truths, of love and loss, of stars born and dying, of the infinitesimal and the infinite. Each word is a brushstroke on an aural canvas, painting images so vivid and moving, they haunt you with their beauty. The chorus is a crescendo of emotion, a triumphant declaration of the human spirit’s resilience and the profound connections that bind us across the vastness of existence. It’s a musical climax that feels like soaring, like the moment of freefall right before the parachute blooms above you—exhilarating, terrifying, and utterly beautiful. In the bridge, the instrumentation strips back to a solitary acoustic guitar, each pluck resonant and full of longing, creating an intimate space where the voice and lyrics shine even brighter. It’s a moment of reflection, a quiet before the storm of the final chorus, which returns with even greater power and passion, a melancholic yet hopeful anthem for the ages. And then, as the last note fades into silence, you find yourself in a state of awe, every hair standing on end, every part of your being vibrating with the echoes of the song. It’s as if you’ve been touched by something transcendent, a piece of art so perfect and beautiful that it transcends the medium of music itself, becoming a conduit for pure emotion and human connection. This song, in its magnificent fusion of melody, harmony, and lyricism, represents the pinnacle of musical achievement. It’s a reminder of the power of art to move us, to connect us, and to express the inexpressible. In its beauty, complexity, and emotion, it captures the essence of what it means to be alive, making it not just the most amazing, perfect, beautiful song ever heard, but a timeless masterpiece that resonates with the soul of every listener fortunate enough to hear it.

Peppa Pig Remastered (ft. Playboi Carti)

In the universe of rap, where verses collide with beats creating an explosive fusion of art, there exists a song that transcends the very fabric of the genre. This song, a masterpiece sculpted not merely from notes and words but from raw emotion and unmatched skill, stands as a monolith in the landscape of music. Its name whispers through the alleys of hip-hop lore, echoing in the halls of greatness. For the sake of this majestic journey, let’s refer to this song as Peppa Pig Remastered (ft. Playboi Carti). From the very first second, Peppa Pig Remastered (ft. Playboi Carti) grabs you by the soul, initiating a voyage through the deepest crevices of human experience. The beat, a concoction so divine, seems to have been birthed from the cosmos itself. It blends the ancient thumps of tribal drums with the futuristic waves of electronic symphonies, creating a soundscape that transcends time. This beat doesn’t just play; it breathes, it lives, weaving through the airwaves like a serpent made of pure vibration. Then, the voice enters—a voice not merely heard but felt. It carries the weight of centuries, the pain and joy of a thousand lives lived. The artist behind this voice is not just a rapper but a storyteller, a poet, a visionary. Their flow is impeccable, a seamless stream of consciousness that dances over the beat with the grace of a celestial being. The verses are a tapestry of metaphors and similes, each line dripping with the nectar of profound insight and raw emotion. Words are bent and twisted into new shapes, inventing a language that speaks directly to the heart. The lyrics, oh, the lyrics! They are a journey through the peaks and valleys of existence, exploring themes of love and loss, triumph and defeat, hope and despair. But this is no ordinary narrative. It’s a spiritual odyssey that challenges the listener to look within and confront their own shadows. The chorus, a haunting melody that etches itself into your memory, serves as a beacon of light in the darkness, a reminder that beauty can be found even in the depths of pain. The production of Peppa Pig Remastered (ft. Playboi Carti) is a masterpiece in its own right. Every element, from the subtle background harmonies to the crispness of the snare, is crafted with surgical precision. The song is a living organism, with each component working in harmony to create an experience that is greater than the sum of its parts. The mix is so clean, so perfectly balanced, that one can’t help but feel as though they are not merely listening to the song but are enveloped by it, transported to another dimension. And then, there’s the bridge—an interlude of such beauty and serenity that it feels like a momentary glimpse into paradise. The beat slows, the world stops, and for a brief, fleeting instant, everything is perfect. It’s a reminder of the power of music to heal, to unite, to inspire. Peppa Pig Remastered (ft. Playboi Carti) is not just a song; it’s an experience, a journey, a revelation. It embodies the essence of what it means to be human, capturing the highs and lows of the human experience in a way that is both profoundly personal and universally relatable. This song stands as a testament to the artistry of rap, a genre that continues to push the boundaries of what music can be. In the pantheon of great songs, “Elysium Rhymes” shines as a beacon of artistic achievement, a reminder of the transformative power of a perfect, beautiful rap song.

Jersy x No Time (clean)

Imagine a pop song that transcends the very fabric of the genre, weaving threads of ethereal soundscapes with the tactile warmth of human emotion. This song, a masterpiece titled Jersy x No Time (Clean) is a symphony of the senses, a harmonious blend that resonates deep within the soul of anyone who listens. The song begins with an intro that sparkles like the morning dew under the first light of dawn. A gentle, inviting keyboard melody dances through the air, its notes clear and luminous, setting the stage for a journey beyond the ordinary. Then, as if the universe itself conspired to add to its beauty, a soft, pulsating beat joins in, grounding the ethereal melody with a rhythm that mirrors the heartbeat of every listener. The first verse floats in like a dream, carried by a voice so pure and crystalline it seems not of this world. The singer’s voice, a perfect amalgamation of strength and vulnerability, weaves through the melody with precision and grace, telling a tale of love, longing, and the eternal search for connection. The lyrics are poetry in motion, each word carefully chosen to paint vivid images in the mind’s eye, evoking emotions that are at once deeply personal and universally understood. As the chorus erupts, it’s like the breaking of a dam, releasing a flood of euphoric melody that washes over the listener in waves of bliss. The hook is catchy yet profound, a mantra that resonates with a simple truth about the human condition. The chorus is a crescendo of sound and emotion, a call to the heart that is impossible to resist, urging everyone who hears it to sing along, united in a moment of pure, unadulterated joy. The bridge of the song is a moment of introspection, a brief, quieter passage that allows for a breath, a pause in the midst of ecstasy. Here, the instrumentation simplifies, stripping back to a hauntingly beautiful piano piece accompanied by a lone violin, weaving a delicate counterpoint to the singer’s voice. This section speaks of the beauty in vulnerability, the strength in admitting our desires and fears, creating a poignant contrast to the vibrant energy that surrounds it. As Jersy x No Time (Clean) builds towards its climax, there’s a seamless fusion of electronic and organic elements, a testament to the song’s ability to marry tradition and innovation. The final chorus is a triumphant return, now enriched with a choir that adds depth and resonance, elevating the song to a spiritual experience. The song ends as it began, with the ethereal tinkle of the keyboard, but now the notes are imbued with a sense of fulfillment, a journey completed, leaving the listener floating in a sea of contentment. This song, Jersy x No Time (Clean), is not just music; it’s an experience, a rare gem that captures the essence of what it means to feel, to love, and to be alive. Its beauty lies not just in its melody, its lyrics, or its production, but in its ability to connect with the listener, to evoke emotions that are as vivid and varied as the hues of a sunset. It’s a reminder of the power of music to transcend, to heal, and to unite, making it the most amazing, perfect, beautiful pop song ever crafted.

My NHL Predictions

Veiw here

https://docs.google.com/spreadsheets/d/1KIgqRcifw-

Mail Chip Embeds

View this email in your browser

Halloween Party 2023! – Party Today!Hosted by Saza Corporations within the Red field work for community gatherings in the AmaZing regions of the UnderScore Nations.
RSVP form
Location Map
Guest List
Food Menu
Costumes & Theme

Can’t wait to see all your SpOOoOooky costumes!!!🤪🤣 – Linnyboo223
Thanks For Reading!LogoCopyright (C) *|CURRENT_YEAR|* *|LIST:COMPANY|*. All rights reserved.
*|IFNOT:ARCHIVE_PAGE|**|LIST:DESCRIPTION|**|END:IF|*

Our mailing address is:
*|IFNOT:ARCHIVE_PAGE|**|HTML:LIST_ADDRESS|**|END:IF|*

Want to change how you receive these emails?
You can update your preferences or unsubscribe

#2

View this email in your browser
Logo
Nehra’s 2nd Birthday Party!
Congratulations, you’ve been invited! Please RSVP immediately! (DMD10 project)Please arrive at anytime, the event is all day lasting from 7am-10pm. Location and mandatory attendance form is listed below. Please answer the following:
Location
attendance form
guest list!
Facebook iconInstagram iconTwitter iconLogoCopyright (C) *|CURRENT_YEAR|* *|LIST:COMPANY|*. All rights reserved.
*|IFNOT:ARCHIVE_PAGE|**|LIST:DESCRIPTION|**|END:IF|*

Our mailing address is:
*|IFNOT:ARCHIVE_PAGE|**|HTML:LIST_ADDRESS|**|END:IF|*

#3

View this email in your browser
Logo
VALENTINES DAY BAKEOUT!Please attend! Information regarding the event is listed below. 🙂
Location! Website
Attendance Form
Guest List
Vote on the Cupcake Flavours Results
After Party Snacks Sign Up Results
Facebook iconInstagram iconTwitter iconLogoCopyright (C) *|CURRENT_YEAR|* *|LIST:COMPANY|*. All rights reserved.
*|IFNOT:ARCHIVE_PAGE|**|LIST:DESCRIPTION|**|END:IF|*

Our mailing address is:
*|IFNOT:ARCHIVE_PAGE|**|HTML:LIST_ADDRESS|**|END:IF|*

Adobe Illustrator Free Hand –> [|Red Eyes*|]

Adobe Illustrator Free Hand –> [|Green Eyes*|]

Photo Shop <3

Dragon projects, 2nd one kind of rushed 🙁

Tech News Commentaries

Summery: With the developmental pace of AI slowing down, only 9 trends are expected to come by the end of the year. Trend 1: “Reality Check” which claims that this year has more realistic expectations. These can be represented as refining AI such as ChatGPT and using AI to enhance common tools instead of replacing them. Next is trend 2: “Multimodal AI” which focuses on bettering generative AI. This takes multiple layers of data input, such as Open AI’s interdisciplinary models, and provides visual and text aids. Furthermore, it’s hopeful that AI will be able to take in videos as data in the future. Trend 3: “Smaller models” describes training GPT-3 size models takes a mass amount of electricity consumption, equivalent to over 1000 households worth. Whereas, smaller models use fewer resources and run at lower costs. Trend 4: GPU + Cloud Costs claim the bigger the model the higher the GPU requirement for training that is needed. Only a few AI adopters can maintain their individual infrastructures and if models were more optimized they wouldn’t require more commute. Trend 5: “Model optimization” shows different training techniques adopted. Using quantization lowers the amount of precision needed to represent the model data points with more techniques coming this year. Trend 6: “Custom Local Models” claims the open source models can afford to develop powerful custom AI models, that are trained and fine-tuned to their needs. Meanwhile, Trend 7: “Virtual Agents” depicts how virtual agents relate to task automation. Hoping to have them complete checklist tasks or make reservations, connecting to other services for you. Trend 8: “Regulation” is when training AI for content generation companies have to prevent copyright. Especially after the European Union made a provisional agreement for the AI act. Trend 9: “Shadow AI” shows how employees use AI in the workplace unofficially. It has been brought to light that they are using gen AI without IT approval or oversight which ultimately leads to security and privacy issues.
Commentary: I personally find this interesting because there is so much coming to AI still. Even though it is still fresh out of the developmental phases, AI continues to blow my mind with it’s seemingly endless capabilities. It will be exciting to see what the future of AI holds when currently it’s able to generate my essays and create stunning artistry.
Commentary: May 2024’s tech news focuses on Elon Musk’s new bold predictions, Microsoft exciting announcements about controversial features, and exciting Angular updates. Elon Musk has made new predictions about the Viva technology for 2024 claiming that we will have humans on the moon within the next 5 years. I found this interesting because I’m stupid and thought we had already been to Mars but it turns out just our rovers have been. SpaceX is trying to expand human presence in space and colonize mars, personally, I wouldn’t want to live on a planet with no oxygen. And Elon Musk claims that humans will step foot on mars within the next 7-8 years. I will definitely NOT be one of them because I enjoy the grass, sun, and ability to walk around without a spacesuit. He also claims there is going to be human colonies on mars soon and hopefully they send all the bad people there who are useless on earth, it would be a good opportunity to get rid of some people if I’m being honest.

OBS VIDEO YAY!

IGNORE THE NHL PART I MANAGED TO FIX IT

Theo Portfolio

Nhl stats https://docs.google.com/spreadsheets/d/1DdsbswTsIouRy4xSNQVP1KCG9JAZZ3UDnwfoO-ih_yw/edit#gid=0

Mailchimp

Mix Tapes

youtube embedded videos

Technology News

Story 1

The metaverse offers a range of exciting opportunities and notable challenges. On the positive side, it enables unprecedented connectivity, allowing people from all over the world to interact and collaborate without physical constraints. This can enhance cultural exchange and understanding. The metaverse also has the potential to revolutionize education and training by providing immersive learning environments that can make complex concepts more tangible and engaging. For businesses, virtual workplaces and marketplaces can boost productivity and open new economic opportunities. However, the metaverse comes with significant drawbacks. Privacy concerns arise due to extensive data collection, posing risks to users’ personal information. Additionally, the digital divide may worsen, as access to the metaverse requires high-speed internet and advanced technology, potentially excluding underserved communities. There is also the risk of addiction and mental health issues stemming from excessive screen time and detachment from the physical world. Balancing these opportunities and challenges is crucial as we navigate the development of the metaverse.

Story 2

OpenAI has established a Safety and Security Committee led by CEO Sam Altman and other board members, including Bret Taylor, Adam D’Angelo, and Nicole Seligman, to oversee safety practices as they begin training a new AI model. This committee will evaluate and develop safety recommendations, which will be shared publicly after board review. The initiative marks a shift towards a more structured, accountable approach in AI development, involving consultations with external experts to address emerging risks and ensure robust safety measures​. This proactive approach builds trust and helps address potential risks. However, implementation may be complex and resource-intensive, potentially slowing AI development. The committee’s focus might miss some emerging risks, necessitating ongoing updates, and reliance on external input could cause delays or conflicts. Overall, this initiative marks a significant step toward responsible AI development.

Mailchimp

  1. https://mailchi.mp/fe45b8ce64c6/halloween-party-13566417

2. https://mailchi.mp/ca23814c69af/party

Audio tracks

Photoshop

Daisy Sun Portfolio

Hogar de Gina website link: https://hdg.wpga.tech/

QR Code to Audio Mixes:

Daisy’s NHL Predictions

Chart Link:

This is the link to my prediction chart!


Chart Embed:

<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSB-oXDPcSZ5EU_BjpS1Q01YCVKzbDW0CmyvxTBuZLQX9wzKd1iLJynKTJosUew5HbaabNB1O7TzVn-/pubhtml?widget=true&amp;headers=false"></iframe>


Chart Image:

MailChimp Campaigns:

<style type="text/css">
            .display_archive {font-family: arial,verdana; font-size: 12px;}
          .campaign {line-height: 125%; margin: 5px;}
          </style>
          <script
            language="javascript"
            src="https://gmail.us21.list-manage.com/generate-js/?u=2f45260a8897d3d60c18f102b&show=10&fid=501"
            type="text/javascript"
          ></script>


Projects of Choice:

Sonny Angel Land by Daisy Sun. Background created using Gemini AI, Sonny Angels placed and edited using Adobe Photoshop.

Remembrance Day by Daisy Sun. The background was pulled off Google, while the poppies were meticulously handcrafted by Adobe Photoshop.

Technology News:

Summary: Through a potential collaboration with OpenAI, Apple seeks to implement generative AI into their new iPhones. By doing this, they may outcompete some of their competitors who have already integrated such technologies, such as Google and Samsung. Furthermore, Apple hopes to use generative AI to enhance iPhone interactions, personalization, and the overall experience. They want to focus on improving Siri to aid users in executing daily tasks. In the future, we can see AI being more heavily based in cell phone usage.
Editorial: I think this is a great way for Apple to keep up with its competitors, and to eliminate competition. Although Apple is arguably the most popular technology brands, the rise of AI poses a serious threat to their sales and user interactions. The usage of AI in iPhones would be great for accessibility and efficiency in users’ lives. This article also highlights the importance of AI, and how it is shaping our future. With more people being exposed to harmless, yet useful forms of AI, such as in their smartphones, it is a great opportunity for individuals to feel more comfortable with its usage.

Summary: Roblox is partnering with the well-known furniture brand, IKEA, to create an online game where employees can get paid for working on the game. Similar to regular IKEA workers, these online workers will be showing customers around the store, helping them make purchases which will be delivered to them in real life, and even serving the famous IKEA meatballs! In addition, they will be able to make wages of $16.82 an hour, which is the same wage as a normal IKEA worker in London. Lots of people are excited about this new game on Roblox!
Opinion: This is such an intriguing and amusing idea for IKEA to execute! As a Roblox user myself, I have often found myself playing games in which I act as a barista or fast food worker. However, these often seem like a waste of time as players are often working for no rewards. This online game will not only help mitigate the current lack of jobs in the real world, it also allows for accessibility and efficiency.

Maddy Schultz Portfolio

Song Mix

This year, I had many technical issues. Because of this, I was unable to produce a song mix, but I have here a video of Rasputin.

Technology News

Story 1 – Neuralink Thoughts

Summary: Neuralink plants a chip in a human brain, using a robot. This computer chip places a brain-computer interface implant in a carefully selected part of the brain that controls the idea, intention, and want to move; the same part that tells your fingers to type or your legs to walk. Using this, people without use or control of their body can move a cursor around a screen. This is intended to help people with disabilities use technology, and otherwise help humans interact with tech on a different level.

My View: A life of paralysis isn’t one you would wish on anybody. We take our abilities for granted everyday, and we don’t bother thinking about what our life would be like if those gifts were taken away. Most disabled people spend years in deep depression and struggle to adjust to life without some of their abilities. 

I believe that this chip is the start of a new unit of tech: one that can use robots and technology to help people who need it. Though this wouldn’t be nearly the same as being able to use your hands to use a laptop, the Neuralink chip can help people access privileges like communication, work, and play. With this chip, those who had their lives taken away can get it back with this helpful technology.

Story 2 – iPad Air 2024 Review

Summary:  A new version of the iPad Pro with more advanced features, advertised for everyone; college students, businessmen, and artists. Some main features include a larger screen, better sound quality, new colors, AI, and a better camera that automatically focuses on subjects. The chip is also more advanced, for faster performance, and is advertised as 50% faster performance.

My View: It seems like new versions of Apple Products never stop coming. I can understand if people like artists, or students need the new features, but in my opinion, unless you rely on technology like this for income or other reasons, it’s not necessary. I feel that if you have the money for tech like this, and you need the advanced technology, then it’s a good purchase; but the difference between the iPad Pro and this iPad Air doesn’t seem dramatic enough to be a worldwide piece of technology.


Individual Projects

Project 1

I decided to create a background for my phone. I used shapes to make the daisies, and I learned how to group and lock shapes throughout this creation.

Project 2

I made a cityscape for my second project. Throughout this project, I learned to change the transparency/opacity of shapes and work with gradients. I enjoyed making this mini-project.


Personal Website – Rat Kingdom

OBS Walkthrough

Eashin Projects 1

LeBron Raymone James was raised by a single mother, Gloria James, in the tough neighbourhoods of Akron. Despite financial struggles and a nomadic lifestyle, LeBron found solace in basketball. His prodigious talent quickly became evident, and by the time he reached St. Vincent-St. Mary High School, LeBron was already a sports sensation. His dominance in high school basketball earned him nationwide attention, and he became the first overall pick in the 2003 NBA Draft straight out of high school.

NBA Career:

LeBron James’ NBA career has been nothing short of legendary. Drafted by the Cleveland Cavaliers, he quickly established himself as a force to be reckoned with. Known for his versatility, athleticism, and basketball IQ, LeBron has played for the Miami Heat and the Cleveland Cavaliers, leading both teams to NBA championships. His move to the Los Angeles Lakers in 2018 marked another chapter in his illustrious career, and he delivered an NBA championship to the Lakers in 2020, solidifying his status as a generational talent.

Basketball Achievements:

LeBron James boasts an impressive list of accolades, including four NBA championships, four NBA Most Valuable Player (MVP) Awards, and numerous All-NBA Team selections. His impact on the game is evident not only in his individual achievements but also in his ability to elevate his teammates and consistently lead his teams to success. LeBron’s influence extends beyond statistics, as he has redefined the role of a basketball player by excelling in various positions and facets of the game.

Off-Court Impact:

LeBron James’ impact transcends the basketball court. He has emerged as a social and cultural icon, using his platform to address societal issues and advocate for change. LeBron is known for his philanthropic efforts, including the LeBron James Family Foundation, which focuses on education and community development. His commitment to empowering underprivileged youth through initiatives like the “I PROMISE School” demonstrates his dedication to making a positive impact beyond basketball.

Athlete Activism:

LeBron James has been at the forefront of athlete activism, using his voice to address racial inequality, social justice, and political issues. His advocacy has sparked conversations on and off the court, highlighting the responsibility athletes bear in influencing societal change. LeBron’s willingness to speak out on controversial topics has cemented his legacy as more than just a basketball player but as a cultural catalyst.

Conclusion:

In conclusion, LeBron James’ journey from a challenging childhood to becoming a basketball icon and influential cultural figure is a testament to his resilience, talent, and commitment to making a positive impact. Beyond the courtside accolades and championship victories, LeBron’s legacy is defined by his philanthropy, activism, and the inspiration he provides to aspiring athletes worldwide. As LeBron continues to make history on and off the basketball court, his impact on the sport and society at large is bound to endure for generations to come.


Data Charts and Integration

Here is a chart that will automatically update.

<iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQHXnA4rcyolWaTJabOHn9HAZAuJMStYQjzh0zeGgvfLZWepb963pC_35vhpaXIRKVT_KDrIbFd8_xW/pubchart?oid=1816827274&amp;format=interactive"></iframe>

https://docs.google.com/spreadsheets/d/e/2PACX-1vQHXnA4rcyolWaTJabOHn9HAZAuJMStYQjzh0zeGgvfLZWepb963pC_35vhpaXIRKVT_KDrIbFd8_xW/pubchart?oid=1816827274&format=interactive


Here is a chart that is a captured image (no updates).

Here is a link to the chart.

<iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRfyCeyPtgLb7UhwonYLIy7-x5Z74JTvxUl65wFCL3zUH8AursFTvUplrn8Ay-SIW05g45nvQFrZAgR/pubchart?oid=1931760&amp;format=interactive"></iframe>
<iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQHXnA4rcyolWaTJabOHn9HAZAuJMStYQjzh0zeGgvfLZWepb963pC_35vhpaXIRKVT_KDrIbFd8_xW/pubchart?oid=1816827274&amp;format=interactive"></iframe>

Joah Boland-Landa’s Portfolio


Website Overview:

Hello there! I’m Joah Boland-Landa, I’m a programmer, diligent worker, and lover of video games and cats. I have many applicable skills in the world of game development and programming. I will try my best to deliver the best possible content with passion behind it for anyone interested in my skill set. Please reach out to me here if you wish to work with me. Thanks for stopping by!


To prove my skills, here’s a game I (re)made!


<iframe src="https://trinket.io/embed/python/035367d77b" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

<iframe width="635" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRz6I75l1PXCULFXCjeACru_1RU6bgkR3epHGcs8as6_9h0PvCn2R2oHAKhhRpppkLgKphvpmvueX7R/pubchart?oid=2064372821&amp;format=interactive"></iframe>

Here are my End-Of-Year projects!

Magic 8 Ball

<iframe src="https://trinket.io/embed/python/e63a80234f" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

QWERTY Encoder

<iframe src="https://trinket.io/embed/python/70458eaad9" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

Project 3 is on a separate post.

I’m also good at data management! Look at my point prediction Google Spreadsheet!

<iframe width="635" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRz6I75l1PXCULFXCjeACru_1RU6bgkR3epHGcs8as6_9h0PvCn2R2oHAKhhRpppkLgKphvpmvueX7R/pubchart?oid=2064372821&amp;format=interactive"></iframe>

Tech News:

News: There are now ads in the beta of Windows 11 on the start menu. They do not tell you it is an ad, but it is disableable.

Opinion: Even though it can be disabled, it is still not good practice to not only put ads inside of your operating system, but also not tell the user it is an ad. YouTubers are held to a higher standard than microsoft, a multi-billion dollar corporation, as they have to tell their viewers that adds will be shown, but Microsoft just puts them in there start menu and doesn’t even tell you it’s an ad, the average user will just think it’s a part of the computer, not knowing it will redirect them to something that they would need to buy. Overall, this is just unfair practice from Microsoft.

News: All Cybertrucks have been recalled due to an issue within them when it came to its brakes.

Opinion: The Cybertruck has kind of been a dumpster fire since day one, with the window breaking when they said that it would not break, and then basically 3 years of radio silence while they were developing it. and now, as they finally start to roll out the first generation of Cybertrucks, they recall them due to an issue that could prove to be fatal. Even though everything surrounding the Cybertruck is absolutely insane, I think this is one of the few good decisions surrounding the car. The break apparently had an issue, where you would not be able to break, and there is footage online of Cybertrucks absolutely destroying other cars with how safe they are, and if your break doesn’t work on a glorified tank, you are now a danger to everybody else on the road. Good call for once, Elon.

Jonah Moon Portfolio

On this page is a collection of my finest project throughout this year.

At the begging of the year my class explored trinket.io, by developing two pieces of code.

Below is Project 1 and 2

<iframe src="https://trinket.io/embed/python/5b8ec23dca" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
<iframe src="https://trinket.io/embed/python/8b447bc0b0" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>

My NHL graph

<iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRIMCdFaqSqYUWqGlwav16K-LMYZVuuuJngzG4KvqkqWg-YQZwtVcWyltzwzk1RugYtT9qwnT9BgBoW/pubchart?oid=1686146101&amp;format=interactive"></iframe>
Player namePlayer linkPlayer Code Function Player Code Number
connor mcdavid https://www.nhl.com/oilers/player/connor-mcdavid-847840284784028,478,402.00
sydney crosbyhttps://www.nhl.com/penguins/player/sidney-crosby-847167584716758,471,675.00
nathan makinnonhttps://www.nhl.com/avalanche/player/nathan-mackinnon-847749284774928,477,492.00
evan bouchardhttps://www.nhl.com/oilers/player/evan-bouchard-848080384808038,480,803.00
hugheshttps://www.nhl.com/canucks/player/quinn-hughes-848080084808008,480,800.00
kucherovhttps://www.nhl.com/lightning/player/nikita-kucherov-847645384764538,476,453.00
pettersonhttps://www.nhl.com/canucks/player/elias-pettersson-848001284800128,480,012.00
millerhttps://www.nhl.com/canucks/player/j-t-miller-847646884764688,476,468.00
Alex Ovechkinhttps://www.nhl.com/capitals/player/alex-ovechkin-847121484712148,471,214.00
Connor bedardhttps://www.nhl.com/blackhawks/player/connor-bedard-848414484841448,484,144.00
Austin matthews https://www.nhl.com/mapleleafs/player/auston-matthews-847931884793188,479,318.00
leon draisaitlhttps://www.nhl.com/oilers/player/leon-draisaitl-847793484779348,477,934.00
mark stonehttps://www.nhl.com/goldenknights/player/mark-stone-847591384759138,475,913.00
David Pastrnakhttps://www.nhl.com/bruins/player/david-pastrnak-847795684779568,477,956.00
brock boeserhttps://www.nhl.com/canucks/player/brock-boeser-847844484784448,478,444.00
Bo horvathttps://www.nhl.com/islanders/player/bo-horvat-847750084775008,477,500.00
alex debrincathttps://www.nhl.com/redwings/player/alex-debrincat-847933784793378,479,337.00
Cale Makarhttps://www.nhl.com/avalanche/player/cale-makar-848006984800698,480,069.00
Mitchell Marnerhttps://www.nhl.com/mapleleafs/player/mitchell-marner-847848384784838,478,483.00
Sebastian Ahohttps://www.nhl.com/hurricanes/player/sebastian-aho-847842784784278,478,427.00
Brayden pointhttps://www.nhl.com/lightning/player/brayden-point-847801084780108,478,010.00
trevor moorehttps://www.nhl.com/kings/player/trevor-moore-847967584796758,479,675.00
pius sutterhttps://www.nhl.com/canucks/player/pius-suter-848045984804598,480,459.00
robert thomashttps://www.nhl.com/blues/player/robert-thomas-848002384800238,480,023.00
sam reinharthttps://www.nhl.com/panthers/player/sam-reinhart-847793384779338,477,933.00

Below is My third and fourth trinket Code

<iframe src="https://trinket.io/embed/python/3c159a5b0f" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
 <iframe width="600" height="371" seamless frameborder="0" scrolling="no" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRIMCdFaqSqYUWqGlwav16K-LMYZVuuuJngzG4KvqkqWg-YQZwtVcWyltzwzk1RugYtT9qwnT9BgBoW/pubchart?oid=1686146101&amp;format=interactive"></iframe>

As our creative project I decided to create a fully AI developed image.

I ask Chat GPT to come up with 4 creative descriptive sentences, and I evolved the image using the different prompts.

This is what I came up with:

To end off, Here is some tech news on things that have been going on around the world.

A Newsbreak company logo is displayed at a corporate office building in Mountain View, California

Newsbreak: Most downloaded US news app ‘writes fiction’ using AI

Summary: NewsBreak, a leading U.S. news app with Chinese origins, has faced criticism for publishing false AI-generated stories, including a fictitious shooting in Bridgeton, New Jersey. The app has produced numerous errors affecting local communities and faced legal challenges for copyright infringement. Despite being U.S.-based, half of its workforce is in China, raising data privacy concerns. NewsBreak claims compliance with U.S. laws and has taken steps to correct inaccuracies, but maintaining a U.S.-based perception is crucial for its credibility.

IKEA wants to pay real people to work in its new store inside Roblox game

Summary: IKEA is hiring 10 full-time employees to work in its new virtual store on Roblox, opening June 24. This move marks IKEA’s first major venture into gaming, with the virtual store named “The Co-Worker Game.” Applicants, who must be 18 or older and based in the UK or Ireland, will earn £13.15 ($16.82) per hour, the same as London-based IKEA staff. Workers will assist customers and manage sections of the online store. IKEA’s job listing, which includes whimsical questions, has gone viral on social media. This initiative follows similar virtual ventures by brands like Walmart on Roblox.

Finally here is a video explaining my projects: