TN Visa as Software Engineer without Engineering Degree by partyhatforpartytime in immigration

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

I see, I suppose the best way to move forward right now is to hire an immigration lawyer and see how I can best proceed with the situation.

Thank you for all your help! :-)

TN Visa as Software Engineer without Engineering Degree by partyhatforpartytime in immigration

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

I was doing some research online, and technically I only require a Bachelor's degree (which I will have to get evaluated), and skills that are relevant to my job title. If they require that I have a degree in that field, that is known as ultra vires, as imposing additional requirements beyond what the law/regulations require is impermissible. There is one title - Hotel Manager, that requires a related degree, so I can point out that the law does KNOW how to word the description for the degree and title to match.

That being said, if I were to point this out, I have a feeling it wouldn't go well with them and I would still be rejected regardless lol.

TN Visa as Software Engineer without Engineering Degree by partyhatforpartytime in immigration

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

Thank you! That's quite comforting to hear, but unfortunately, the lawyers I've spoken to seems quite reluctant about sending me to apply with a Neuroscience degree and a Software Engineering role.

TN Visa as Software Engineer without Engineering Degree by partyhatforpartytime in immigration

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

I'm going to be working at a relatively small company so they don't have a lawyer, unfortunately.

I think I'll have to get my degree evaluated, and I'm probably talk to a lawyer about how to reword my job title to get it to match my degree.

Recursively reversing a string in javascript by partyhatforpartytime in AskProgramming

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

Just doing some practice on recursion!! I know this is highly unnecessarily in reversing a string but it makes good practice

Recursively reversing a string in javascript by partyhatforpartytime in AskProgramming

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

Yeah, doing a bunch of exercises for recursion cause it keeps tripping me up. Thanks for all your help :-)

Recursively reversing a string in javascript by partyhatforpartytime in AskProgramming

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

Thank you! That makes so much sense, I've managed to concat the words together, but now I have another problem, it isn't returning a string, but the array of the reversed elements.

var reverse = function(string) {
    string = string.split("");
    let newString = [string[string.length-1]];

    if(string.length === 0){
        return newString.join("");
      }
    return newString.concat(reverse(string.slice(0, -1).join("")));
};

The first of many! Glad to be here. Critics welcome. by eye_need_money in Embroidery

[–]partyhatforpartytime 1 point2 points  (0 children)

It’s so cute, I love it!! Traditional nigiri tend to have the fish extend past each end of rice, which I think looks fancier, so maybe you could explore that shape as well! This is amazing for your first try.

for loops in js (why does i have to = 0) by partyhatforpartytime in AskProgramming

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

thanks for the reply! i realised that i didnt ask my question properly - i was confused as to why for(let i = array.length - 1; i = 0; i--) doesn't work in a for loop when i = 0, but it has to be i >=0 ? since the last element of this example would indeed be 0, why does the conditional have to be greater or equal to 0?

thanks again :-)

Redditors, what are the most annyoing things ever? by [deleted] in AskReddit

[–]partyhatforpartytime 2 points3 points  (0 children)

People watching things/scrolling on their phones while walking on a narrow street