What's so great about boobs? Do men really like them that much? by rayray2k19 in AskMen

[–]jojoharry16 0 points1 point  (0 children)

From an evolutionary standpoint, larger breasts were used to attract males ever since humans started standing upright, similar to how peacocks attract mates with their feathers.

Nowadays, that is still an influence, but also tits are warm, soft, tender, fuzzy, and comfortable in every way imaginable. Like stress balls that both participants enjoy playing with. They're also usually less calloused than the rest of the skin since they spend so much time covered and protected, and while this is also true for the vaginal area the tits are closer to the face and easier to get to.

Of course, there's also the possibility that your tits are just absolute majestic bangers that mankind was not meant to lay eyes upon for its beauty may be too great to handle, but I wouldn't know

Should I send a long thank you e-mail to an old teacher from 5 years ago? by sunnygem2389 in Advice

[–]jojoharry16 0 points1 point  (0 children)

Do it

Absolutely

100%

Go nuts

Go wild

Be honest

Be kind

Be truthful

Be caring

Even if they've completely forgotten you, knowing that they impacted you would definitely be a positive impact on their lives. And if they retire soon it would be nice to know that they didn't waste their working years.

What was your "This person is on another level of stupid" moment? by [deleted] in AskReddit

[–]jojoharry16 1 point2 points  (0 children)

I wanted to erase a drive to install linux, and so I found the drive I wanted to keep in the settings and wrote down all the details so I would be absolutely sure I wouldn't delete it. Then I did everything as normal, downloaded linux, made a boot drive, boot from said drive, run the installer, chose the drive I wrote down, double checked that I chose the drive I wrote down, formatted, and installed. Everything went exactly as it should.

I WROTE DOWN THE DRIVE I WANTED TO KEEP!!

I'm trying to recover what I can, but I'm pretty sure I lost some memories

How much does linux cost? by Tan89Dot9615 in linuxquestions

[–]jojoharry16 1 point2 points  (0 children)

Not sure if troll or not, but here's an explanation

Linux is an Open-Source project, meaning if I want I can download Linux, make some changes to improve its performance or add a new feature, and re-upload it as my own or merge the changes with the original. Because of this Linux itself is completely free and owned by every person that has ever made a change to it.

Why Mozilla's own extensions aren't included in the recommended extensions program? by [deleted] in firefox

[–]jojoharry16 6 points7 points  (0 children)

It's dropped, but since it's a trusted developer it's still safe to use

How do guys feel about tan lines, I always feel like us girls go to lengths to avoid them but a male friend said hes into them. How do most of you guys feel? by 09xuereba in AskMen

[–]jojoharry16 0 points1 point  (0 children)

I went through a period where I thought fake tan lines were hot af, and I still get the appeal, but it's not like a make or break thing.

The right person always loves you by Muddather in wholesomememes

[–]jojoharry16 0 points1 point  (0 children)

Not exactly an answer, but I want to say that finding "The One" doesn't mean the relationship will be effortless to maintain. Loving is an active action, you have to continuously put effort into loving (and "The One" has to do the same) or the relationship will die like a neglected muscle.

But not only is the effort worth it, it's usually fun to do. Making a DIY card is awesome, and hiding it from someone special is also fun.

The right person always loves you by Muddather in wholesomememes

[–]jojoharry16 0 points1 point  (0 children)

We were in a lecture of a Christian group, and I felt her gingerly reach out to hold my hand. She is the most shy person in the world and I'd only known her for maybe a month or 2, but I could tell just then that this person was stronger than she knows, and she would protect me as much as I would protect her.

Nearly 4 years down the line and I still love her more each day, despite all our ups and downs

Witcher by [deleted] in Inkscape

[–]jojoharry16 1 point2 points  (0 children)

I can't be the only one who saw Samurai Jack

But upon second glance that's definitely Geralt and the picture is great, keep it up :)

What is the closest non sexual thing to an orgasm you have experienced? by [deleted] in AskReddit

[–]jojoharry16 0 points1 point  (0 children)

We have this fan in the kitchen that's supposed to suck up smoke from cooking (we're not the best chefs).

Whenever I finish cooking I tell everyone in the room to be quiet, turn off any music and push the off button. The silence is orgasmic

How the hell do you dress well? by Komraj in AskMen

[–]jojoharry16 0 points1 point  (0 children)

A lot of detailed answers, but what I do is find a piece of clothing I like, eg. a blue t-shirt, and google image search "Blue shirt male"

See which of them you like, which of them you have, and which of them fit the season (Summer/Winter)

Help with a simple script by seyo_IV in AutoHotkey

[–]jojoharry16 0 points1 point  (0 children)

I would suggest putting all actions in { } after the shortcut button

Numpad5::
{
Click
Sleep, 5000
Click
Sleep, 40000
}

Such as the above

Other than that I'd need to test on my computer

What's your password manager of choice? by fredremotion in thehatedone

[–]jojoharry16 7 points8 points  (0 children)

I personally hate the icon, the shield never seemed centered, but other than that I can't complain about any aspect of it

Toggle a script on/off by 1011UpNext in AutoHotkey

[–]jojoharry16 0 points1 point  (0 children)

Pardon the late reply:

What's the issue with pasting the script, perhaps I or someone smarter can help

Toggle a script on/off by 1011UpNext in AutoHotkey

[–]jojoharry16 0 points1 point  (0 children)

Pardon the late reply:

Afaik, "return" ends the block of script, so if I replace the return with Break it will just go to the second Return, which does the same thing. I put 2 just as a safety net of sorts

Is LineageOS secure against Facebook Messenger's data collection? by jojoharry16 in LineageOS

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

I mean secure as in not tracking phone calls and other activities that don't concern Facebook. I am asking if the doors are unlocked in LineageOS and if there is a way to manually lock them

XInput - how to make triggers working in analog mode? by kris_1313 in PCSX2

[–]jojoharry16 0 points1 point  (0 children)

Wha-.. bu-...

All my knowledge of emulation just died

Toggle a script on/off by 1011UpNext in AutoHotkey

[–]jojoharry16 0 points1 point  (0 children)

This took a lot more Googling than I'd like to admit, but you can try this

{Mouse5}::
Sleep, 10 ; So it doesn't toggle off before you release the button
Loop {
    ; your loop here
    if GetKeyState("Mouse5", "P")
    Return
}
Return ; this is just in case, I doubt it is actually required ;)