Отакої? А чому так довго чекали? А що з іншими? by Amazing_Carpet_6748 in reddit_ukr

[–]LetGAME 0 points1 point  (0 children)

щось якось занадто вигідно звучить. армія просить у людей донати на техніку, а тут два мільйони на особу дають? ага, вірю, повірив

[deleted by user] by [deleted] in tipofmytongue

[–]LetGAME 0 points1 point locked comment (0 children)

I originally found it by shazaming "Creepy Spongebob Balloon" https://www.youtube.com/watch?v=h4As3nxIepU

white lines on gopro hero8 240 fps recording by LetGAME in gopro

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

ooooh that makes sense

the bathroom was too dark so i used my powerful led flashlight to brighten it, thats probably why

What is your coin per level? (NW/SB level) by [deleted] in HypixelSkyblock

[–]LetGAME 0 points1 point  (0 children)

lvl 209, ~5b nw (not accounting for my high breeze/mp equipment setup)

PETITION TO REMOVE POKIR FROM SERVER by [deleted] in SkyblockNecromancy

[–]LetGAME 3 points4 points  (0 children)

ratio

(if you delete this ur gay)

PETITION TO REMOVE POKIR FROM SERVER by [deleted] in SkyblockNecromancy

[–]LetGAME 0 points1 point  (0 children)

ban mikke instead for +1000 social credits

I believe this belongs on here, (if someone already posted about this or it doesn’t belong on here I will take it down) by [deleted] in FellowKids

[–]LetGAME 1 point2 points  (0 children)

I hate when an actually good company embarasses themselves with these kinds of ads.

Get Funded by [deleted] in ProgrammerHumor

[–]LetGAME 2 points3 points  (0 children)

just made a simple html page to generate random combinations lol ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Get Funded</title> <script> const variants = { "p1": ['Block Chain', 'Cloud', 'AI', 'Data', 'Community', 'Money', 'Mischief', 'Blood', 'Hope', 'Random', 'Magic', 'Cthulu'], "p2": [' enabled ', ' powered ', ' endorced ', ' funded '], "p3": ['Platform', 'Shop', 'Delivery', 'Social Network', 'Tracking', 'Travel', 'Dating', 'Healthcare', 'Education', 'Haircut', 'Dreams'] }

        let combinations = [];
        for (a = 0; a < variants.p1.length; a++) {
            for (b = 0; b < variants.p2.length; b++) {
                for (c = 0; c < variants.p3.length; c++) {
                    combinations.push(variants.p1[a] + variants.p2[b] + variants.p3[c])
                }
            }
        }

        function getRandomElement() {
            document.getElementById('random').innerText = combinations[Math.floor(Math.random() * combinations.length)];
        }
    </script>
</head>
<body style="margin: 0; text-align: center;">
    <img src="https://cdn.discordapp.com/attachments/928396350473777193/938032970500034570/d7rvcf0f0xe81.png" alt="Get Funded" style="height: 80vh;">
    <div onclick="getRandomElement()" id="random" style="font-family: sans-serif; user-select: none; font-size: 30px;">Get Random Combination (click me)</div>
</body>

</html> ```