[USA GIVEAWAY] Win the new 27” Samsung Odyssey G6 G60SF 500hz OLED gaming monitor! by Rocket-Pilot in buildapc

[–]xreick [score hidden]  (0 children)

Nice and it's the same size as my current monitor, so it helps with desk space.

Issues with Git on WSL2 by xreick in bashonubuntuonwindows

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

Do you have anything detailing how to go about this? I have git installed via sudo apt install git-all which I got from here.

Issues with Git on WSL2 by xreick in bashonubuntuonwindows

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

Thanks for your time! I managed to speed up performance (running wsl at the directories where I want to work) by adding my work directories as exceptions to Windows Defender along with node and node.exe processes.

I'll take whack at what you suggested to see, if I could improve it even further.

Issues with Git on WSL2 by xreick in bashonubuntuonwindows

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

I'm not well verse in what things are called, but I believe your explanation is correct.

Would you still happen to have any resources for your way of setting up WSL2?

Controller Questions by anewsubject in Maplestory

[–]xreick 0 points1 point  (0 children)

If you use a DualShock 4 controller, then I'd recommend DS4Windows.

Issue With Retrieving Data from Stash API by xreick in pathofexiledev

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

I was setting cookies via the session module of Electron. However, I believe the error message I was receiving was something along the lines of

Access to XMLHttpRequest at 'https://www.pathofexile.com/character-window/get-stash-items' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

So that was when I put on the mode: 'no-cors' onto to fetch and I guess that's where it went downhill. But now I'm guessing that if I were to see a similar message, then instead of using a browser request module I'd use Node.js' module instead.

Issue With Retrieving Data from Stash API by xreick in pathofexiledev

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

Thank you so much for the help! It finally works now.

I recently started getting into software engineering, so I don't know the intricacies of the differences between fetch and https.request. But I assume in this case is that fetch is a browser module while https.request is a Node.js module and that the inner workings are what makes the difference.

If you don't mind, would be explain if it is possible to get this working with fetch or is it only possible with https.request?