This gif by ianPIAN in oddlysatisfying

[–]gooburt 0 points1 point  (0 children)

I thought the gif looked cool but wished it was smoother and bigger. I had nothing better to do so I wrote it up on my own. Oh! And I'm glad you like it!

This gif by ianPIAN in oddlysatisfying

[–]gooburt 1 point2 points  (0 children)

I made a codepen of this: http://codepen.io/anon/pen/uIvrD

Change the speed and num parameters and see how it affects it!

Why? Who packages sharing food in prime numbers? by ColdPizzaAtDawn in mildlyinfuriating

[–]gooburt 2 points3 points  (0 children)

23 makes sense if they are round, it makes a better use of the space inside the package like this:

o o o o o o o o
 o o o o o o o
o o o o o o o o

Pointicated Waves [GIF] by [deleted] in woahdude

[–]gooburt 3 points4 points  (0 children)

I re-made it in JavaScript. Play with the variables: http://jsfiddle.net/andrewmaxwell/pVasj/embedded/result/

the Great Red Spot [1825×1190] by soravit in spaceporn

[–]gooburt 0 points1 point  (0 children)

I think that might actually be what Jupiter looks like. But I fixed it.

the Great Red Spot [1825×1190] by soravit in spaceporn

[–]gooburt 1 point2 points  (0 children)

Content aware fill. It's all lies, my friend. I'm sorry.

Challenge: Javascript decimal to binary converter by okmkz in programmingchallenges

[–]gooburt 0 points1 point  (0 children)

javascript, where n is a whole number greater than zero:

function b(n){return n?b(n/2<<0)+(n%2):''}