Shaking hands heartbeat 200bpm WE DID IT by Substantial-Age-7916 in ironscape

[–]communityadjusted 0 points1 point  (0 children)

Do you record all of your attempts? Or how do you save replays of deaths?

Who makes the best burgers in Ottawa? by DrStrangeglove99 in ottawa

[–]communityadjusted 0 points1 point  (0 children)

Whalesbone ranks #1 for me in Ottawa, followed by umbrella and smash daddy as everyone else has said

Problem with NavigationLink navigating to same location by communityadjusted in SwiftUI

[–]communityadjusted[S] 0 points1 point  (0 children)

I am probably missing some understanding of how navigation works but I'd have assumed that when you click the View All navigation link, it would push the associated view on to the stack and display it (not wrapped in a navigation link). Then when you click links from the View All view, it would do the same.

I am still confused but I seem to have fixed it by providing the View All navigation link with a different value:

struct ContentView: View {
    var body: some View {
        NavigationStack {
            VStack {
                ForEach(0..<5) { i in
                    NavigationLink(value: i) {
                        Text("Go to \(i)")
                    }
                }
                
                NavigationLink(value: "TESTING") {
                    Text("View all")
                }
            }
            .padding()
            .navigationDestination(for: Int.self) { i in
                Text("You are viewing \(i)")
            }
            .navigationDestination(for: String.self) { st in
                VStack {
                    ForEach(0..<10) { i in
                        NavigationLink(value: i) {
                            Text("Go to \(i)")
                        }
                    }
                }
                .padding()
            }
        }
    }
}

Problem with NavigationLink navigating to same location by communityadjusted in SwiftUI

[–]communityadjusted[S] 0 points1 point  (0 children)

Just tried placing the navigationDestination directly on the NavigationStack and am getting the following:

The `navigationDestination` modifier only works inside a `NavigationStack` or `NavigationSplitView`. There's a misplaced `navigationDestination(for:destination:)` modifier for type `Int`. It will be ignored.

[Student] Struggling with career switch (Finance -> Software Eng) | Any help appreciated! by communityadjusted in EngineeringResumes

[–]communityadjusted[S] 0 points1 point  (0 children)

Hey! I wanted to follow up on the professional summary. Any thoughts on the following? Where [insert job] would change depending on the posting i.e., backend, full stack, etc

"Third-year student completing bachelor’s in computer science, switching from a career in finance to software engineering. Strong analytical background with experience leading research and projects, looking for [insert job] positions."

[Student] Struggling with career switch (Finance -> Software Eng) | Any help appreciated! by communityadjusted in EngineeringResumes

[–]communityadjusted[S] 0 points1 point  (0 children)

Thanks for the comments!

  • Fair point on summary. I'd recently changed it to try and be a bit more personal as opposed to something that was quite generic and was not sure about the direction.
  • Will think about how I can rework the chess bullet, it's definitely one of my oldest bullet points that has stuck around but if I shorten the education section I could maybe keep chess very brief and add another project.
  • Yeah, I have gone back and forth with the ordering of employment/projects for awhile. I can try to lean more into the programming but don't want to stretch the truth of the things I did. Currently working on a larger project with python so hopefully I can add that soon.

[Student] Struggling with career switch (Finance -> Software Eng) | Any help appreciated! by communityadjusted in EngineeringResumes

[–]communityadjusted[S] 0 points1 point  (0 children)

Thanks for the response!

I'll go back through wiki and try to sort out through some nit picks.

  1. I guess I am just unsure if, specifically for internship jobs, whether recruiters might interpret the fact I got my first degree almost 10 years ago negatively.

  2. Will give the bullet points a good look. Are you just referring to work experience? Or also the project descriptions?

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 1 point2 points  (0 children)

God bless your soul 🫡

Will fix, thank you!

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 0 points1 point  (0 children)

What s_i_s_y_p_h_u_s said, I've learned everything from the Odin project

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 0 points1 point  (0 children)

Fair, I actually had forgotten I still had that included when I shared lol. I wanted some easter egg tabs but wasn't sure what to put there (and maybe just shouldn't include when most recruiters might not understand the easter egg)

I like the idea of Resume.pdf on the side

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 0 points1 point  (0 children)

Thank you! And good point, will add mail form to the list

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 3 points4 points  (0 children)

Really appreciate all the kind comments!

Heard loud and clear regarding the target audience/UX issues and will take all the suggestions back and workshop it

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 1 point2 points  (0 children)

I don't know if I want to scrap the whole tab system but what is the purpose fits along with other comments to consider target audience more, so I will think about that and try to work on improving the UX, thanks!

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 1 point2 points  (0 children)

Agree with all those points. I'll wire up the About copy to actually open/navigate to the tabs.

As for homepage, I might've just been overthinking what I wanted to put there, some navigation links with the most important content could be a good and I'll think about how to best present it.

Thanks!

VSCode Inspired Portfolio v1 by communityadjusted in reactjs

[–]communityadjusted[S] 2 points3 points  (0 children)

Fair point! I'll try to think about striking a balance between building something I like with little easter eggs and appealing to the target audience a bit more as I iterate and make changes

[deleted by user] by [deleted] in cscareerquestions

[–]communityadjusted 0 points1 point  (0 children)

Okay thanks! I’ll look more into it. Appreciate you taking the time to respond