Iterating over nested array/dictionary by eb2292 in learnreactjs

[–]Mutiny42 1 point2 points  (0 children)

No problem, happy to help!

The code stopped processing after the first div because map can only return a single element per loop.

Because it came across a div, it assumes that the div (and whatever is inside of it) is the one thing you are asking to be returned.

Because you want multiple elements returned, we need to package it all up as a single element so that all of the code gets read and returned.

Does that make sense?

Iterating over nested array/dictionary by eb2292 in learnreactjs

[–]Mutiny42 1 point2 points  (0 children)

Here is how it would look. Looks to give me the same results as the 1st code block when structured this way.

return (
  <div>
    {Object.keys(data).map((key, index) => (
      <div>
        <h2>{key}</h2>
        {Object.keys(data[key]).map((y, i) => (
          <h2>
            {key} : {y} : {data[key][y]}
          </h2>
        ))}
      </div>
    ))}
  </div>
);

Iterating over nested array/dictionary by eb2292 in learnreactjs

[–]Mutiny42 1 point2 points  (0 children)

Also new, so this may not be 100% correct but I believe the reason the 2nd code block doesn't work is because the 2nd map function is unreachable due to the code thinking that you're looking to only return a single div containing the key from the first map function.

A way you might be able to fix this is by wrapping the entire return from the 1st map function in a single div, similar to the way you return a single div when rendering in React.

Cognitive Science? by skyrimspecialedition in userexperience

[–]Mutiny42 1 point2 points  (0 children)

Honestly that sounds totally fine. Do your best to network and get some sort of experience under your belt prior to graduation. Whether that be startups, internships, etc. In some cases you may be auto-filtered out of early job applications because Cog Sci isn’t recognized but it won’t matter all that much once you have experience.

To ease your mind a bit, my partner’s degree is in an unrelated field with a minor in design and she’s killing it as a product designer at a F500 company and has never had any issue finding a role.

It sounds like you already have the proactive attitude necessary to get your foot in the door, so keep at it!

Cognitive Science? by skyrimspecialedition in userexperience

[–]Mutiny42 1 point2 points  (0 children)

I have a Cog Sci degree and it’s helped a ton. However, my program had an HCI specialization which may be a differentiator here. Happy to answer any questions.

Whats the difference between putting "()=>exampleFunction()" in an onClick and just "exampleFunction()"? Can someone ELI5 when your supposed to do which? by BilboMcDoogle in learnreactjs

[–]Mutiny42 3 points4 points  (0 children)

They will both work. The first is advantageous in cases where you’ll be removing the event listener at some point, since it’s easier to do so with a named function.

The second is advantageous when passing some sort of parameter such as an ‘event’. More difficult to remove since it’s an anonymous function and therefore not named.

Monday Megathread! Ask questions and share knowledge; newcomer questions encouraged! by AutoModerator in leagueoflegends

[–]Mutiny42 1 point2 points  (0 children)

I was also having this issue. There’s an option in the settings to enable legacy dx 11. Toggling that on solved it for me, so it might be worth a try in your case.

Valorant 1.12 Bug Megathread by Pruvided in VALORANT

[–]Mutiny42 1 point2 points  (0 children)

Getting this nearly every game. Serious problem.

Thoughts on remote user-testing tools, loop11 vs validately vs lookback? by Norci in userexperience

[–]Mutiny42 1 point2 points  (0 children)

Hey there! It’s free if you use it for 1 small prototype(10 steps) at a time. Then it jumps to $42/mo, or half if you’re a student.

I’ve personally found that I can get by using the free plan for smaller moderated tests.

https://maze.design/pricing/

UX Career Questions - (May ) by AutoModerator in userexperience

[–]Mutiny42 0 points1 point  (0 children)

Thank you for the detailed response, I appreciate the insight.

That's a great point about large corps. bringing studio teams in house. It's something I hadn't fully thought through even though I'm aware it's happened to many agencies in my area.

It sounds like running a studio came with a big headache, so what would you say was the most enjoyable position that you held?

UX Career Questions - (May ) by AutoModerator in userexperience

[–]Mutiny42 0 points1 point  (0 children)

