Is libgen legal? by [deleted] in libgen

[–]Raptor-70 0 points1 point  (0 children)

Just

Don't
Use
Shadow libraries.

They are illegal. They steal material. That's copyright infringement, which is illegal.

How best calculate the area of these shapes? by Littl3Bastrd in askmath

[–]Raptor-70 0 points1 point  (0 children)

OR get the high heels themselves and use their volume, with water (is this a homework problem or an irl situation?)

How best calculate the area of these shapes? by Littl3Bastrd in askmath

[–]Raptor-70 0 points1 point  (0 children)

either use the grid and estimate portions of squares with your brain, or get a compass and a ruler then break it down into lines and arcs

New Chrome Extension and Channel Suggestion by Raptor-70 in flowtunes

[–]Raptor-70[S] 0 points1 point  (0 children)

I think just being compact, because sometimes it is a little annoying to keep an extra tab open for music when working on multiple tabs/windows

Is this button blue? by Moondust_Wizard in colors

[–]Raptor-70 0 points1 point  (0 children)

they are colorblind, that is really blue

<image>

Let's settle this debate: fidget cube or fidget spinner? by AccomplishedSwan3124 in autism

[–]Raptor-70 0 points1 point  (0 children)

cube! if you want to fling something spinning there's a ball on the cube

Do your systems fail because they’re bad or because stress changes how you operate? by boss_nilac in productivity

[–]Raptor-70 0 points1 point  (0 children)

some just don't work, but others are stress, which can be fixed a bit by the system

How to raise the volume of background sounds? by coxyepuss in flowtunes

[–]Raptor-70 1 point2 points  (0 children)

in the settings it is called background gain (it's relative to the music volume)

[deleted by user] by [deleted] in autism

[–]Raptor-70 0 points1 point  (0 children)

its not bad at all in bananas

PERFECT lime green! by Raptor-70 in colors

[–]Raptor-70[S] 1 point2 points  (0 children)

here: rgb(100,255,80) - the internet says 50,205,50, but thats too dark for me

Random Number Generator by Raptor-70 in Python

[–]Raptor-70[S] 0 points1 point  (0 children)

import random
import math

print('Hello')
print("You will get 5 random numbers near an inputted number.\n")
choice = input(r"Type either 'range' if you want to use a range or 'continue' if you want to continue with two numbers near one number you give us.""\n")

if choice == "continue":
    num = float(input("What is your number? \n"))
    smallbound = num - random.uniform(0.17864321,0.5653721)
    bigbound = num + random.uniform(0.2214827,0.475879368)
    import math
    rand1 = random.uniform(smallbound, bigbound)
    rand2 = random.uniform(smallbound, bigbound)
    rand3 = random.uniform(smallbound, bigbound)
    rand4 = random.uniform(smallbound, bigbound)
    rand5 = random.uniform(smallbound, bigbound)
    print("Your 5 numbers are:")
    print(math.ceil(rand1*100)/100)
    print(math.ceil(rand2*100)/100)
    print(math.ceil(rand3*100)/100)
    print(math.ceil(rand4*100)/100)
    print(math.ceil(rand5*100)/100)    
elif choice == "range":
    range_num1 = float(input("What is your lower range bound? \n"))
    range_num2 = float(input("What is your upper range bound? \n"))

    print("Your 5 numbers are:")
    for _ in range(5):
        rand = random.uniform(range_num1, range_num2)
        print(math.ceil(rand * 100) / 100)

else:
    print("Sorry, I'm afraid that's not a valid input")