9/27/24: first entry
My first journal entry. Just set up Github, and made my website official!

10/9/24: adding to github
cd ./desktop/AstridL26.github.io
git add .
git commit -m "adding things"
git push

10/19/24: first animation created
Made my first animation! It is very simple but it was fun to learn how to do that.

11/5/24: small updates + halloween!
Trying to make the website coherent! Made all the backgrounds the same/similar color. Also created a jumpscare for halloween!

11/15/24: images on index
Trying to add more images on index so that there are images on both sides, but unfortunately the images on the right are not showing up. I did add images on left and make them a little bigger.

11/19/24: images on index
Created an animation of squares but have not linked it to to projects yet. Will do that soon!

11/26/24: functions we know
add(): add(5)Adds to a variable or div.
clearInterval()
setInterval(): setInterval(count,3000) Every 3000 miliseconds run the function count.
consoleLog(): Console.log(“Hello World”) Puts in the console whatever is typed in the parameter.
appendChild(): appendChild(Sidney) Applies a property to all divs nested inside the div Sidney.
addEventListener: The project gets checked for something to happen Example: survey.addEventListener(click, function(){} Survey = the area in which you want this to do. Click = the thing you want to trigger the function/the thing you want it to listen for
sound.play(): Plays the sound file that is assigned to the variable sound
createElement(): document.createElement("div") Creates an element with the name/tag of div.
alert("TEXT”): Alert(“ERROR”) A bubble with error would show up

12/3/24: random animation
animation made with squares ending up in random places!

1/10/25: using random to pick day of year
Made pictures of sanaa by using the random function. This means when clicking the picture, a different picture of sanaa comes up each time.

1/17/25: using random to pick day of year
Made a site that picks a random day of a year. I did this in slot machine format. Trying to add more to that, so when it lands on a specific holiday you get a point. For example, if it landed on Christmas, a point would be added. Also used arrays to do this.

2/11/25: valentines
Made a valentines project for house! used things liked arrays, the random function, confetti, and more.

2/28/25: learning in class
In class today we clarified some questions about for loops, apendChild, and more. For me specifically, I got a lot of clarification about different classes, and putting specific functions within other ones. To do this, you could use already made functions, and then your own. This was confusing to me before because I didn't exactly get the format. The appendChild function also helps put things within other functions. In general, a lot of structure was clarified for me today.