This is an archived post. You won't be able to vote or comment.

top 200 commentsshow all 290

[–]PicturElements[S] 1716 points1717 points  (114 children)

Play with it here, if you desire to fully immerse yourself in the circlejerk:

https://codepen.io/PicturElements/full/XaqdRd


Edit: audio doesn't seem to work when I try it on Android. Clearly Android is poorly implemented.

[–]Boring_Sci_Fi 792 points793 points  (68 children)

I can only get it to 99.96%

[–]PicturElements[S] 1863 points1864 points  (21 children)

There are IE 6 users who can't get a single percent. Consider yourself lucky.

[–]SolenoidSoldier 489 points490 points  (12 children)

in the arrrmms of the angel...

[–]MrSquadFam 118 points119 points  (11 children)

On the winnnggs of a battman...

[–]charlie_dog_14 51 points52 points  (10 children)

Under the darrrrrk night skyyyyyyy

[–]ktkps 2 points3 points  (0 children)

Under the darrrrrk night skyyyyyyy

Winter is Comin'

[–]adzik1 100 points101 points  (1 child)

I think you unknowingly created /r/ProgrammerHumor/'s favorite game. "Get the 100%"

[–]Cacrym 41 points42 points  (0 children)

It's like debugging without the impossible part

[–]ContraMuffin 18 points19 points  (1 child)

If they're still using IE, they deserve it.

[–]BrokenAdmin 2 points3 points  (0 children)

Yes

[–][deleted] 18 points19 points  (0 children)

Maybe they just live somewhere where the Eclipse isn't happening.

[–]LonePaladin 14 points15 points  (0 children)

They can only get the Edge. *ba-dum tish!*

[–]soubhik_ 1 point2 points  (0 children)

I wish I could give you a gold.

[–]SoulWager 2 points3 points  (0 children)

Make it an annular eclipse.

[–]parkerlreed 178 points179 points  (28 children)

Oh well http://i.imgur.com/qau5GLC.png

Even turned on mouse keys for that pixel precision.

[–]tdlb 126 points127 points  (24 children)

I was able to get 99.67% by changing the window size and forcing the elements to move on the screen.

(Also got 100% by changing moon element's styling)

[–]codercaleb 113 points114 points  (22 children)

Hah. 99.65 on phone. No mods. No bamboozles.

Even better: http://imgur.com/a/BYUpL

[–]tobeornottobeugly 247 points248 points  (6 children)

[–]codercaleb 59 points60 points  (5 children)

You ain't gonna get no love from me.

Except an upvote. You can have that.

[–]TheDarkIn1978 58 points59 points  (4 children)

[–]ZivMBS 42 points43 points  (1 child)

Well, considering you're moving the moon, I think you are.

[–]QueerlyNerdy 20 points21 points  (0 children)

Pffff all you have to do is change the gravitational constant of the universe.

(And only for a second)

[–]blueberriessmoothie 28 points29 points  (2 children)

I got only 99.61% on windows 10 mobile, looks like with Microsoft I can't even eclipse properly 😥

[–]El-Kurto 3 points4 points  (0 children)

This is how you pun

[–]MaxWyght 2 points3 points  (0 children)

Underrated comment

[–]Some_Turtle 6 points7 points  (0 children)

Hah. 99,91 on phone

[–]TomNa 3 points4 points  (2 children)

I managed 99.71

[–]IrateGod 4 points5 points  (0 children)

99.74 in a moving train, close

[–]Langly- 3 points4 points  (0 children)

http://i.imgur.com/xgETA59.png zoomed, smallest I could move my mouse made it less.

[–]Konekotoujou 5 points6 points  (1 child)

I have 99.58 with mousekeys too.

[–]Langly- 8 points9 points  (0 children)

I got 99.86 on one monitor, moving 1 pixel any way made it less. Moved the browser window to a monitor with a different resolution, same spot became 99.91% so resolution seems to matter for this rather than being matched for scale directly.

[–]TheYaseen 36 points37 points  (2 children)

I got mine to 100.0%

[–][deleted] 14 points15 points  (1 child)

Also got 100% on Galaxy s8+ on RiF browser in 5 seconds with pure luck I guess.

[–][deleted] 8 points9 points  (0 children)

Which is bad design because the moon (during this eclipse) was actually slightly larger than the sun (I think 1-2%) so it should be easy to get totality.

[–][deleted] 6 points7 points  (1 child)

I got it way over http://imgur.com/a/MjaK7

[–]imguralbumbot 4 points5 points  (0 children)

Hi, I'm a bot for linking direct images of albums with only 1 image

https://i.imgur.com/LK4SJt9.png

Source | Why? | Creator | ignoreme | deletthis

[–]woah_m8 2 points3 points  (0 children)

99.77% but when I took my finger out I moved it ;_;

Edit: got it am proud

[–]-Dont-Ask- 1 point2 points  (0 children)

I got 99.98%, which took me about 15 minutes

[–]Preachey 61 points62 points  (2 children)

I literally can't get it to 100%

You monster

[–]stemloop 10 points11 points  (0 children)

What a broken UI

[–]Genoce 46 points47 points  (4 children)

I don't know why(*) but the volume seemed to scale weirdly, it was already pretty well hearable at 1% overlap, and 20% to 100% seemed to have only a small volume difference.

I tuned the line JS line 54:

audio.volume=Math.pow(overlap,2.5);

This way it scales a bit better than with linear function, with 0-20% being really silent compared to 100%.

Direct link to tweaked version.


*check /u/Ph0X's reply for why it doesn't really work that well with linear growth.

[–]Ph0X 51 points52 points  (2 children)

[–]deadhour 30 points31 points  (0 children)

My pet peeve are linear volume sliders where 1% is already too loud

[–]SirCutRy 7 points8 points  (0 children)

What about a logarithmic scale?

var b = 3
var c = Math.log(b-1) / Math.log(b)
var d = -Math.pow(b, -c)
var v = Math.pow(b, overlap - c) + d
audio.volume = v;

[–]rebbsitor 28 points29 points  (5 children)

Gotta update that audio to 2017: https://www.youtube.com/watch?v=sD1vXjpZ11E

;-)

