Far Side – Friday

100 Days of SwiftUI – Update

The very first part of the course is usually done in a linear fashion using the website. However, I took there first part of the course on my iPad app which handles it a little differently.

That being said, there will be a jump from Day 10 to Day 16.

You are not imagining things and I am not really skipping around.

Onward and upward…and possibly backwards, at times.

100 Days of SwiftUI – Day 7 – Structs

Ok. This one took a couple of days to get to but I am finally through it.

This is what attracted me to OOP (object oriented programming) in the first place. Structs are objects.

I’ve always struggled with initializers and after this section, I finally feel like I understand them a bit better.

R.I.P. Grant Imahara

Unbelievably saddened by this.

The universe lost a great one.

Why Microsoft Why?

Why doesn’t Microsoft just have (1) game? Why don’t you just put everything into (1) game? Why do you insist on having (3) different versions?

If they are making hard copies or DVDs, it is more environmentally friendly to just have (1) version.

Screen Shot 2020 07 13 at 10 53 41 AM

Just venting.

100 Days of SwiftUI – Day 5 – Functions

Variadic is a new term for me. The ability to pass many things into your function by using…

func square(numbers: Int…) {
for number in numbers {
print(“\(number) squared is \(number * number)”)
{
{

square(numbers: 1,2,3,4,5)

1 squared is 1
2 squared is 4
3 squared is 9
4 squared is 16
5 squared is 25

This is something I haven’t used before but I might in the future.