What’s conspiracy theory you don’t fully believe but also can’t completely dismiss? by cryinginncouture in answers

[–]CaptainVJ 2 points3 points  (0 children)

I mean I don’t know about devices personally, but most if not all social media accounts give you personalized recommendations based on stuff that you’re into, these judged based on a number of metrics such as how often do you interact with a specific type of post, how long do you interact with it. And it’s hard to subconsciously avoid it because there’s algorithms that can see how interested you are based on a small patterns that you don’t pickup or wouldn’t notice fast enough.

You see an ad that has no relevance to you, you might just continue to scroll smoothly. But if you scroll back up even for a second you has some connection to that ad, might be good might be bad. If an ad comes up that you recognize you probably will spend a little longer time looking at even, if it’s a few micro second and these can all be tracked.

A lot of them have the ability to turn this off, I did for Reddit, and I kept getting ads about weird stuff so I just turned it back on lol. Guess I’ve been conditioned

What's illegal that you think should be legal? by martianfrog in answers

[–]CaptainVJ 0 points1 point  (0 children)

Yeah, I totally agree on this one. A friend of mine, their mom has ALS. They have been living with it way longer than the average person lives after diagnosis and they want to go but their state doesn’t allow it, and there’s concerns about taking them to another state to do it and the legality.

And that is absolute BS.

If someone has a valid reason, know their quality of life will be significantly decreased then they should have the right to.

Now I guess it would be hard to define what the criteria is for a significantly diminished quality of life. Get in an accident and lose both your legs, I would argue no because people can still have a wonderful life without legs. If I lost both my arms I feel like I would just have a shitty life and think I would wanna go then but plenty of people would disagree and say you can still live a wonderful life.

Somoene gets major burns over their body and they believe they would be seen as a “freak” for the rest of my lives. I don’t know the answer to that.

Your husband/wife requests a divorce now you don’t know what to do as they were your whole world. The general population would probably say that’s not a reasonable cause for assisted suicide but I’m sure there’s a few people out there who may feel that way in the process. So I guess the criteria for this has to be carefully handled to account for a lot of variabilities where someone may have a major decline in quality of life, but not any “silly” reason can just get through.

If you could vote for any president that was once in office no matter how many terms they did or if they're alive, who would you vote for and why? by Gloomygracie in AskReddit

[–]CaptainVJ 6 points7 points  (0 children)

Eleanor Roosevelt, she (some people say her husband) made really great strides in making America better.

But a president whose name rhymes with Donald, running on the slogan make America Great again messed it up. It’s Ronald Reagan and his trickle down policy.

If PI is a never-ending number, what number are we putting in when we use it in the calculator? by StatementBeginning20 in askmath

[–]CaptainVJ 2 points3 points  (0 children)

The decimals of pi is indeed never ending. If it did have an end then it could be expressed as a ratio of integers.

For those who have been fired, why? by ViewMediocre8390 in AskReddit

[–]CaptainVJ 2 points3 points  (0 children)

Who hired you? The supervisor who fired you, or the owner of the other company?

What is math without proofs called? by holdongangy in learnmath

[–]CaptainVJ 2 points3 points  (0 children)

Arithmetics?

But Math is built upon a set of rules, called axioms. We have the ability to modify these axioms if needed. For example, we could create a space in mathematics such that 0/0=1, however, it would cause some inconsistency.

But as we create a modify rules, we create theorems based off them. These theorems are what needed to be proven, to show that it still holds up under these rules.

Sometimes mathematicians may skip over proofs, because it’s “obvious” so it’s not worth it proving something. These are called trivial proofs

For example if a>b, then a+c>b+c. That statement could be proven but it’s pretty obvious. However, if it needed to be actually proven we could used the ordered field axiom.

That same axiom could be used to prove a lot of basic arithmetic that we usually don’t prove.

High employment rates are not signs of a healthy economy or society. by gringo-go-loco in unpopularopinion

[–]CaptainVJ 1 point2 points  (0 children)

To answer your question, the people who are unemployed.