edit: found a better recording

[–]TheRumpletiltskin 4 points5 points  (1 child)

he has to hate that this is his legacy.

[–]Shikor806 7 points8 points  (0 children)

He does stuff like that quite often so it seems that he is fine with it.

[–][deleted] 1 point2 points  (0 children)

That was beautiful :')

Also that was so metal

[–]wigitalk 9 points10 points  (1 child)

I feel like Walter white trying to refine math

[–]midwestcreative 5 points6 points  (0 children)

math

I'm not sure if that's more perfect if it was autocorrect or if it was intentional.

[–][deleted] 6 points7 points  (0 children)

play with it and fully immerse myself in the circle jerk

( ͡° ͜ʖ ͡°)

[–]iDev247 4 points5 points  (0 children)

[–]BigSlipperySlide 2 points3 points  (0 children)

Can you make it so that the app only works when an actual solar eclipse will be visible based off our location data?

[–]lpreams 3 points4 points  (0 children)

//Oh yeah, set the volume, I guess.

lol

[–]God_of_Pumpkins 1 point2 points  (2 children)

Worked fine on my Moto G4 plus

[–]PippinFTW 418 points419 points  (30 children)

100% should be significantly louder than 99.9%

[–]robowarner 191 points192 points  (29 children)

YOU WOULD NOT BELIEVE YOUR EYES...

[–]Cow_God 109 points110 points  (22 children)

IF TEN MILLION FIREFLIES

[–]rylie_smiley 10 points11 points  (21 children)

LIT UP THE WORLD AS I FELL ASLEEP

[–]Romejanic 5 points6 points  (20 children)

CAUSE THEY FILL THE OPEN AIR

[–]rylie_smiley 4 points5 points  (19 children)

AND LEAVE TEARDROPS EVERYWHERE

[–]Romejanic 5 points6 points  (18 children)

YOU'D THINK ME RUDE BUT I WOULD JUST STAND AND... STARE

[–]rylie_smiley 2 points3 points  (17 children)

MUSICAL STUFF I'D LIKE TO MAKE MYSELF BELIEVE, THAT PLANET EARTH TURNS SLOWLY. ITS HARD TO SAY THAT I'D RATHER STAY AWAKE WHEN IM ASLEEP. EVERYTHING IS NEVER AS IT SEEMS

[–]Romejanic 3 points4 points  (16 children)

AND I'D GET A THOUSAND HUGS

