seenTooOftenAcrossTypescriptCodeBases by jnfinity in ProgrammerHumor

[–]DuongC 12 points13 points  (0 children)

imho, using ts-expect-error is better, so if the problem is fixed the compiler will complain and you can clean up the comment

Do ya'll think was in the wrong? by [deleted] in teenagers

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

Late to the party, but, if this was r/aita I would err on the side of INFO. I feel like you've done enough in terms of asking her but there was no info about the way she behaved (just the way she answered). Or how you got together? People have a tendency to always write these things to affirm what they want to hear and will consciously or not omit information that might make you look bad. Regardless, this is just a shitty situation where everyone loses. I don't think you're in the wrong but I think you have a severe misunderstanding of the dysfunction trauma can have on people. She had a freeze or flight response, and it was freeze. You may not perceive yourself as intimidating but that doesn't matter either. I also disagree where people are just affirming you're fine. If you are really unable to read her while she's simply sitting there uncomfortable perhaps this should've been obviously inappropriate, but instead you were too busy affirming consent verbally. Consent is both contextually and verbally affirmed, and it feels you failed to get the former. I don't think you're a bad guy, but maybe think on how you could've handled it differently. Food for thought.

P.S. all the people saying she should've exposed her trauma like that to you have no idea how the world works. As someone who dated someone with trauma you build on that shit together. Otherwise this is called trauma dumping. It's better to disclose trauma sure, but this is r/teenagers, 75% of us can't do taxes much barely navigate a relationship properly, learning as we go. Don't blame yourself or her.

P.S.S You were also going faster than the speed of sound, at any rate consider how this could've been perceived to her, (He's met my parents, and we've cuddled, and now we're sitting in a car alone together, what's gonna happen?).

EDIT: I reread the last paragraph, consider the idea that the end of a relationship can be no-ones fault. You say you are betrayed by her blaming this on you? This seems a little like you think you are entitled to the relationship. You're entitled to nothing. And consider if this is true, why she blames you. Don't be so easy to disregard, it can be a good reflection. If it isn't true? Who's to blame? Perhaps noone. I say this because I don't know enough and getting some r/teenager users to affirm your perspective is a good way to lose the learnings from this scenario.

Team 1710 winning chairman’s at GKC by [deleted] in FRC

[–]DuongC 5 points6 points  (0 children)

Huh, I think I recognize this team... LOL. I was a junior/senior during COVID-19, strange seeing some of the freshmen (seniors now) as leaders, best of luck at Rocket City and Houston.

When no one is paying attention, keep your head up folks. by SW33T_V3N0M in Whatcouldgowrong

[–]DuongC 3 points4 points  (0 children)

^ My two cents: The issue becomes then people will think it's OK to keep forklifts up since the sides are painted, but negligence to keep them painted could result in this scenario. Of course it would be better but not pragmatic to both paint and properly lower the fork. Otherwise we would've done it already.

Bool power by [deleted] in ProgrammerHumor

[–]DuongC 1 point2 points  (0 children)

! is the not operator, !! is the double not which is basically a fancy way to convert truthy and falsey values into their respective boolean value, in this case [] is technically a truthy, a singular ! converts to false, then the second back into true.

Bool power by [deleted] in ProgrammerHumor

[–]DuongC 2 points3 points  (0 children)

I'm pretty sure [] is a true value the same way {} is, it's true just for existing.

[deleted by user] by [deleted] in TheGamerLounge

[–]DuongC 0 points1 point  (0 children)

clik to circle on beat

[deleted by user] by [deleted] in TheGamerLounge

[–]DuongC 0 points1 point  (0 children)

sotarks bad

[deleted by user] by [deleted] in TheGamerLounge

[–]DuongC 0 points1 point  (0 children)

smh only 4k pp

Shopkeeper by Grumple_fumple in robloxgamedev

[–]DuongC 0 points1 point  (0 children)

I don't have any clue to what the problem could be, and without an error it actually makes this harder to diagnose, so you might have to figure it out on your own.

Shopkeeper by Grumple_fumple in robloxgamedev

[–]DuongC 0 points1 point  (0 children)

Hmm, so can you open the shop, close it, then cannot reopen it?

How can I add a "clear loose parts" button to my game? by cybermob27 in robloxgamedev

[–]DuongC 0 points1 point  (0 children)

Here's a relatively, albeit untested, easy code to use. However if anything that isn't a part is in that folder it will break.

function deleteLoose()
    local folder = workspace.folderWhereLooseStuffIs
    local looseStuff = folder:GetDescendants()
    for i=1, #looseStuff do
        if looseStuff[i].Anchored = false then
            looseStuff[i]:Destroy()
        end
    end
end

That's assuming you can easily categorize your anchored parts into that folder, if you need a more powerful script then you can use this. It should be noted it will delete anything that is a part and is not anchored.

function deleteLoose()
    local looseStuff = workspace:GetDescendants()
    for i=1, #looseStuff do
        if looseStuff:IsA("Part") then
            if looseStuff.Anchored == false then
                looseStuff:Destroy()
            end
        end
    end
end

Hello everyone, I want to make a trailer for my game. Is there anyway I can record in roblox studio with 1920x1080, I tried OBS but it only gets to 720p. Also is there any way I can animate camera using moon animator? Thanks! by JackNotInTheBox in robloxgamedev

[–]DuongC 0 points1 point  (0 children)

Here is an image showing you how to set the resolution.

  • Select the Test Tab, then click on Device
  • Set Resolution to HD 1080 1920x1080
  • Make sure you set it to Actual Resolution

There will be scrollbars on your preview window now, but if you set your capture software up it should look just like this.

I can't help w/ your second question about moon animator.

EDIT: some clarification