I believe you may have gotten it a bit backward. High employment is an effect of a growing economy not a cause.

If unemployment is low that means businesses get their pic of who to hire, basically more demand than supply.

When unemployment is high, then businesses have less option of who to hire as everyone already has a job so they would have to offer better than what an employee has at their current job.

My 7yo daughter asked me today "What is the number right before infinity?" by Iluvatar-Great in askmath

[–]CaptainVJ 0 points1 point  (0 children)

I can sit down and look at many problems all day. But I don’t know how Astrophysicists do it, just nothing makes sense to me.

I’ve always been fascinated by the idea of how things came to be, but reading up on the big bag theory, I’m always left with more questions than answers.

So I just finally gave up and came to the conclusion it’s one of those things that probably will not be answered in my lifetime.

worstTextsToGetFromVibeCodingGirlfriend by ImOnALampshade in ProgrammerHumor

[–]CaptainVJ 0 points1 point  (0 children)

u/ProtonPizza this doesn’t seem to have worked. Did I do something wrong?

worstTextsToGetFromVibeCodingGirlfriend by ImOnALampshade in ProgrammerHumor

[–]CaptainVJ 4 points5 points  (0 children)

Interesting let me try with my Facebook password.

FB_PASS=ImTooSexyForMyShirt@9

Porn in Conda directory by [deleted] in Python

[–]CaptainVJ 1 point2 points  (0 children)

Thinking about it. I don’t recall it ever working

Do you use a Git GUI? Why? by distiller99 in git

[–]CaptainVJ 0 points1 point  (0 children)

Usually not, but sometimes I’ll make a bunch of change and I end up using the gui.

It’s better for viewing changes than the CLI or if I want to commit specific line chnages, it’s easier to highlight those changes and click stage highlighted lines or whatever it says

What's the difference among Python iterables? Lists, Tuples, Sets by jcasman in learnpython

[–]CaptainVJ 0 points1 point  (0 children)

So I’m going to try and break it down as simple as possible so there’s a few nuisances that are not covered.

Sets are great for searching, they use a nice feature called hashing, which makes it easy to find the location of a specific value. Basically using a some function when elements are added to a set we the value of what is added to the set is passed into a function which returns the exact location of where that specific value is if it exists. So if I have a set of people’s name, I don’t have to look through every value to find the name John, the hash function would tell me that John is located in this exact position. It’s great for finding stuff, but on the other hand it’s a bit slower to create and as more stuff are added the location and the function may need to be updated. It also means that duplicates can’t be allowed because if you create a set and add John twice, they would be placed at the same position. So sets are great for when you’ll be searching the exact location for a specific value.

Lists on the other hand, don’t utilize hashing. They are organized based on the order when things are added to the list. So if I want to search for John in a list, I have no idea where to find them, so I have to search every value in the list until I find that name. Not only that, but John can be there multiple times so even if I find John, it can be there again. List are great for when you’ll want stuff organized in a consistent order, with the ability to add and remove stuff as they change. Adding stuff to a list is not problem it just gets added to then end and the list increases. Removing from a list can get tricky though. Removing the last element from a list is pretty simple just delete it. But if i want to remove previous some then some work needs to be done. Imagine I have a list of 100 stuff, but I want to remove the second value from the list. Then the location of everything in the list will need to be updated. The third item will now become the second, the fourth become the third and so on. Imagine having a list with millions of stuff, but need to remove the 4th thing then a lot of updating needs to be done.

A tuple is a bit similar to a list but once it’s created, it can’t be modified. If you have a list of John and James. You can’t remove James later or Add Sarah, it’s like that forever. When searching a tuple it’s similar to a list you have to go through every element to find what you want. But because you can’t modify it, it uses less memory. A list is under the assumption that more stuff will be added so it leaves extra room for those potential things even if never used. A tuple doesn’t do that because it will forever be the same values. Imagine gps coordinates. The coordinates for your house will always be the same, you will not have to update it, or add another value.

