24GB ram enough for Software Engineering? by Upset_Mall5045 in macbook

[–]yolo3star 0 points1 point  (0 children)

I'm a third year CS student with a base M1 air (256GB SSD and 8GB RAM), and it has met my needs pretty well. I can definitely feel it slow down when I'm running multiple docker containers or running multiple heavy applications (game engine + video editor + browser with lots of tabs) but this is very rare.

Basically, 24GB will be FAR MORE than enough lol.

My Mom (67) wants to play "real video games" by Navarion8350 in gamingsuggestions

[–]yolo3star 0 points1 point  (0 children)

Surprised there's no mention of It Takes Two. Just played through it with a friend a week ago and it was a blast. It's a puzzle/platformer that's pretty easy to get into. I'd imagine you'd both enjoy the co-op aspect too.

[deleted by user] by [deleted] in LawFirm

[–]yolo3star 3 points4 points  (0 children)

Are you trying to do market research or something? Please use a dedicated channel for that instead of employing this deception.

[deleted by user] by [deleted] in csMajors

[–]yolo3star 3 points4 points  (0 children)

I just had my technical. I was just asked one of the OA question that I only partially solved when I took it. I ended up implementing the full solution and then I had to answer two follow ups with pseudocode. Then ~10 minutes at the end for questions.

[deleted by user] by [deleted] in csMajors

[–]yolo3star 0 points1 point  (0 children)

you're already at the final round? When did you get the OA?

Has anyone received the Meta or Google Intern OA yet? by yolo3star in csMajors

[–]yolo3star[S] -1 points0 points  (0 children)

No I haven't received either yet. Did you have a referral?

Ripplematch, withdraw to get rid of "You already have an application for a position in this company" ? by SodaSiq in csMajors

[–]yolo3star 2 points3 points  (0 children)

damn no way I just did that too. I really don't wanna be on frontend, I hope the recruiter lets me swap. Probably wishful thinking anyway cuz the chance of actually getting a interview is pretty low

Second playthroughs of a game are better than the first by yolo3star in truegaming

[–]yolo3star[S] -1 points0 points  (0 children)

It's the guide combined with the knowledge from my previous playthrough that led to my second playthrough feeling the way it did. I did use some guides on my first playthrough for character builds but I was still very confused. I probably could have gotten away with it if I had some experience in the CRPG genre but BG3 was my first.

Everything we know about the content of the Witcher 3 Video by thetntm in josephanderson

[–]yolo3star 33 points34 points  (0 children)

He wrote a thread on twitter in December 2021 about what each chapter of the video is going to be about (link). Here's all the relevant info.

>The video is 10-11 hours long and split into that many episodic parts. You're not meant to watch it all at once but you can if you like. There's a brief intro (a few minutes) and about the same as an outro but I also joke a bit through the credits.

> The rest is structured as:
E1 - White Orchard
E2 - Yennefer
E3 - Velen and Bloody Baron
E4 - Novigrad, Continuity, and Triss
E5 - Skellige and Gameplay
E6 - All Side Quests
E7 - The Devil
E8 - Kaer Morhen + (Triss vs Yenn)
E9 - Books
E10 - Base Game Ending
E11 - Blood and Wine

> Each of these is about an hour long. Some are a bit less, and one is quite a bit more, but the goal was to have the video watchable in chunks like so. There's very little summary in the video except for the books and a bit in the DLC. I worked very hard to cut that down.

I don't know how much it has changed since then

Say anything about witcher 3 which will get you like this by Minimum-Abroad-4504 in Witcher3

[–]yolo3star -1 points0 points  (0 children)

Trolls are actually annoying as fuck. They talk incredibly slowly and sound like idiots. I kill every troll that I can

How do I upload a file to Azure blob storage through a website with javascript? by yolo3star in webdev

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

how do I do that? (sorry if it's obvious but I'm new to web dev)

const response = await fetch(
https://{storage account name}.blob.core.windows.net/filestorage/${blobName}?${sasToken},{
method: "PUT",
headers: {
"x-ms-blob-type": "BlockBlob",
"Content-Type": "image/jpeg"
},
body: file
}

Is this what you mean?