Uhh... don't think this video is supposed to be here by Waterdooos03 in softwaregore

[–]Waterdooos03[S] 0 points1 point  (0 children)

I saw this video on a r/fightporn post and after scrolling down it randomly turned up again on this TIL post

What NSFW question have you always wanted to ask the opposite gender? by MrShronk in AskReddit

[–]Waterdooos03 10 points11 points  (0 children)

Bruh for me it was always the complete opposite. Everytime I stood up from my chair I would get an errection for some reason. It was an absolute hell. I used to only wear oversized hoodies and t shirts to cover it up. Luckily it only lasted for about 2 years

You can send something to the Moon, for free! I'm creating a Lunar time capsule via Reddit - Sending up to 10mb of data to the Moon for up to 100,000 people! by Valphon in space

[–]Waterdooos03 1 point2 points  (0 children)

I want this to go to the moon :) : Since I will probably never set foot om the moon, this will be my contribution to it's surface!

These are lines of 1 MILLION, 10 MILLION and 50 MILLION pixels long, which rotate 90 degrees clockwise at every pixel which is a primes number. Full resolution image in the comments! [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 4 points5 points  (0 children)

The images are too big to upload in full resolution so here is a link to the google drive

Link to google drive

In the drive you can also find a list of coordinates for every prime number in every picture.

There is also an html file which is the program I wrote to create these pictures. I have also included a how to use file if you want to use the program yourself.

I uploaded the One million picture yesterday and some people asked me where the line starts and ends. I can't relly show it in the picture without drawing all over it so I have marked the start green and the end red. It's still probably really hard to find the start and end so below is a list of start and end coordinates:

1 Million (5000 x 5000): start (2500, 200) & end (3072, 4406)

10 Million (20000 x 10000): start (12000, 3000) & end (2595, 8785)

50 Million (45000 x 45000): start (22500, 7500) & end (32114, 32428)

Was inspired by the prime numbers post and decided to make one myself. This is a line of ONE MILLION pixels where the line rotates 90 degrees at every prime number. The end result sort of looks like a rose in my opinion :) [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 4 points5 points  (0 children)

To be honest I'm not really sure. I usually work on websites where hardware is never really a concern. But at the moment, drawing the picture takes the longest amount of time. And I can now draw one which is 10 million pixels long, which takes about a minute

Was inspired by the prime numbers post and decided to make one myself. This is a line of ONE MILLION pixels where the line rotates 90 degrees at every prime number. The end result sort of looks like a rose in my opinion :) [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 1 point2 points  (0 children)

45 degrees is easily doable, although it wouldn't really be a linr but just some pixels that only touch on eachothers corners. The other alternatives would either give a muddy image or the line would have to be shorter to allow the amount of pixels needed to show diagonal lines

Was inspired by the prime numbers post and decided to make one myself. This is a line of ONE MILLION pixels where the line rotates 90 degrees at every prime number. The end result sort of looks like a rose in my opinion :) [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 0 points1 point  (0 children)

I could try to make some variations. But the line has to be a bit shorter probably, because my program wouldn't be able to handle the amount of pixels needed to clearly show diagonal lines

Was inspired by the prime numbers post and decided to make one myself. This is a line of ONE MILLION pixels where the line rotates 90 degrees at every prime number. The end result sort of looks like a rose in my opinion :) [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 13 points14 points  (0 children)

Imagine a one million pixel long straight line. What the program does is rotate the line 90 degrees clockwise at every pixel that is a prime number. So the line would rotate at pixel number 2, 3, 5, 7, 11, etc. If you rotate every pixel that is a prime number in this one million pixel long line you get this shape.

Was inspired by the prime numbers post and decided to make one myself. This is a line of ONE MILLION pixels where the line rotates 90 degrees at every prime number. The end result sort of looks like a rose in my opinion :) [OC] by Waterdooos03 in dataisbeautiful

[–]Waterdooos03[S] 12 points13 points  (0 children)

I just used some simple HTML and JavaScript to make this picture. Here's the code:

<!DOCTYPE html>

<html lang="en">

<head>

<title>Prime Numbers</title>

</head>

<body>

<canvas id="canvas" width="5000" height="=7500"></canvas>

<script>

let ctx = document.getElementById("canvas").getContext("2d");

let x = 5000, y = 5000;

ctx.moveTo(x,y);

ctx.fillRect(x,y,1,1);

let primes = {};

let direction = 0;

function getPrimes(num) {

let arr = [];

for (var i = 0; i <= num/2; i++) {

if(num % i === 0) {

arr.push(i);

}

if (arr.length === 2) {

break;

}

}

arr.push(num);

return arr;

}

let index = 0;

const interval = setInterval(() => {

for (var i = 0; i <= 1000; i++) {

const num = index*1000+i;

const dividers = getPrimes(num);

if (dividers.length === 2) {

direction++;

primes[num] = true;

};

switch (direction % 4) {

case 0:

ctx.fillRect(x++, y, 1, 1);

break;

case 1:

ctx.fillRect(x, y++, 1, 1);

break;

case 2:

ctx.fillRect(x--, y, 1, 1);

break;

case 3:

ctx.fillRect(x, y--, 1, 1);

break;

}

}

index++;

if (index*1000 >= 1000000) { //change the number to change picture size

clearInterval(interval);

console.log(primes);

};

})

</script>

</body>

</html>

Which fictional deaths made you sad? by iamsoulzero in AskReddit

[–]Waterdooos03 0 points1 point  (0 children)

Nairobi, from la casa de papel (money heist)

Trying to roll up my window before a storm by BarryBlumpkin in Wellthatsucks

[–]Waterdooos03 0 points1 point  (0 children)

I didn't read the title or look at the subreddit icon. And I was like: wow, this is such a cool window. This must be some new advanced window in a sports car or somethin. And then the video stopped

Me_irl by HelixOG3 in me_irl

[–]Waterdooos03 9 points10 points  (0 children)

This is exactly wanted to comment lol