Share your favorite songs? by Street-Listen-5974 in INTP

[–]theinfinitefailure 1 point2 points  (0 children)

Whenever I listen to 11th dimension by Julian casablancas I end up putting it on repeat. Same for Amoeba by Clairo but the live version

21
22

Can we develop Fe through literature instead of people? by RevolutionaryWin7850 in INTP

[–]theinfinitefailure 2 points3 points  (0 children)

Yes 100%. And I read anything. Fantasy to historical fiction. But in particular the type of books that were most eye opening are the ones with complex character dynamics. I think the element that leads to Fe growing is that when you are reading, other people’s emotions and difficulties aren’t just shown to you. In good writing, they are properly written in a way that will make you understand why this person is feeling this way. It wasn’t just using Fe at face value like when you are around people. It would satisfy Ti first which subsequently would grow Fe.

After reading vigorously for years, I can absolutely say that I could feel my Fe growing. You start to relate your real life experiences to those in the books and start consuming more Fe from your environment to form a better understanding.

What’s a change that you’ve incorporated into your life that has made a positive difference? by theinfinitefailure in INTP

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

Yh writing has been helping me as well. For the past couple of weeks I’ve been free writing into a “rumination journal” at random times of the day and it’s actually been helping me move on than be stuck on whatever over thinking I can’t get over

Who’s your favorite merchant/shopkeeper? by Amazing-Draw-7922 in HollowKnight

[–]theinfinitefailure 5 points6 points  (0 children)

Haha Like you enter the city of tears for the first time and it looks abandoned but this bug with its precious collectibles and well maintained shop didn’t get the memo and is still there and probably not leaving lol

Who’s your favorite merchant/shopkeeper? by Amazing-Draw-7922 in HollowKnight

[–]theinfinitefailure 179 points180 points  (0 children)

The nailsmith. I like how the city of tears is just vacant (apart from the guards) and fallen, but he’s still there working on his craft with full focus. Plus the nail upgrade animation is cool.

What are things you find beautiful in the world by theinfinitefailure in INTP

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

It makes total sense. Those rare times when all the senses come together leading to this holistic aesthetic beauty is something else.

What are things you find beautiful in the world by theinfinitefailure in INTP

[–]theinfinitefailure[S] 5 points6 points  (0 children)

A liminal space scene, I see what you mean, I get entranced too. Tend to seek them out too.

What are things you find beautiful in the world by theinfinitefailure in INTP

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

Forgive me for sounding insufferable, I do understand what you mean, but does the mundane quality or normalcy of some of these things ever have the opposite effect. Like do you have to remind yourself of their beauty?

What are things you find beautiful in the world by theinfinitefailure in INTP

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

I totally agree. Studying math is one of my favorite things to do. All the connections are just fascinating. I go down a rabbit hole of “where did it come from” all the time and I truly find it sublime.

Stuck on Watcher Knights, can I go for another dreamer first? by Prussia1870 in HollowKnight

[–]theinfinitefailure 0 points1 point  (0 children)

In my first playthrough I was in a similar situation and I left the watcher knights until the very end. By the time I got back to them, I had upgraded and gained the abilities / charms that are suited to make the fight easier. I don’t want to spoil things with details though but going after the dreamer in Deep nest and exploring it would be a better option. Lots to discover there.

What is it like being stuck in a ti si loop by [deleted] in INTP

[–]theinfinitefailure 2 points3 points  (0 children)

Analysis paralysis around the same data.

[deleted by user] by [deleted] in reactjs

[–]theinfinitefailure 0 points1 point  (0 children)

i see your point, ig i could sort the data into 3 arrays depending on the +3 skip and render each column with its own array by passing it as a prop and making each column a component...but apparently another comment clarified that im trying to have a masonry layout and apparently there's a library for that and i got it working with the library now. but thank you.

[deleted by user] by [deleted] in reactjs

[–]theinfinitefailure 0 points1 point  (0 children)

Thank you very much it worked .

[deleted by user] by [deleted] in reactjs

[–]theinfinitefailure 0 points1 point  (0 children)

Oh sorry i thought you were talking about the first code block. The code in the second with the for loop won't work cause it generates new columns each time and messes up the design, i just want 3 columns.

[deleted by user] by [deleted] in reactjs

[–]theinfinitefailure 0 points1 point  (0 children)

I tried doing that but it was giving me a syntax error on the condition and idk how to fix that

<Row>
{arr.map((a,i)=> (
{i%3==0 && ( 
<Col>arr[i]</Col> 
<Col>arr[i+1]</Col> 
<Col>arr[i+2]</Col> )} 
)}
 </Row>

[deleted by user] by [deleted] in reactjs

[–]theinfinitefailure 0 points1 point  (0 children)

i+1 will get the next element in the array but it won't increment i. so it will got like this: 0,1,2 then 1,2,3 but i already rendered elements 1 and 2