professional idiot

  • 7 Posts
  • 38 Comments
Joined 2 years ago
cake
Cake day: August 19th, 2023

help-circle
  • Direct quote from the article:

    Having difficulty securing enough grid power to fuel the energy-hungry data center, xAI brought in 35 portable gas turbines, and assembled them without environmental permits or pollution controls.

    Looks like it’s not just cooling that they’re doing there. The link in the quote leads to an article describing the data centre’s new turbines, specifically referring to them as methane gas turbines.

    I skimmed that article briefly and I don’t think it points out the mechanism by which these turbines work - if it does, I must’ve missed it. I did however see a line that said the turbines also release formaldehyde during operation.

    Methane in this case seems to me to either be a byproduct of power generation or unused fuel somehow leaking from the system. I have no clue how gas turbines work, so I’m talking out of my ass here. In any case this seems to be the source of the methane emissions.


  • for anyone interested:

    the scroll not working is most likely due to the main container in the page (usually the <body> tag but it can be some other element) having the overflow: hidden CSS property assigned to it.

    overflow dictates the behavior of an element that has its content overflow past the parent element’s boundaries.

    the property can have four values:

    • visible, where the overflow is fully visible and allowed to extend past the parent element,
    • scroll, which clips the overflowing content and allows the user to scroll the parent element,
    • hidden, which clips the overflowing content and prevents scrolling, and
    • auto, which works almost identically to scroll

    most sites run a script that assigns this property with the value of hidden to the <body> tag, making the user unable to scroll the page.

    ive seen this behavior the most with sites that blast you with an unavoidable cookie banner which you have to click through to access the page. usually removing the cookie banner element is not enough to freely access the page, and so you have to additionally find which element has its overflow set to hidden and disable that property.

    i reckon youtube’s adblocker popup is doing the same thing, and coincidentally turning off fullscreen also runs a script that makes sure the overflow is set to either scroll or auto



  • I really like it, and yeah, you were close! It’s a 32mm non-illuminated scope with a 3x-9x variable zoom. And it is in fact meant for .22LR - I picked it up brand new for a measly 250 PLN (~$60)

    Granted, I rarely, if ever, use the higher zooms, because neither my MP5 or my cheap sniper rifle are accurate enough to make use of that kind of magnification.

    And that prism sight looks real nice! I don’t mind having a basic scope, since I’ve gotten quite decent at hip firing at close range, so I’d rather have the added power a scope like that provides.

    And since you’ve shared your build, I’ll share mine, in my dingy old garage back when I was cleaning it.

    That one’s without the foregrip and the laser module attached. It’s quite literally a poor man’s G3, but hey, as long as it works.

    EDIT: By the way, judging by the positions and looks of all the pins and screws and some other parts, I assume that’s also a CYMA?








  • can confirm that it’s a constant sine wave, at least for me.

    i blew myself up by accident a month ago, and while my left ear has fully recovered my right one wasn’t so lucky. lost all hearing above like 10kHz (which isnt really noticeable, especially with my left ear still being good on frequencies), and i also now have some very minor tinnitus there. ironically if i had to guesstimate the frequency of my tinnitus it would be around 12 kHz, which is past my hearing range, though it can change briefly because of external stimuli.











  • the overflow property in HTML controls what happens in a given element when its contents extend past the element’s boundaries, in other words when the contents overflow.

    Overflow has 4 possible values (AFAIK): visible, scroll, auto, and hidden, where:

    visible does not clip the content and lets it extend past the parent element,

    scroll clips the content and adds a scrollbar so that the user can see the rest of the content,

    auto adds a scrollbar only when necessary,

    and hidden clips the content that extends past the parent and doesn’t add a scrollbar.

    Some paywalled/loginwalled sites load all of the article content regardless of whether the wall is up or not, so when a paywall pops up you can just go into the Inspect tool (usually CTRL+SHIFT+I) and delete the element containing the paywall, and/or, as some_random_nick said, change the article container’s overflow property from hidden to scroll, letting you see all of the content