Ran through SwiftUI tutorial SwiftUI essentials. Handling user input tutorial.

TIL how to move whole line up/down in Xcode with Command + Option + { or } sortcuts respectively:

You can use `Command` + `Option` + `{` or `}` to move the selected lines of code up and down, respectively

TIL how to convert .mov file into animated gif in command line with ffmpeg:

ffmpeg -i ~/Downloads/Screen\ Recording\ Moving\ Line\ in\ Xcode.mov  -pix_fmt rgb24 ~/Downloads/output.gif