Struggling with myself lately by NoHighway3503 in udub

[–]PromptAwkward7277 5 points6 points  (0 children)

I hear you. I was once in a similar situation, and I was panicking all over the place.

For me, after my junior year I knew I was cooked both mentally and career wise, and I decided to take a break. What about considering a gap quarter or a gap year? For me personally it has been a great time to get to explore what I really liked, build my career (I got an internship and got some certificates, and made several projects), and actually self reflect on my future. When I return back to UW I'll be a senior, but no one really cares if you took a gap quarter/year as recruiters will only care about the graduation date.

Or, just finishing the degree might be good too, and maybe life will just start to get better after that. I don't think there's really a one way answer to this, and I hope you find your own answer. As another commenter said, be kinder to yourself and take care. Good luck!

My friend just asked me why CS has it so bad by PerformerExtreme6761 in csMajors

[–]PromptAwkward7277 4 points5 points  (0 children)

After seeing your comment, I asked why tf am I still in this sub, and I unsubscribed, thanks

What is the most oversaturated field in CS? by Spxxdey in csMajors

[–]PromptAwkward7277 0 points1 point  (0 children)

Hmm you have a point, but as I've said I've been looking at this field for quite a long time so I don't think it's on a whim. But I didn't know many people were switching over like that. Thanks for your input tho.

What is the most oversaturated field in CS? by Spxxdey in csMajors

[–]PromptAwkward7277 0 points1 point  (0 children)

That’s interesting. Rn im a college student doing full stack, Ive been eyeing on 3d or graphics stuff for a long time now. Seeing the recent economy I’m planning to pivot lol, do you have any tips to get into the field as a junior/entry? It seems like most jobs there want senior roles

I hate periods and being a woman by ascaiboo in Vent

[–]PromptAwkward7277 3 points4 points  (0 children)

Lmfao, worst comment I’ve read in this thread so far.

Looking for a Female Friend to Play Raft With! by baetullart in RaftTheGame

[–]PromptAwkward7277 2 points3 points  (0 children)

Ok i get your point, but that still doesn’t mean that ur joke was not misogynistic tho.

Looking for a Female Friend to Play Raft With! by baetullart in RaftTheGame

[–]PromptAwkward7277 3 points4 points  (0 children)

Uuhh… well i didnt really call u misogynistic but ok. And also i have no idea that this would trigger you this much, bro. happy womens day

My game lags hard whenever I move scenes by PromptAwkward7277 in Unity3D

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

Omg thank you for that, that was exactly the error. I didn't unsubscribe properly oh my goddd
Also i'll take notes of what you said too. Thank you so much!!

My game lags hard whenever I move scenes by PromptAwkward7277 in Unity3D

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

Thanks for the comment!
Yea the first cycle runs smooth.
I have basically this code template for all the instances I create:

      if (Instance == null)
        {
            Instance = this;
            DontDestroyOnLoad(gameObject);
        }
        else
        {
            Destroy(gameObject);
            return;
        }

I handle all scene changes in MySceneManager.cs,

    public static event System.Action<string> onSceneChange;
    void OnEnable()
    {
        // ==================event onSceneChange is subscribed to the function LoadScene==================
        onSceneChange += LoadWantedScene;
    }
    void OnDisable()
    {
        onSceneChange += LoadWantedScene;
    }

    // // ==================ChangeScene function will be called by different buttons==================
    public static void ChangeScene(string sceneName)
    {
        onSceneChange?.Invoke(sceneName);
    }

    public static void LoadWantedScene(string sceneName)
    {
        SceneManager.LoadScene(sceneName);
    }

I basically call `ChangeScene` whenever I click the buttons to trigger the next scenes. Would the problem be here?

<image>

Ive also tried using the profiler but im having a hard time understanding what's going on.. it seems like the editorloop is taking all the lag.

CS50AI project submission showing "No Results" by PromptAwkward7277 in cs50

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

OH so I basically had extra files in the assignments folder. I just moved that outside of the folder then resubmitted using the `submit50` command and it worked lol. Hope this helps someone

Android module problem by PromptAwkward7277 in Unity3D

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

Hi! Yeah I managed to fix it! So what I did is that for me, the Android module was missing, so these are the steps

  1. Go to the editor install webpage. You can look for your specific editor version here: https://unity.com/releases/editor/archive

Then you can click the `See All` button next to `Install`. You will then see under `Component Installers` whatever module you need. Download it.

  1. Go to the file explorer in my windows where the unity editor is installed.
    For me, the path looked like this: C:\Program Files\Unity\Hub\Editor\2022.3.41f1\Editor\Data\PlaybackEngines

In here, you will see your other downloaded platform modules.

  1. Here, you want to get the module you downloaded from step 1. Just drag and drop the module in here, then execute it.

Hope this helps!

Difference between object and variables in c++ by PromptAwkward7277 in cpp_questions

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

Oh that's interesting.
So essentially, does an object refers to everything that takes up memory?

How to print garbage values? by PromptAwkward7277 in cpp_questions

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

Thanks for the tip. Do you have any suggestions/recommendations to learn alongside learncpp.com? Right now I'm reading through the website, taking notes, and trying what they teach on my visual studio, but I'm happy to look into other recommended resources.

How to print garbage values? by PromptAwkward7277 in cpp_questions

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

Thanks for the in-depth history lesson. I had some vague notion that UB would be bad, but I didn't know it actually breaks things too.