https://www.ted.com/talks/carol_dweck_the_power_of_believing_that_you_can_improve?language=en
$LAYYYTER

⁂

★
🪼

pixel skylines
YOU ARE THE REASON
almost home
No title available
Sweet Seals For You, Always
h
i don't do bad sauce passes
One Nice Bug Per Day
Monterey Bay Aquarium
hello vonnie
sheepfilms

祝日 / Permanent Vacation

blake kathryn

if i look back, i am lost
Today's Document
2025 on Tumblr: Trends That Defined the Year

seen from United States
seen from United States

seen from United States
seen from United States

seen from United States

seen from United States
seen from Singapore
seen from United States

seen from Albania
seen from South Africa

seen from Netherlands

seen from United Kingdom
seen from T1
seen from Lithuania

seen from Türkiye
seen from Finland

seen from Singapore
seen from Belgium
seen from Switzerland

seen from United States
@tleecodes-blog
https://www.ted.com/talks/carol_dweck_the_power_of_believing_that_you_can_improve?language=en
End of Week 1
We ended Week 1 trying to implement Conway’s Game of Life. I didn’t make much progress during pair programming, so I tried starting from scratch over the weekend. Things I thought of while trying to implement the program:
1. I need to take time to think about and draw out the program more. I tend to start typing whatever comes in my mind, even when my thoughts are nowhere near complete. I struggled implementing the step function, and I only figured it out when I stepped away from the js file. I needed to think about each step I needed to take and how I could get there.
2. Bind. Ahhh! Joe was kind enough to post his solution to Game of Life on Saturday. Looking at his code helped me understand things I was confused about.
I realized whenever I made an onclick event on a button, the context of this changed from the game of life to the actual button. I was confused as to why this is, and I think I’m still struggling to fully understand the way the program is working.
In addition, I struggled to implement autoplay and pause correctly despite it seeming like a very easy task. I figured all I had to do was something like
var autoplay = setInterval(gameOfLife.step, 100) to start autoplay and
clearInterval(autoplay) to pause.
However, I struggled because I couldn’t actually access the autoplay variable. That was set inside the enableAutoPlay function and so I couldn’t access it in my pause function. I tried to set it outside the variables but that just caused autoplay to occur immediately when the script loaded. Bind was the solution to this dilemma also, although I’m working on fully understanding how the magic works. Off to watch some videos on bind and maybe read. Perhaps I will post about bind next time.
Week 1 Day 3
The current title of this blog is pretty inaccurate. i tend to worry about everything, and coding is no different. I just happened to think of Dr. Strangelove at the time.
I started Fullstack Academy on Monday and realized quickly it would be a long road ahead. So far, we built a simple game using Node, took a test checkpoint on Foundations (our prework for the program), and learned about data structures. In both (or three, depending on how you’re counting them) workshops we’ve done, I’ve encountered roadblocks. In addition, on the Foundations checkpoint, I failed to get a few specs passing while a few people finished with over an hour to spare.
During the times I think about my weaknesses, I need to remember what Nimit told us on the first day of class.
1)We’re competing against ourselves and no one else. I need to measure my growth instead of being concerned about others.
2) I’m not supposed to feel completely comfortable. Anxiety can push you to work harder.
By the time we go over solutions, I feel like I understand the code. However, I’ve been working on rebuilding one of the data structures we learned in class, and I am not able to quickly and efficiently complete it myself yet. Practice, practice, practice, go.