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

help-circle

  • 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