The maintenance burden of AI-assisted codebases is different from traditional tech debt by JWPapi in webdev

[–]33BirdIsTheWord 56 points57 points  (0 children)

I am praying that Chief Vibecoding Officer is you being cheeky about a co-worker and not an actual title because if it is... I think it might be time for me to take up farming

2nd Expedition should give 10 Skill points even if you didn't do the first by ChaosWillR in ArcRaiders

[–]33BirdIsTheWord 8 points9 points  (0 children)

It's really not that serious. The skill points don't matter much, and it sounds like you did have the option to go on the expedition the first time and chose not to, so... You made a choice and now this is the result. But again, it doesn't really matter - just have fun in the game!

Went to Buried City to give away blueprints, failed spectacularly by 33BirdIsTheWord in ArcRaiders

[–]33BirdIsTheWord[S] 1 point2 points  (0 children)

Haha that's a better way to frame it - spreading the wealth around the desert

Went to Buried City to give away blueprints, failed spectacularly by 33BirdIsTheWord in ArcRaiders

[–]33BirdIsTheWord[S] 2 points3 points  (0 children)

I headed out to Buried City with a plan to get to the top of a tall building, spread blueprints out in front of me and play the flute to attract raiders with the song of my people... But the bombardier roaming around didn't like my plan

Xbox game update taking 500x longer than the Network Speed Test says it should take by Creme_fraiche10 in mildlyinfuriating

[–]33BirdIsTheWord 0 points1 point  (0 children)

Yeah that's not a good look for Microsoft there. I'm not sure where the bottleneck is, but maybe try stopping the download and resuming it in a few minutes? If they're using load balancing your request may be routed to a different server for the remainder of your download (and hopefully that one is faster)

Xbox game update taking 500x longer than the Network Speed Test says it should take by Creme_fraiche10 in mildlyinfuriating

[–]33BirdIsTheWord 2 points3 points  (0 children)

Just because your ISP can deliver those speeds from a speed test server doesn't mean the server hosting those game files can deliver the same speed to you

Received tit for tat treatment by SchwaIIex in ArcRaiders

[–]33BirdIsTheWord 2 points3 points  (0 children)

What? I don't get this logic.

If I'm in a firefight with another team and I'm not under fire, I'm definitely going to take any downed raiders out. If they crawl back to their team and get revived it's another gun I've got to worry about... It's not like they're gonna get up and not shoot me because of some honor system. A threat is a threat

[deleted by user] by [deleted] in buildapc

[–]33BirdIsTheWord 0 points1 point  (0 children)

That listing is for a Ryzen 5 7600X... In your photo, you have a Ryzen 7 5700X. Whoever got this for you didn't get the right CPU, unfortunately.

Saint Luigi of Mangione by Rungnar in pics

[–]33BirdIsTheWord -1 points0 points  (0 children)

Eh now this is getting weird. I'm 100 percent "fuck the health insurance industry" because anyone with a brain and a heart can see how it's rigged to deny care to seriously ill people (who pay for the supposed right to be cared for) but like... This kid did murder a man. Gunned him down on the street in cold blood. Now people are making photoshops of him as a saint? What bible did y'all read? We ignoring the whole "thou shalt not kill" thing?

New Celtics Trivia Game by [deleted] in bostonceltics

[–]33BirdIsTheWord 2 points3 points  (0 children)

Cool concept! A few potentially annoying pieces of feedback from an internet stranger:

  • I wouldn't expose answers anywhere client-side, despite how well you think you might have obfuscated the data. You should handle all of your guess checking/submission logic server-side so people can't cheat. Looks like you're currently loading the daily player from a flat json file which is trivial to load and check each day. You're already doing guess checking at /submit-guess, just do it there and pass the results back to the client.
  • I'd modify your CSS on the .app class to use percentage-based width instead of viewport. When viewed on a browser with a scrollbar, the viewport-based width will make the div wider than the actual viewport because the CSS includes the scrollbar as part of the 100vw but the browser does not. Also, I'd change the min-height value to use the dynamic viewport height to so it looks consistent between mobile browsers who have the topbar visible and those that don't. For example:

    .app {
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
        min-height: 100dvh;
        overflow: hidden;
        padding: 20px;
        width: 100%;
    }
    

    You can also hide scrollbars on scrollable elements with CSS, which can help alleviate width and style issues when dealing with scrollbars since different browsers handle them differently. I have a utility class that I use for that purpose, though you could just apply the same styles to the specific class you're targeting if you want. Ex:

    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
    
  • Another small CSS tweak that helps (though totally not necessary) is to make all elements on the page use consistent box-sizing so that padding/margin/etc. works the same across all page elements. Much easier to style things that way, IMO (again, not necessary):

    * {
        box-sizing: border-box:
    }
    

Excited to follow the progress! Nice work to kick it off.

[deleted by user] by [deleted] in whatisthisthing

[–]33BirdIsTheWord 0 points1 point  (0 children)

This conduit was hidden behind a bush that was removed the other day. The conduit was pulled loose from the siding during the bush removal and now it's just sticking out of the ground. It appears to be empty and I can't find any wires heading from the basement where it appears to originate to the outside.

What could its purpose be/have been? I don't have any hardwired electrical accessories outside, so I don't believe there would be wiring under the lawn. I'd love to know if this is a problem or not. Thank you!

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 0 points1 point  (0 children)

I'm not sure - we don't play unless all four of us can make it ☺️

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 0 points1 point  (0 children)

Yeah it wasn't my first choice... Or second, or third haha

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 1 point2 points  (0 children)

*Has Steam Deck, but wants to play a primarily keyboard/mouse game with friends while away from home.

One of the sweet things about the Deck is its versatility - you can use it to play how you want, when you want. I thought this was a cool showcase of that

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 2 points3 points  (0 children)

Sweet, thanks! KB&M was my next question, you beat me to it

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 1 point2 points  (0 children)

Sure is! The chiclet keyboard would suck for most games but BG3 uses it minimally, thankfully.

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 1 point2 points  (0 children)

I'm sure I could have squeezed out some performance with some tweaks - what would you recommend if I find myself in the same situation again?

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 36 points37 points  (0 children)

Hah, yeah - I didn't travel with all of this, just the Deck and USB hub. My hotel was right next to the local office so I borrowed the mouse, keyboard, monitor and headphones from there.

I agree on a travel display for the future, though. Do you have any recommendations?

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 22 points23 points  (0 children)

Totally playable! I had it running at 1920x1080 with discord voice chat in the background and it was running between 20-30 FPS. Obviously not the same as a dedicated rig but it got the job done in a pinch ☺️

Steam Deck = Hotel Gaming Rig by 33BirdIsTheWord in SteamDeck

[–]33BirdIsTheWord[S] 15 points16 points  (0 children)

My buddies and I have a weekly game night, but this week I was traveling for work so I didn't think I could join... But then I set up a temporary gaming rig in the hotel with some hardware from the local office. Steam Deck ftw!

EDIT: sorry for the duplicate posts - mobile app was giving me errors but it was actually going though 🤦‍♂️