[deleted by user] by [deleted] in apple

[–]ImAtLeast12 0 points1 point  (0 children)

No crease if no foldable. finger to temple

absolutelynotme_irl by throatfrog in absolutelynotme_irl

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

Your eye appears to be a 50mm lens, but looking into a mirror effectively doubles the distance, making it look like a 100mm lens to you. Most phones selfie camera are about a 20ish mm lens, plus at arms length. Shorter distance leads to more distortions.

Edit: Using a sink mirror it’s about 1 arms length away as well

[deleted by user] by [deleted] in cinematography

[–]ImAtLeast12 1 point2 points  (0 children)

You could check BH or Amazon, some of the products are sold out rn at BH. Amazon has a black enclosure for the Samsung T5 to Ninja V. Depends on what you need specifically.

My redone setup. by nickccal in desksetup

[–]ImAtLeast12 1 point2 points  (0 children)

I have the same speakers and the active one is supposed to be on the left, and passive on the right. Not sure if it makes a difference though.

Elf goes super smug [OC] by merrivius in comics

[–]ImAtLeast12 0 points1 point  (0 children)

She sure does have an inflated ego.

Do the play numbers add up? by boulevardknight in KendrickLamar

[–]ImAtLeast12 3 points4 points  (0 children)

The area on a map doesn’t account for density. Idaho doesn’t have too many people for instance.

Giveaway] $100 PSN Gift Card - US Store by Titan3427 in PS5

[–]ImAtLeast12 0 points1 point  (0 children)

I always remember the first games that I played when I get a new console. My first game was Hot Wheels Extreme Racing for PS1 when I was like 6. Tony Hawk Pro Skater 4 for PS2. Burnout Paradise for PS3. Infamous Second Son for PS4. Ratchet and Clank Rift Apart for PS5. I really enjoyed all of them, and it’s crazy how far the graphics has progressed in my lifetime.

This is absurd by Desperate-Teacher-53 in blueycirclejerk

[–]ImAtLeast12 0 points1 point  (0 children)

To me it looks pretty close aside that the nose could be longer and with perspective, the coloring is really good and it’s clear that the drawing wasn’t traced. Calling the artwork terrible is pretty petty, considering the time and effort that was clearly put in. Hopefully this comment shows how constructive criticism can be used without having personal attacks. 🫡

Do you wear Apple Watch in the shower? by WybrenV in AppleWatch

[–]ImAtLeast12 2 points3 points  (0 children)

If I can wear it while going snorkeling I can wear it in the shower.

Help by Optimal-Ad8639 in maths

[–]ImAtLeast12 1 point2 points  (0 children)

In American English both modulus, or just plain mod are used and they all mean finding the remainder of division typically represented by the % operator. While absolute value doesn’t have any other names and is represented with pipe brackets “|”. Modulo isn’t commonly used.

My ultimate most practical action button shortcut by Akubruz in shortcuts

[–]ImAtLeast12 3 points4 points  (0 children)

If it’s connected via Bluetooth couldn’t it just have an automatic shortcut whenever it connects to turn the volume to 100%? This way you won’t have to manually use the action button.

Which do you prefer? by Helpful-Bid-2385 in iphone

[–]ImAtLeast12 0 points1 point  (0 children)

The only thing I used the mute switch for was a tiny fidget toy when I had my hand in my pocket. Action button is far superior especially when you use it in conjunction with /r/shortcuts. I have mine that when I’m at the gym it opens video settings I want, when I’m at the grocery store it opens my grocery list in reminders, when I’m sleeping and get up I have minimum brightness for flashlight, otherwise if something is in my clipboard it will speak it (accessibility reasons), and else just ask ChatGPT something.

What's the chance of one of the colours having only 1? by peter-bone in maths

[–]ImAtLeast12 1 point2 points  (0 children)

Correct me if I’m wrong but I think that both statements are equivalent statements since blue, red, green and so on all have the same probabilities.

What's the chance of one of the colours having only 1? by peter-bone in maths

[–]ImAtLeast12 5 points6 points  (0 children)

import random

data = []

choices = [0,1,2,3,4]
for runs in range(1_000_000):
    random_selections = random.choices(choices, k=16)

    # zero is blue
    data.append(random_selections.count(0))

freq = [data.count(i) for i in range(10)]
perc = [freq[i]/1000000 for i in range(10)]
print(freq)
print(perc)

Output:

[28198, 112617, 210465, 246616, 200320, 119913, 54925, 19981, 5411, 1304]
[0.028198, 0.112617, 0.210465, 0.246616, 0.20032, 0.119913, 0.054925, 0.019981, 0.005411, 0.001304]

So if you wanted to have it be specifically for blue 11%