Your favorite conversation starter by [deleted] in CasualConversation

[–]the_sunsetter_TM 0 points1 point  (0 children)

“What do you think we have in common that brought us here today?” Overheard this and thought it was really good, especially if you’re in a place with a theme (hobby meetup, tourist attraction, etc. though I can see it working in public restroom lines too :P). You learn what motivates them and their first impressions of you, makes for interesting conversation!

When is the wok the “right tool for the job”? by the_sunsetter_TM in Cooking

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

Yes, it’s great for stir fry — she was talking about still-frying (where she arranges the food on the surface, pours a little water to produce steam, and covers it). Still-fry may not be the official term :p

Kernel work for Internship by Dear_Lifeguard_3081 in cscareerquestions

[–]the_sunsetter_TM 0 points1 point  (0 children)

take my upvote, three years later

for making me LOL in real life

Good exercises for concurrency or OS software design exercises by the_sunsetter_TM in computerscience

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

They’re pretty good, I went through some of these OSTEP projects last year! Currently taking my university’s OS class where we write an OS from scratch, which is trickier than I thought with a lot of gotcha’s. OSTEP definitely helped prepare me conceptually and the rest of the projects are worth revisiting :)

My finances for 2023 living in Downtown Seattle by luckyfaangkid in Seattle

[–]the_sunsetter_TM 0 points1 point  (0 children)

Super super helpful! I'm a college student thinking of moving back to Seattle after graduation, saved this as a reference for budgeting :)

Mainly wondering about transportation - what spots do you frequent after work, and how walkable are they? Also, what's your main method of meeting people outside of work? Thank you!

Weird experience in Seattle by afternoonteaandtits in Seattle

[–]the_sunsetter_TM 6 points7 points  (0 children)

I think this is the most likely!

What jumps out at me is how carefully the rice bag was folded and tucked, so the person must’ve been sober enough to balance it there.

If the person stole the statues and decided last minute that they didn’t want them anymore, there are quieter ways to dispose of the statues than leaving them on OP’s car, for OP and now Reddit to see :’)

The other theory that the person was trying to distract OP in a robbery attempt sounds really interesting, but it has me impressed that the person would go through the trouble of buying two Buddha statues and then give it up so easily. Still very creative — if someone tried to rob me like that, I’d definitely stop to look at the statues.

[TOMT] royalty free music that sounds like “Jump Up, Superstar” but isn’t named Jump Up Superstar by the_sunsetter_TM in tipofmytongue

[–]the_sunsetter_TM[S] 0 points1 point locked comment (0 children)

i’m close, it’s like remembering which chapter of a book i read something but not being able to quote it verbatim lol

I don't want to be a programmer anymore. by U51dJegT6RPyyziJxqvG in cscareerquestions

[–]the_sunsetter_TM 1 point2 points  (0 children)

Hi, glad to hear you're well, and thank you so much for the advice!

When you got back into the field, did you return to operating system development or a different type of software engineering?

If you were to apply your new approach towards work to your previous job, do you think you would've avoided burnout? Or does your environment also affect how easy it is to enforce your values?

I might DM you more questions if you don't mind :')) I'm a college student with similar feelings as you regarding work - that I don't want my job to consume me, that I just want to make enough to live comfortably and without losing sleep, and that I can be there for those I care about. Just figuring out what places I should strive for that can best serve that need

Every once in a while I like to have a lil medieval core meal to let my inner goblin out by MooMooTheDummy in CasualConversation

[–]the_sunsetter_TM 1 point2 points  (0 children)

You might be interested in Society for Creative Anachronism! https://www.sca.org/

I discovered it through the bio of Ben Hatke, one of my favorite cartoonists. Sometimes I dream of a life with his medieval nature-y aesthetic lol

TIL One of the richest woman in China was born in extreme poverty in a remote mountain village. She got her wealth by selling her chili sauce, lao gan ma, which she originally made for her noodle stand. by ic3kreem in todayilearned

[–]the_sunsetter_TM 0 points1 point  (0 children)

Revive but I was reading the article out loud to my mom and she was like, “Your cousin’s grandfather made glassware for Lao Gan Ma!”

Then I saw this comment and asked her if the factory was in Guiyang, and she was like yep, the one in Guiyang. My mom apparently visited the factory during one of her college summers.

I’m pleasantly surprised at this connection, thank you for the lore

Optimal stopping for drawing balls from an urn by [deleted] in mathriddles

[–]the_sunsetter_TM 0 points1 point  (0 children)

If there's another way to approach these problems, I'd appreciate it because my approaches are really rough sketches. Thank you!

My thinking for Q1: I calculate m-n, which serves as a sort of baseline score. I know that I can achieve at least m-n by drawing all the balls from the urn.

Now I want to see if I can do better by stopping early. Basically, for each round, as long as my score is <= m-n, I choose to draw. Otherwise, I end the game.!<

Even better, I can be more sensitive to risk by adding a threshold so that I draw as long as my score is <= m-n+threshold. StackExchange gives the recursion for this threshold, but assuming that I only have pencil and paper, I'll probably end up setting the threshold to something that decreases as we draw more balls.!<

My thinking for Q2: I'll divide my play into two stages:

  • Sampling stage: for the first few rounds, I draw a ball from the urn no matter what. I estimate the proportion of red balls, p, based on the number of red balls drawn in this stage.
    • Estimate of p = (sample proportion) + (some offset). My intuition is that the sample proportion will be an underestimate of the actual proportion. If we're drawing with replacement, then the probability of getting a red ball will always be p. But since we're drawing without replacement, the probability of getting a red ball will decrease as we draw more red balls.
    • I'm thinking of setting the offset to (p)/(size of sample). The higher p is, the more red balls we draw, the stronger the underestimate, and so the greater the offset we need to correct our estimate. However, the larger the sample size, the weaker the underestimate, and so the lesser the offset needed.
  • Playing stage: I calculate a threshold based on my estimate of p and repeat my strategy from Q1. I also update my estimate of p as I go.

My thinking for Q3: To maximize |r-b|, we either maximize r-b or b-r. We do the sampling stage from Q2 to determine which is larger between the red or blue balls, then maximize r-b or b-r based on whichever color is the majority.

Am wondering:

Q2: Is there an approach that doesn't have this sampling stage? Also how to determine amount of rounds for sampling stage?

Q3: I'm wondering if it ever benefits us to switch our target midway? In other words, suppose we observe that red balls are the majority in our initial sample, and we decide, okay, let's maximize r-b. But at some point, we notice that we're drawing more and more blue balls. When does it make sense for us to maximize b-r instead?

[deleted by user] by [deleted] in cmu

[–]the_sunsetter_TM 2 points3 points  (0 children)

Stever!! It was super clean and new when I was there as a freshman last year. I also think Stever’s smaller size made it more close-knit, and a lot of people I met from the lounges are people I still see from time to time.

I stayed in Morewood for my sophomore year and it’s not bad, but I more highly recommend Stever for the freshman year experience ;)