d.) 24 hours without technology

Over spring break, Andy and I decided to work ahead in this class and thought that spring break would be the perfect time to complete this challenge. We decided to go 24 hours without technology on Sunday, March 9th. The day started out relatively normal, I went to church (without my phone GPS) and cooked myself a nice breakfast. However, towards the afternoon I kept finding myself fighting the urge to reach for my phone and text/call friends. Since I don’t have social media on my phone during the school week, my temptation to look at my social media accounts was pretty much non-existent. To distract myself further, I decided to go on my normal run. I was looking forward to running until I realized that I wouldn’t be able to listen to music! This was a total bummer, so I had to entertain myself with my own thoughts. Later on, I decided to get a lot of homework done that would be due after NTC and spring break was over. Without the use of screens, I found myself being a lot more productive and in-the-moment of what I was doing. I also noticed that my eyes hurt less from the typical blue-light strain they receive. Overall, I would love to start using screens less and be more present in life’s everyday moments.

c.) White balance

  • White balance definition:
    • The camera setting that adjusts the color temperature of an image/video, ensuring that objects that are actually white appear white in the final photograph, regardless of the color cast of the light source in the scene (it controls how “warm” or “cool” the colors in your image appear)
  • White balance importance:
    • White balance is important to photography and videography as it ensures that colors in an image or video appear accurate and natural to how they appear in real life!

d.) Converting to binary numbers and vice versa

  • To convert a number into binary form:
    • First , divide the number by two
    • Next, record the remainder (this will wither be zero or one)
      • Next, repeat this process until the quotient is equal to zero
    • Finally, display the remainders in reverse order to convert your number into binary form!
  • Example:
    • Binary number for 4:
      • 4/2 = 2 (remainder zero)
      • 2/2 = 1 (remainder zero)
      • 1/2 = 0.5 (remainder one)
        • Binary number = 100
  • To convert a binary number into numerical form:
    • Multiply each digit of a binary number from right to left with powers of 2 starting from 0 and add each result to get the number value
  • Example:
    • Number value for 10101:
      • 1 x 2^0 = 1
      • 0 x 2^1 = 0
      • 1 x 2^2 = 4
      • 0 x 2^3 = 0
      • 1 x 2^4 = 16
        • 1 + 0 + 4 + 0 + 16 = 21