Contact

Currently building at the Recurse Center

Tue Dec 03 2024

What I did last yesterday

struct ContentView: View {
    @State private var selectedTab = "One"

    var body: some View {
        TabView(selection: $selectedTab) {  // Wrapper View
            Button("Show Tab 2") {  // Content View
                selectedTab = "Two"
            }
            .tabItem {  // Tab Modifier denoting the above view is tab content
                Label("One", systemImage: "star")
            }
            .tag("One") // Tab tag (ID)

            Text("Tab 2") // Content View
                .tabItem {  // Tab Modifier
                    Image(systemName: "circle")
                    Text("Two")
                }
                .tag("Two") // Tab tag
        }
    }
}

Today

Morning Walk and Reflection

For as long as you can be talked out of yourself, you deserve to

That had to sit with me for a little while but after a bit I started to make sense of it in my own way. Thinking about the dedication I am giving to myself to become a founder and a great one as at that, self-confidence is key but being able to see the faults in your actions through self-awareness is also something I cherish. And in that sense, sticking with your intuition even when those around you do not see your vision is tough but it’s needed if you really want everyone to see what you alone can see for now.

Upcoming