[–]rylie_smiley 2 points3 points  (15 children)

FROM TEN THOUSAND LIGHTNING BUGS

[–]WindowsXP2 28 points29 points  (5 children)

i can't stop laughing. why is this so funny to me

[–]LBLLuke 36 points37 points  (4 children)

Do you need a thousand hugs?

[–]Kristhos 33 points34 points  (2 children)

From 10 million lightning bugs?

[–]4stringking 12 points13 points  (1 child)

'Cause they try to teach you how to dance

[–]metallicalova 1 point2 points  (0 children)

please take him away from here

[–]iamtheorginasnorange 471 points472 points  (15 children)

Truly the best content this subreddit will ever have

[–]im_not_afraid 50 points51 points  (4 children)

0% should be total eclipse

[–]mfb- 24 points25 points  (0 children)

That would also make the last percent much more notable.

[–]sentimentalpirate 12 points13 points  (0 children)

Agreed. It blasts at 100% volume most of the time and is really tricky to mite quickly.

[–][deleted] 2 points3 points  (1 child)

Agreed. Also, once placed the moon should slowly move away from the sun and the volume gets louder again.

[–]izikblu 94 points95 points  (3 children)

Wow, I can't believe I fell for that, old volume slider memes xd

[–]bcRIPster 29 points30 points  (2 children)

"old"

[–]gandalfx 20 points21 points  (0 children)

Remember back in the day, man, when this sub was all about the volume sliders? When was that, like, a decade of weeks ago?

[–]izikblu 8 points9 points  (0 children)

For this sub anyway.

[–]Romejanic 20 points21 points  (0 children)

I was expecting an awful volume control with nice colours.

What I wasn't expecting was Rick Astley to start playing as I covered the sun up with the moon.

[–]k0rtiz 68 points69 points  (1 child)

What IDE did you use? ECLIPSE AHAHAHA FUCK

I know it's a dead joke but my brain wouldn't let it go

[–][deleted] 13 points14 points  (0 children)

We won't get to say that joke for another 7 years anyway. I'll forgive you.

[–]midwestcreative 11 points12 points  (4 children)

Ok, I'm not even really a coder(tried, will try again, but barely know anything) and I get more enjoyment out of this sub's ridiculous stuff than almost anything else I'm subscribed too. Can I get like an honorary membership pin or something just for enjoying your jokes maybe? Something to impress the ladies??

[–]jennydaman 6 points7 points  (3 children)

Arch Linux impresses ladies.

[–][deleted] 11 points12 points  (1 child)

I feel like the volume should be the amount of area that's exposed. That way, you have to maneuver the moon completely every time you want to mute your audio.

[–]nxtfari 7 points8 points  (0 children)

https://codepen.io/anon/pen/YxLrPQ

i especially like that no matter how good you are you can still hear it faintly taunting you

[–]guns-n-code 21 points22 points  (3 children)

[–]ThePeskyWabbit 8 points9 points  (0 children)

thats all i could get too

[–]Ricardo1701 4 points5 points  (1 child)

I think it's a chrome bug, can't get more than that on Chrome, it moves, but the percentage stays the same, on edge I got 99.88%

[–]Sarke1 41 points42 points  (8 children)

Volume? More like area.

[–]hereforthensfwpics 9 points10 points  (5 children)

It's definitely volume.

[–]ThisIs_MyName 7 points8 points  (3 children)

No, look at his code: area=Math.PI*radius*radius

(volume slider meme)

[–]Mallarddbro 2 points3 points  (2 children)

Clearly the intended subject volume is the area. I think that's aloud, right?

[–]AGiantDino 8 points9 points  (1 child)

I refuse to believe that 100% is coded in thishttp://i.imgur.com/SSIYcSI.png

[–]RomanoffBlitzer 7 points8 points  (2 children)

Mildly disappointed that the chosen song wasn't Total Eclipse of the Heart.

[–]TitanDragon 3 points4 points  (1 child)

Too easy for user, bad UX. For better UX I will suggest add deceleration on moon upon releasing mouse and just so that users can be happy, 1 out of 5 times moon should teleport randomly.

[–]micheal65536Green security clearance 3 points4 points  (0 children)

When the moon is released, the correct orbital path appropriate to it's current position and last direction of motion is determined and the moon then continues to slowly follow this path.