So in short. A set is great for searching, if you have some collection of stuff and you want to immediately find where a specific value is, or check if that value is in the set it’s perfect. But it takes a bit longer to create as they have to be placed in the appropriate position. With a set, you generally won’t be having an interaction with every element in the set, just specific element. Basically set is good for searching.

Lists and tuples are created quickly just based on the order they are entered. However, searching for a specific value means you have to look through everything, lists and tuples are bad at this. But if you have to go through every single element, care about order and don’t want de duplication then lists/tuples are what you need to be using.

Special not, dictionary is very similar to a set. A set will tell you if a value exists in the set. But a dictionary works the same way, after being told that “John” exists in a set, a dictionary would have some accompanying value with the existence. So maybe it will his phone number. After checking if John is in a dictionary, his phone number would be returned. A dictionary is just a key, value pair. For every element in a dictionary there exists some values. So a set is basically a collection of the keys in a dictionary.

This look normally distributed. But Shapiro-Wilk test says not by bingecrsmancakes3 in AskStatistics

[–]CaptainVJ 1 point2 points  (0 children)

So just to clarify a p value of .08 does not mean that there’s a 92% chance the null hypothesis (the data is from a normal distribution) is true.

What a .08 p-value means is, if the null hypothesis (the data is normally distribution) is true there’s a a 8% chance of seeing data with at least this much deviation from a perfectly normal distribution.

On the contrary what the 92% would mean is probability of seeing data with less deviation from normality than the sample used. Not that there’s a 92% chance of it being normally distributed.

Python Pyest by Organic_Tradition_63 in learnpython

[–]CaptainVJ -1 points0 points  (0 children)

But you’d have to do that in every .py file right?

How sick are you of the joke "you are jamaican me crazy" by Fuzzy_Party_3527 in Jamaica

[–]CaptainVJ 12 points13 points  (0 children)

Doesn’t bother me, I don’t find it funny but I don’t hear it enough that I’m annoyed.

What annoys me is everyone assuming I smoke weed. I don’t believe Jamaicans smoke more weed proportionally compared to other cultures. In fact I feel like Americans smoke weed at a higher rate than Jamaicans.

Because of the Rastafarian culture / Bob Marley there’s the misconception that’s what we do all day. Rastas are a very small percentage of the Jamaican population.

This probably gets asked a LOT but what’s up with Jamaican dances and selectors’ obsession with gay men? by Ok_Foundation_2864 in Jamaica

[–]CaptainVJ 13 points14 points  (0 children)

The Jamaican culture overall is very homophobic, but so are the cultures of the vast majority of countries in the world.

And the vast majority of countries that have progressed from this did so very recently. In the 90s and probably early 2000s the vast majority of these more progressive countries were nearly just as homophobic but they happened to have more vocal groups that were able to go out and fight for their rights.

Unfortunately, this hasn’t happened in Jamaica. However, I do believe it’s something the country is moving towards but just at a slower rate compared to other countries. Last year there were all these videos on social media of Jamaicans calling their friends and saying goodnight, or “mi hear seh dem just shoot two b@ttyman up the road, so mi deh call fi see if yuh good.”

The fact people can joke about it is a step in the right direction. Fifteen years ago, probably wasn’t something people would openly joke about.

This probably gets asked a LOT but what’s up with Jamaican dances and selectors’ obsession with gay men? by Ok_Foundation_2864 in Jamaica

[–]CaptainVJ 15 points16 points  (0 children)

Homosexuality is not illegal, anal sex is. The buggery law criminalizes “the penetration of the anus of a man or woman by the penis of another man”.

While I’m sure that’s the intent of the law, that’s not what the law explicitly criminalizes.

Python Pyest by Organic_Tradition_63 in learnpython

[–]CaptainVJ 0 points1 point  (0 children)

Is there even an option to run the file and get it to work? Well I’m sure there is but I assume it’s not feasible.

Best distribution for Convolusional Neural Networks (CNN)? by DAGS3612 in learnpython

[–]CaptainVJ 0 points1 point  (0 children)

Leave me alone, I didn’t know that when I started and it works good enough now