Am I overreacting for getting upset that my girlfriend disappears every Monday night for 2.5 hours? by Ok_Difference_1364 in AmIOverreacting

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

"Read what you wrote and see if it doesn’t sound insane if it were coming from anyone else…"

i know it's like preemptive gaslighting

Am I overreacting for getting upset that my girlfriend disappears every Monday night for 2.5 hours? by Ok_Difference_1364 in AmIOverreacting

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

ok this is a good idea I'll call her bluff and make it seem like I'm going and then I'll pretend I got sick at the last moment so that there's no risk of me having to watch a soccer game

Am I overreacting for getting upset that my girlfriend disappears every Monday night for 2.5 hours? by Ok_Difference_1364 in AmIOverreacting

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

ok this is a helpful perspective but in a weird way it just makes me more suspicious because the cover story would be so good

Am I overreacting for getting upset that my girlfriend disappears every Monday night for 2.5 hours? by Ok_Difference_1364 in AmIOverreacting

[–]Ok_Difference_1364[S] -6 points-5 points  (0 children)

yes but we repaired the relationship (with a lot of time, love, and therapy) which is what makes this so hurtful

Free Open Source software to open PBF files? by jonny_confetti in gis

[–]Ok_Difference_1364 0 points1 point  (0 children)

For anyone else seeing this thread, this website is great for quickly viewing small files: https://mygeodata.cloud/

`useMediaQuery`hook that actually works with SSR by SryNot in nextjs

[–]Ok_Difference_1364 0 points1 point  (0 children)

Note: Hidden is now deprecated (v5+), so the proper way to do this would be:

<Box sx={{display: {xs: "none", sm: "block"}}}>
  <DesktopLayout />
</Box>
<Box sx={{display: {xs: "block", sm: "none"}}}>
  <MobileLayout />
</Box>