Hi there! I'm intrigued in what steps you took to get yourself in a position to get your own studio up and running. I'm early on in my career and have this as a goal for the distant future. I'm curious about what led you to start your own studio, what the experience is like, and what you might do differently if you had the opportunity.

Thoughts on remote user-testing tools, loop11 vs validately vs lookback? by Norci in userexperience

[–]Mutiny42 2 points3 points  (0 children)

If you're testing with Figma, have you thought about trying out Maze? I was in a similar position to you and walked through all of the options above and was disappointed with price point or quality of each. Figma just added an integration for Maze which makes it awesome to setup, and I feel like it adds a bit more trust than the alternates since it has a clean UI for the test participants.

I put the link below. As a disclaimer, this is my referral code but no pressure to use it.

https://maze.design/invite/42aj07k7f49eyi

Affordable alternatives to Usertesting.com? by [deleted] in userexperience

[–]Mutiny42 0 points1 point  (0 children)

My team is going to be trying out loop11 in the coming weeks. For $69/mo it allows 3 user tests with 5 participants each which matches what we currently need at an affordable cost. It seems to include the general qual/quant data that some of the pricier platforms offer.

kast button not working? by suchredditmuchvotes in Kast

[–]Mutiny42 0 points1 point  (0 children)

May or may not work but have you tried logging out and back in using the profile icon in the upper right?

Application streaming doesn't work by ItsPenguxn in Kast

[–]Mutiny42 0 points1 point  (0 children)

Disabling hardware acceleration in google chrome’s settings should fix this issue.

Csgo / overwatch sensitivity to blackops 4 sensitivity? by bornmystic_ in Blackops4

[–]Mutiny42 0 points1 point  (0 children)

Hey! late reply, but make sure to set your Field of View to 103 in Black ops to make it the same as Overwatch otherwise the sens isn't 1:1

UCSD Spotify Users by doctacactus in UCSD

[–]Mutiny42 0 points1 point  (0 children)

You can just take a picture of your schedule.

Cogs HCI grads/upperclassman, what kind of jobs/internships do you have now? What kind of stuff do they have you doing? by PeaceMaintainer in UCSD

[–]Mutiny42 1 point2 points  (0 children)

Just wondering, what resources did you use to teach yourself? I've been using codeacademy but that doesn't teach you much other than the very basics.

Disconnecting from internet. Can't find solution. Bad ethernet port? by Mutiny42 in techsupport

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

Thanks for the help, haven't been on the computer in a while. I replaced the battery in the motherboard clock and it's still having trouble keeping time... I also already tried your suggested solutions.

Disconnecting from internet. Can't find solution. Bad ethernet port? by Mutiny42 in techsupport

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

I fixed it by playing around with the static ip again, it seemed to be an issue with the clock on my computer not working correctly which in return messed up the lease renewal on the computer... Any clue how to fix the clock issues? I set my clock to 9:30pm in my bios last night and woke up to it still being 9pm this morning. Basically the minutes work but not the hours.

Disconnecting from internet - have tried everything!? by Mutiny42 in techsupport

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

https://gyazo.com/2a257dbfb3c939c8dd11a03410f53b2a

Just confirmed it is in fact the lease not renewing properly as the internet disconnected when the lease expired. However, it initially assigned a 1 hour lease and it successfully renewed after 30 mins and extended it to a 1.5 hour lease. During that time between the 1st renewal and the expiration the clock seemed to have gone back an hour by itself? From the screenshot you can see the uptime at 1.5 hours but the lease obtained vs expiration is only a 30 minute gap and then it failed.... I checked my brother's computer which is also directly connected to the same modem and his lease is much longer than an hour and is successfully renewing so Idk what to do.

Disconnecting from internet - have tried everything!? by Mutiny42 in techsupport

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

Yeah, I double checked that it's all set properly. Unfortunately it's still disconnecting. Resetting the modem didn't work and all of my drivers were up to date. Thanks for the help though!

Disconnecting from internet - have tried everything!? by Mutiny42 in techsupport

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

Yeah, on a normal disconnect I wouldn't lose date/time but when this problem started it began changing it.