SwiftUI notes
Andy Brown · 01/07/2024 · 1 min read
Implicit Identity
Gotcha 1
Be careful when using something like this:
extension View {
@ViewBuilder
func applyIf(_ condition:...
Andy Brown · 01/07/2024 · 1 min read
Be careful when using something like this:
extension View {
@ViewBuilder
func applyIf(_ condition:...
Andy Brown · 26/06/2024 · 1 min read
⌘ command + ⌥ option + ⇧ shift + H
Select one/all and hit: ⌘ command + ⇧ shift + D
Sel...
Andy Brown · 25/06/2024 · 1 min read
mkdir -p ~/.ssh.Andy Brown · 25/06/2024 · 1 min read
⌘ command + ,
Andy Brown · 24/05/2024 · 1 min read
First create a Slack app and get the webhook URL.
Then you can use the following command to test your application:
curl -X POST -H 'Content-t...
Paul Brown · 15/05/2024 · 1 min read
grep -ir "word-to-search-for" /path/to/search/directory --exclude-dir={directory-to-ignor...
Paul Brown · 11/05/2024 · 1 min read
#Edit Pull Request Description ###Scratches: see: here for us...
Paul Brown · 10/05/2024 · 1 min read
Paul Brown · 06/04/2024 · 2 min read
useState is a 'hook' ('hooks' are functions in React for 'hooking into' state and lifecycle methods -- though this loosely makes sense...