
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.
Project Consolidate
I am working on pulling all of my websites into one place. It will have a name that makes more sense than chipheadmike.com. The only reason that anyone knows what that means is because I told them.
This new website is more like a journal for me and less about someone reading about me on the web.
The new site will be based on my name. I have a database issue to contend with but once that is complete, I plan on having the new site up and running this weekend. If the database doesn’t cooperate, it could be a bit longer.
I am NOT transferring all of my books over to the new site manually.
More to come.
100 Days of SwiftUI – Day 4 – Loops
Today, we went over the various types of loops.
Most of the loops covered, I don’t use. I still enjoyed visiting them again.
My First Digital Art or Bad Art#1
This was my first digital “doodle” where I was actually trying to create something.
It is supposed to be a planet scape, of sorts.

100 Days of SwiftUI – Day 3 – Operators and Conditions
If I post nothing else in the next 96 days, it will most certainly be a Swift update!
This is one of my favorite topics and one of the first reasons I fell in love with programming back in the 80s. I love logic statements and how you can create a program that can “reason” things out.
100 Days of SwiftUI – Day 2 – Arrays and other things
Complex data types and I are not friends but I muddled through the 2nd day.
I don’t use most of the data types that we went over nor can I see right now where I would use some of them in my day to day work.
That either means that I don’t really need them or that I really do need them but are too stupid to realize it.






