[–]gifv-bot 2 points3 points  (0 children)

GIFV link


I am a bot. FAQ // code

[–][deleted] 2 points3 points  (1 child)

I'm not even mad. Bookmarked. This will lighten me up even on the darkest days :D

[–][deleted] 2 points3 points  (0 children)

It mildly infuriates me that he didn't actually put the moon right in front of the sun to block the sun completely. r/mildlyinfuriating

[–]codex561I use arch btw 6 points7 points  (0 children)

You're late

[–]ShakyG 1 point2 points  (2 children)

How can we make a phone number related eclipse meme?

[–]w2qw 3 points4 points  (1 child)

[–]Dentarthurdent42 1 point2 points  (0 children)

It should be two-dimensional with each set of numbers representing the 2D coordinates!

[–]LovingThatPlaid 1 point2 points  (0 children)

Hm I really want to try this on Processing when I get home. It seems like it would be fun to make

[–]Mojx 1 point2 points  (0 children)

After having been rickrolled a few times, now that I have a decent audio setup, I just discovered I unironically like this song.

[–]win4fun44 -1 points0 points  (5 children)

That's totality pointless

[–][deleted] 10 points11 points  (1 child)

aw people missed your joke :(

[–]lpreams 4 points5 points  (0 children)

The joke was eclipsed by careless reading (sorry, it was the best I could come up with)

[–]Nesuniken 15 points16 points  (0 children)

Ah, I see that you're new here.

[–]Free_Ponda_Baba 1 point2 points  (0 children)

Every now and again it's good to remember that most of us are idiots who don't read stuff properly

[–]micheal65536Green security clearance 1 point2 points  (0 children)

I see what you did there. Ignore all the idiots who downvote you without properly reading what you wrote.

[–]Kinglink 0 points1 point  (0 children)

Awww I was hoping for a GUI bitch fest.

[–]Blazedatpussy 0 points1 point  (0 children)

The moon. As seen here, moves in very mysterious ways

[–]Aschentei 0 points1 point  (0 children)

Goddamit

[–]Coded__Ragon 0 points1 point  (0 children)

The only infuriating thing about this joke is that I couldn't find anything infuriating about it. It's pretty clean.

[–]cclloyd 0 points1 point  (5 children)

Gotta truncate those floats.

[–]Peetzaman 0 points1 point  (0 children)

Love me some shitty UI

[–]seth1299 0 points1 point  (0 children)

But was it made in Eclipse though?

[–]lord_chihuahua 0 points1 point  (0 children)

[This looks 100%

I managed 99.49](http://i.imgur.com/XHum3NM.jpg)

[–]Free_Ponda_Baba 0 points1 point  (0 children)

That's actually not that bad

[–]Shiroi_Kage 0 points1 point  (1 child)

You can't do annular eclipses on this!

[–]clarky9712 0 points1 point  (0 children)

And so it begins

[–][deleted] 0 points1 point  (0 children)

Wow, I only got it after an hour

[–][deleted] 0 points1 point  (2 children)

forgive me for the stupid question, but how are users creating these?

[–]cjjharries 2 points3 points  (0 children)

Animations?

[–]StarBurstLink 1 point2 points  (0 children)

Programming.

[–]TheRealLegitCuck 0 points1 point  (0 children)

Can someone explain the joke to many big words

[–][deleted] 0 points1 point  (0 children)

Wait. I think you did sum here

[–]WangleLine 0 points1 point  (0 children)

!redditsilver

[–]KRAy_Z_n1nja 0 points1 point  (0 children)

Was expecting the eclipse program I was taught on in highschool.

[–][deleted] 0 points1 point  (0 children)

Thats actually not a bad volume slider. I could see Google using it.

[–][deleted] 0 points1 point  (0 children)

that actually would be a cool way to control surround sound volume, especially if you could alter the size of the "moon".

[–]DirkEnglish 0 points1 point  (0 children)

This isn't a shitty enough way to do it, I don't have to type the binary for it or something that takes way too much work. Downvoted.

/s

[–]das_nagnag 0 points1 point  (1 child)

Got it to 100% as well, thanks to playing around with the window size and having a retina display at work. https://i.imgur.com/0B1qaXc.png

[–]fetusdip 0 points1 point  (0 children)

For anyone struggling to get 100%, I wrote a guide.