by sanketpatrikar on 6/16/23, 4:43 PM with 106 comments
by lostgame on 6/16/23, 9:14 PM
I've also found SwiftUI to be a fantastic little language, I think especially for prototyping it would be fantastic.
One thing I preferred with these courses to so many similar other courses is that the video is not required. I much prefer to read, I don't like videos in tutorials unless completely necessary - screenshots and text work just fine, and for myself; these exercises just hit the nail on the head. :)
by dwmbt on 6/16/23, 8:37 PM
```AppleScript
set baseURL to "https://www.hackingwithswift.com/100/swiftui/"
set numberOfDays to 100
tell application "Reminders"
set swiftList to make new list with properties {name:"100
Days of Swift"}
repeat with i from 0 to numberOfDays
set dayNumber to "Day " & i
set dayLink to baseURL & i
set reminderDate to (current date) + (i \* days)
tell swiftList to make new reminder with properties {name:dayNumber, body:dayLink, due date:reminderDate}
end repeat
end tell```
by zengid on 6/16/23, 5:45 PM
(I could learn all four but I have kids, so it'll probably just be React Native for me.)
by erokar on 6/16/23, 6:21 PM
by sylens on 6/17/23, 2:57 AM
by noisy_boy on 6/17/23, 6:27 AM
by runjake on 6/16/23, 5:05 PM
I think with the target audience for this, you should just go immediately to the newer version[1].
by pshirshov on 6/16/23, 5:15 PM
> Hint: Click to show.
> Option 1: The @unknown default case is there to catch cases that get added to an enum after we wrote our code.
> Option 2: UIDevice.current refers to the model number of the most recent iPhone
this is not about "hacking" nor learning programming or engineering. Seemingly that's about monkey coding.