thread_id
stringlengths
6
6
question
stringlengths
1
16.3k
comment
stringlengths
1
6.76k
upvote_ratio
float64
30
396k
sub
stringclasses
19 values
uozb5n
Same question also applies to assisted suicide in general, not just for people with terminal illnesses. Would you support the legalization of such an action in your state or in the country as a whole? Would you only support euthanasia, but not assisted suicide in general?
Without getting wrapped up in the nuances of "euthanasia versus assisted suicide", I support the right to die. So long as the person in question made their wishes known in a legal manner while they were of sound mind, they should have the ability to do so through safe, comfortable means. As for the why, I've seen what terminal and neuro-degenerative diseases can do to people. No one should be forced to live like that.
2,270
AskAnAmerican
uozb5n
Same question also applies to assisted suicide in general, not just for people with terminal illnesses. Would you support the legalization of such an action in your state or in the country as a whole? Would you only support euthanasia, but not assisted suicide in general?
Mixed feelings. On the one hand, freedom. On the other hand, I worry about insurance companies essentially telling people "we won't pay for that life saving surgery, but we will pay for euthanasia." and that troubles me a bit. Like, they already do the first part, but I'm concerned they may start doing that more often. All things being equal though, I think people should be able to choose for themselves rather than having anyone else choose.
1,190
AskAnAmerican
uozbwq
I've got a Java + Spring Boot app that contains microservices that call each other via rest calls. It's becoming really difficult to follow and remember how these services interact. I would like to find (or maybe build) something that can map out these calls so I can easily see what is calling what. Does anything like this exist?
I think this is an active research area, and I don’t believe that any canned open-source solutions exist. That said, [Akita Software](https://www.akitasoftware.com/) has a tool designed for this use-case. I don’t know how much it costs, though.
80
AskProgramming
uozbwq
I've got a Java + Spring Boot app that contains microservices that call each other via rest calls. It's becoming really difficult to follow and remember how these services interact. I would like to find (or maybe build) something that can map out these calls so I can easily see what is calling what. Does anything like this exist?
A tool called solution architect :) someone must be drawing them - for planning, for explaining or for understanding
60
AskProgramming
uozbwq
I've got a Java + Spring Boot app that contains microservices that call each other via rest calls. It's becoming really difficult to follow and remember how these services interact. I would like to find (or maybe build) something that can map out these calls so I can easily see what is calling what. Does anything like this exist?
If you have access to the whole micro service system, I suspect you could probably build it yourself as a medium sized project. You would just need to write some middleware for your REST layer that you would install on all your microservices. You would have that middleware record the relevant sender and receiver of all requests that go through it, along with any other metadata you’re interested in (e.g. name of endpoint called, variables passed, status of response), and spit that info off to a new microservice that would process and store all the metadata for your requests in the system and construct a big graph of the entire ecosystem, where each microservice is a node, and each call from one service to an endpoint on another is a directed edge on the graph. There are generic graph renderers out there already that you could feed the data into probably. Alternatively, if your services are all in kubernetes, I think Datadog has a very basic graph representation of the system that it constructs using traces.
50
AskProgramming
uozidl
Would you say discrete mathematics covers almost the entirety of what you do? I mean, is discrete math enough to meet all your coding related math needs? Generally speaking, discrete mathematics includes: 1.Sequences and Summations 2. Binary and Bases 3. Sets and Set Operations 4. Congruences 5. Permutations and Combinations 6. Counting Theory 7. Proofs 8. Functions 9. Graph theory 10. Statistics (mean,median,mode, standard deviation and Variance etc) 7. Recurrence Relations If not, please tell me what areas of math I should master before I apply for software developer roles?
I have never used calculus in 10 years of development. I *once* had to solve a system of linear equations, and the team just handed that problem because they know I have math degree. Standard application development uses essentially no mathematics. Graph theory *might* come up every once and a while, and you need to do a fair amount of predicate logic in your head to reason about outputs. You can easily be a fully functional software engineer with nothing but high school algebra.
50
CSCareerQuestions
uozidl
Would you say discrete mathematics covers almost the entirety of what you do? I mean, is discrete math enough to meet all your coding related math needs? Generally speaking, discrete mathematics includes: 1.Sequences and Summations 2. Binary and Bases 3. Sets and Set Operations 4. Congruences 5. Permutations and Combinations 6. Counting Theory 7. Proofs 8. Functions 9. Graph theory 10. Statistics (mean,median,mode, standard deviation and Variance etc) 7. Recurrence Relations If not, please tell me what areas of math I should master before I apply for software developer roles?
I did some multiplication today.
40
CSCareerQuestions
uozidl
Would you say discrete mathematics covers almost the entirety of what you do? I mean, is discrete math enough to meet all your coding related math needs? Generally speaking, discrete mathematics includes: 1.Sequences and Summations 2. Binary and Bases 3. Sets and Set Operations 4. Congruences 5. Permutations and Combinations 6. Counting Theory 7. Proofs 8. Functions 9. Graph theory 10. Statistics (mean,median,mode, standard deviation and Variance etc) 7. Recurrence Relations If not, please tell me what areas of math I should master before I apply for software developer roles?
I have 15 YOE working on embedded systems and I have never used any of the math you listed. The amount of math I use in a given year is on the level of 1+1 = 2.
40
CSCareerQuestions
uozm3a
Like did you have to skim the dictionary or buy collections of flashcards or what
They are *cards*. Buy a pack of index cards and make up whatever you need.
250
AskOldPeople
uozm3a
Like did you have to skim the dictionary or buy collections of flashcards or what
Or make your own flashcards
120
AskOldPeople
uozm3a
Like did you have to skim the dictionary or buy collections of flashcards or what
Er, flash cards which are actually printed on cards. lol Or textbooks. That's where the name "card" came from.
90
AskOldPeople
uozqz9
I am new to the programming, and during a recent interview, I was asked about finding one imposter coin from many coins. I answered that we can divide all in two and weight those and by iterations we can finally find the fake coin. Then I was asked how we can scale the same concept but I didn’t had any idea! Do you guys have any idea, what can be the best answer??
Sounds like they're asking you to implement binary search and keep searching for the side that has a weight that is off from what it should be. You can search through a sample size of quintillions in 60 operations using binary search. In a situation like this it would split the groups in half, keep the group that's off weight, split it in half again, go with the group that's off weight, split it in half, etc all the way until you find the single coin that's off. You can test this using a calculator if you'd like and it's also super easy to implement in any coding language. Take a massive number and keep diving it by 2 until you get down to 1 or less. Count the number of times it took to get from say 1 quadrillion to 1 or less by diving by 2. That's how many binary search operations you'd need to do to find that single coin from 1 quadrillion using binary search.
70
LearnProgramming
uozqz9
I am new to the programming, and during a recent interview, I was asked about finding one imposter coin from many coins. I answered that we can divide all in two and weight those and by iterations we can finally find the fake coin. Then I was asked how we can scale the same concept but I didn’t had any idea! Do you guys have any idea, what can be the best answer??
You can actually use 3 piles of coins at a time. Then, if the scales balance, you can eliminate both piles with 1 use of the scale. This also helps if you don’t know if the fake coin is heavier or lighter. If they are not balanced, you swap out the heavier side for pile #3 and, if they balance, you know it is a heavier coin. If not, you know it is lighter.
60
LearnProgramming
uozqz9
I am new to the programming, and during a recent interview, I was asked about finding one imposter coin from many coins. I answered that we can divide all in two and weight those and by iterations we can finally find the fake coin. Then I was asked how we can scale the same concept but I didn’t had any idea! Do you guys have any idea, what can be the best answer??
The problem is stated like this, I suppose. There are N coins in a pile that look identical. One of the coins is fake. You have a scale which has two sides: left and right. You can put any number of coins on the left side and any number on the right side. Here are the rules of scale * The scale either says the left side is heavier, the right side is heavier, or both are equal. * If left scale has X coins and the right scale has Y coins and X > Y, then the left side is always heavier. If Y > X, then the right side is heavier. Let's assume the fake coin is heavier and the scale is sensitive. So if there were 100 normal coins on the left, and 99 normal coin plus the fake heavy one on the right, then the scale would say the right side is heavier because of the fake coin. Your solution is to do groups of 2. In the worst case, if you have N coins and say N is even, is you must weigh N/2 times where you get to the fake coin in the very final weighing. So, one way to do it is to do roughly "binary" search. If N (the total number of coins is even), divide into two stacks of N/2 and weight them. One side has to be heavier, so discard the N/2 that is lighter. If the result of N/2 is even, repeat. If it's odd, take one coin off and split remaining coins in 2 as before. Measure the two. If they are the same, then the coin you removed is the fake coin. If they are not even and split the remaining coins based on whether the total size at that point is even or odd. This gives you roughly log N weighs as you decrease the number of coins at each step by nearly half.
30
LearnProgramming
uozrdw
I'm a recent community college grad looking to start my career. I'm seeing a lot of places ask for TCP/IP but with no explanation as to what that means. Do they just mean basics like IP addressing and subnet masks? Or are they full routing network positions?
They probably don't know, either. As long as you can troubleshoot network connections, that should qualify you. But also, don't base your job choices on everything they put in the description. As long as you can do more than half of it, apply & let them decide whether you're qualified.
130
ITCareerQuestions
uozrdw
I'm a recent community college grad looking to start my career. I'm seeing a lot of places ask for TCP/IP but with no explanation as to what that means. Do they just mean basics like IP addressing and subnet masks? Or are they full routing network positions?
I'd want you to tell me, with confidence, using your own words what all of these mean: IP Address Broadcast Address Default-Gateway Subnet-Mask TCP v/s UDP What are the key differences between these? What application service is usually listening on TCP/80? What is a hosts file and when should it be used? *(Caution: That can be used as a trick question.)* On a windows client, in a command prompt, if I type the command `route print` what will I see, and why is this important? For bonus points or extra-credit: A router has two routes: 10.10.10.0/24 with next-hop of 192.168.4.4 10.10.10.8/32 with a next-hop of 192.168.8.8 A packet enters the router destined for 10.10.10.10. Which router will be it's next-hop? A packet enters the router destined for 10.10.10.8. Which router will be it's next-hop? Why?
60
ITCareerQuestions
uozrg6
Where are some sources that you suggest?
UK has said they would help defend Finland or Sweden in event they are attacked before NATO membership is finalized. Finland and Sweden are also members of the EU, which has security assurances. Russia would be declaring war on Europe, if they attacked Finland. US has no obligations in this context, but would probably offer material support as they have for Ukraine.
230
ask
uozrg6
Where are some sources that you suggest?
Finland kicked their asses the last time that happened.
140
ask
uozrg6
Where are some sources that you suggest?
Finland is being fast tracked in, as we speak (type)
50
ask
uoztr4
People who've divorced, aside from adultery, what were the irreconcilable differences that ended the marriage?
She told me as we stood in front of the judge ending our 7 year marriage, "I never loved you, I just wanted kids."
3,960
AskReddit
uoztr4
People who've divorced, aside from adultery, what were the irreconcilable differences that ended the marriage?
He could not understand that my wants and needs were as important as his wants and needs. We tried to make it work for 7 years. During that time, for things that were really important to me, I tried explaining logically, asking nicely, begging, crying, yelling, passive aggressiveness... cycled back through all of these options multiple times. (If I knew something was important to him, I would do that. For example, he was really into sports, so I went to all his events, even though that is not at all my thing.) When I finally threw up my hands and told him it was time to get a divorce, he suddenly panicked and said "What can I do? Do you want me to do half the chores? I'll do it! Do you want me to get a job? I'll do it! Do you want me to buy you presents for your birthday? I'll do it!" So, in other words, he could have been doing that all along, but just couldn't be bothered. That made me so angry. We could have had a nice marriage that we both enjoyed, but no, by the time he saw the light, that ship had sailed. We are both happily remarried now (to different people) and I joke that his new wife owes me a thank you note. It was his experience with me that taught him to listen to her and take her needs seriously.
3,850
AskReddit
uoztr4
People who've divorced, aside from adultery, what were the irreconcilable differences that ended the marriage?
ITT: Intimacy (sex/romance), beliefs (religion/spirituality/politics), kids, and I haven’t seen it yet but it’s coming: finances. The big four. You REALLY need to discuss these things in detail BEFORE getting married.
2,890
AskReddit
uozzux
Every time I see a new language pops out they mention it's a C-family language. Aren't they all at this point?
> Aren't they all at this point? no. python's indentation rules are becoming more popular. there's always new lisps popping up. the ML (Meta Language) languages are having a greater influence. rust, for example, is actually closer to ML than it is to C.
50
AskProgramming
up0avy
Hello Guys, I hope you all are doing great out there and killing it in real world with your hard work. I am 28M IT service desk analyst who wants to become a system/ cloud engineer. My qualification is Graduate diploma in computing. Current certifications I hold- ITIlV4, Security +, AZ-900, AZ-104, MS-900 & Sc-900. What should I do next in order to become a system/cloud engineer? Should I go for RHCSA? I have no background knowledge in linux. Please tell me what all I need to learn in order to become a cloud engineer. I am a bit lost and need your help, tips, guidance and support. Really appreciate your time and help. God bless you.
Learn automation. Teach yourself IaC, and scripting. Most Cloud engineering jobs all move away from point and click systems, so you'll need to be able to work mainly with code.
70
ITCareerQuestions
up0avy
Hello Guys, I hope you all are doing great out there and killing it in real world with your hard work. I am 28M IT service desk analyst who wants to become a system/ cloud engineer. My qualification is Graduate diploma in computing. Current certifications I hold- ITIlV4, Security +, AZ-900, AZ-104, MS-900 & Sc-900. What should I do next in order to become a system/cloud engineer? Should I go for RHCSA? I have no background knowledge in linux. Please tell me what all I need to learn in order to become a cloud engineer. I am a bit lost and need your help, tips, guidance and support. Really appreciate your time and help. God bless you.
How strong are your Powershell skills? You seem to be on the Microsoft track so it would be a good idea to strengthen yourself there and maybe add on Active Directory knowledge which would give you an edge in Microsoft shops.
50
ITCareerQuestions
up0avy
Hello Guys, I hope you all are doing great out there and killing it in real world with your hard work. I am 28M IT service desk analyst who wants to become a system/ cloud engineer. My qualification is Graduate diploma in computing. Current certifications I hold- ITIlV4, Security +, AZ-900, AZ-104, MS-900 & Sc-900. What should I do next in order to become a system/cloud engineer? Should I go for RHCSA? I have no background knowledge in linux. Please tell me what all I need to learn in order to become a cloud engineer. I am a bit lost and need your help, tips, guidance and support. Really appreciate your time and help. God bless you.
Recently found a pretty cool site by a Microsoft MVP while messing around on YouTube. Check out: [learn to cloud.guide](http://learntocloud.guide) She does a legit breakdown of what being a (MS) cloud engineer entails. Basically you need to know: * Networking * Linux * Cloud * DevOps (for config mgmt and IaC) Anyway check out her site… it’s pretty good!
40
ITCareerQuestions
up0c2w
29 male, I had an inner ear infection late last year that I went to doctor for, they prescribed me antibiotics after reviewing and once I finished the pain in my ear went away. I noticed some time after my hearing getting worst in my left compared to my right. I didn’t think too much of it at first but then it became super noticeable. Laying on my right ear to sleep I couldn’t hear my fiancée next to me what she was saying clearly. I suspected impacted ear wax and tried flushing out my ear to no luck. I lazily put it off, until I noticed when “cleaning” my ears with qtip that I had dry and wet blood in my ear. I finally got a full on ear wax removal kit off Amazon and did that today after doing the 3 days of ear spray to soften the ear wax. I ended up scooping this fucking thing out of my ear; https://imgur.com/a/3Yh2ns7 First off wtf is this and what do I need to do now? Thank you!
It looks like a big chunk of impacted wax. But the blood is unusual. If youxre having pain, go to urgent care, if no pain, make an appintment with your doc to have them look in there and see what's going on.
6,490
AskDocs
up0c2w
29 male, I had an inner ear infection late last year that I went to doctor for, they prescribed me antibiotics after reviewing and once I finished the pain in my ear went away. I noticed some time after my hearing getting worst in my left compared to my right. I didn’t think too much of it at first but then it became super noticeable. Laying on my right ear to sleep I couldn’t hear my fiancée next to me what she was saying clearly. I suspected impacted ear wax and tried flushing out my ear to no luck. I lazily put it off, until I noticed when “cleaning” my ears with qtip that I had dry and wet blood in my ear. I finally got a full on ear wax removal kit off Amazon and did that today after doing the 3 days of ear spray to soften the ear wax. I ended up scooping this fucking thing out of my ear; https://imgur.com/a/3Yh2ns7 First off wtf is this and what do I need to do now? Thank you!
Kinda looks like a blood clot. Had you been picking at/putting stuff in your ears?
1,490
AskDocs
up0c2w
29 male, I had an inner ear infection late last year that I went to doctor for, they prescribed me antibiotics after reviewing and once I finished the pain in my ear went away. I noticed some time after my hearing getting worst in my left compared to my right. I didn’t think too much of it at first but then it became super noticeable. Laying on my right ear to sleep I couldn’t hear my fiancée next to me what she was saying clearly. I suspected impacted ear wax and tried flushing out my ear to no luck. I lazily put it off, until I noticed when “cleaning” my ears with qtip that I had dry and wet blood in my ear. I finally got a full on ear wax removal kit off Amazon and did that today after doing the 3 days of ear spray to soften the ear wax. I ended up scooping this fucking thing out of my ear; https://imgur.com/a/3Yh2ns7 First off wtf is this and what do I need to do now? Thank you!
Pretty cool tbh I wouldn’t worry too much unless your ear gets worse. Gotta stop picking at your ears with shit.
650
AskDocs
up0c7k
I am a sophomore and I have a chance of skipping an assembly programming course which is normally compulsory for us. This will save me time and money. I plan to go in AI or ML in the future. Should I do this?
Assembly language is great for developing attention to detail and developing a better sense of how the computer actually works. So many programming mistakes are careless errors that become hard to find bugs later on.
40
CSCareerQuestions
up0cpp
Why do people always ask where we go after death but no one ever asks where we were before we were born?
Many religions and claims regarding the afterlife do take a view on our existence prior to birth. But people mostly care about the afterlife, because it will happen to them in the future. That is far more of a concern than a previous experience that they can't remember.
5,150
NoStupidQuestions
up0cpp
Why do people always ask where we go after death but no one ever asks where we were before we were born?
I'm assuming you do not have young children. My 4 year old will not stop asking where he was before he was born. Or why he didn't see me when I was a child!
3,440
NoStupidQuestions
up0cpp
Why do people always ask where we go after death but no one ever asks where we were before we were born?
We have been dead far longer than we have been alive. Death is not an ending, but a return.
870
NoStupidQuestions
up0ee7
I've been intrigued in the tech industry after spending much of my downtime at my current desk job looking at different career paths. My job is a safe desk job but I can't let myself get stuck here forever. I was fortunate enough to get a decent entry-level position where a bachelor's is typically a requirement, but I'm itching to pivot into an industry that's constantly changing, challenging my skills, and highly mobile. I simply don't know where to start that would put me in a good position to leap into the field. I have some business credits at a 4yr university and 2yr community college, but that is all I have to show for education. I'm 24 years young with no major financial responsibilities. Should I just go back and finish the 2yr degree (my local CC has an associate CS degree) and start applying? Get the bachelors in CS at around 28? Or screw the degrees and learn the skills and do some projects in my spare time? I have no idea where to start but I am open to any and all suggestions or recommendations.
You should definitely go for the degree. We are heading into a major recession right now and entry level jobs are going to be hard to come by. If you do the degree and really hone your skill you would be coming out in four years right when the market is set to pick up again (assuming Biden isn't re-elected).
40
CSCareerQuestions
up0fgq
I am learning about working with NumPy arrays, and I've written the below code to allow me to replace each instance of 0 with a 9 in a 2 dimensional NumPy array. The code works, but it feels hacky to me - is there a more efficient or more pythonic way of accomplishing this? x_count = -1 y_count = -1 for i in array: for j in i: if array[x_count][y_count] == 0: array[x_count][y_count] = 9 y_count += 1 y_count = -1 x_count += 1
You're not looking for the most pythonic way, you're looking for the actual way to do it with numpy :) If you're looping over all your values in numpy, there's a good chance it can be done another way. Here is the code for your question ```python import numpy as np # Create a 100x100 2d array X = np.random.randint(0,10, (100,100)) # [EDIT from ES-Alexander's comment] # [CORRECT ANSWER] # Replace all values of 0 by 9 # X[condition] = result_if_true X[X==0] = 9 [Alternative] # Replace all values of 0 by 9 # use np.where(condition, result_if_true, result_else) Y = np.where(X == 0, 9, X) ``` I'll add that more often than not to change stuff: 1. you get the group of stuff you need to change 2. you apply that change to that group You don't loop over everything to check and change it individually. Loops are great, I mean, your thing could be done with arrays too: ```python # your numpy array X = np.random.randint(0,10, (100,100)) # your pythony hacky solution Y = [[ xi if xi != 0 else 9 for xi in x] for x in X] ``` TBH idk what's more pythonic, learning the proper way to do things with libraries or just hacking in python with set comprehensions (single line loops)
60
LearnPython
up0g27
In the past people were buried with the items they would need in the afterlife, what would you want buried with you so you could use it in the afterlife?
my glasses! also three tennis balls so i could finally learn to juggle
70
ask
up0g27
In the past people were buried with the items they would need in the afterlife, what would you want buried with you so you could use it in the afterlife?
1UP but before I was actually buried.
30
ask
up0g60
TDLR, my sister let a scammer install teamviewer on her pc and phone. I’ve only ever been ios, so I have no idea how much of a security risk the phone version is. Do I need to wipe it for her or is she good to go? Thanks.
Teamviewer is a tool that allows for remote desktop management, and so it can be used by malicious actors. It's like giving your house keys to some random stranger. Can the keys be held responsible if the house gets robbed?
60
AndroidQuestions
up0g60
TDLR, my sister let a scammer install teamviewer on her pc and phone. I’ve only ever been ios, so I have no idea how much of a security risk the phone version is. Do I need to wipe it for her or is she good to go? Thanks.
Plenty of legitimate businesses use TeamViewer too - we're one of them. But if you're 100% sure that the person/company is a scammer, then I'd recommend deleting it and wiping each device
30
AndroidQuestions
up0hst
What is the most interesting statistic you know?
My favorite statistic, as a left-handed person myself, is that southpaws die, on average, 13 years younger than right-handed people. I had always heard this attributed to the fact that power tools are generally designed for right-handed users, making many of them awkward and dangerous for left-handed people. But the real explanation is far more interesting. See, until the middle of the 20th century, being left-handed was heavily stigmatized, and often viewed as a sign of the devil. Teachers would not allow their left-handed students to actually use their dominant hand. This actually proved to be somewhat effective. So as left-handedness became more accepted, lefty children were no longer forced to use their right hand, but older people who were naturally left-handed but forced to use their right hand continued to identify as right-handed. Because of this, the average age of self-described left-handed people was significantly lower than it would be if not for the previous generation being forced into right-handedness. And when the average age of a group of people is lower, the average age of death tends to follow suit.
3,340
AskReddit
up0hst
What is the most interesting statistic you know?
Racing car drivers in the 1950s, 1960s and even into the 1970s had a *lower survival rate* than WWII fighter pilots. Meaning those racing drivers were statistically more likely to die than those flying in battle. Crazy.
3,180
AskReddit
up0hst
What is the most interesting statistic you know?
That’s the US has 5% of the worlds population but consumes 70% of the worlds prescription drugs. We are the society of “if you have a problem, there’s a pill that can fix it”.
1,700
AskReddit
up0qcg
When you buy it on the mart.
This is not a 100% standard. Breed, age, and other factors will play into this. Costco's (a major nationwide grocer) rotisserie chickens typically weigh about 3 pounds.
870
AskAnAmerican
up0qcg
When you buy it on the mart.
Laden or unladen?
390
AskAnAmerican
up0qcg
When you buy it on the mart.
Tbh I’ve never weighed a chicken. I’m sure the factory chickens that sell at Walmart are fucking huge and probably way bigger than other countries, but your average ol yard bird is probably the same. Right??
260
AskAnAmerican
up0qoc
To Keep it concise i want to be a leader of my generation and guide people to freedom but I can’t even help myself. Would like to know and obstacles any experienced elders had to overcome and how they managed. Thank you!
Don't worry about being a leader to an entire generation. The world would do well with less "leaders", and more people simply focusing on being honest, compassionate, empathetic human beings. Heal thy self, physician. Lead by example. Even if there's no one that follows, the world will have one more good person in it, and you'll live a happier life...
210
AskOldPeople
up0qoc
To Keep it concise i want to be a leader of my generation and guide people to freedom but I can’t even help myself. Would like to know and obstacles any experienced elders had to overcome and how they managed. Thank you!
>To Keep it concise i want to be a leader of my generation and guide people to freedom Are you freaking kidding me? I can't believe that this is a serious post. But just in case - What are your core values? What do you believe in?
90
AskOldPeople
up0qoc
To Keep it concise i want to be a leader of my generation and guide people to freedom but I can’t even help myself. Would like to know and obstacles any experienced elders had to overcome and how they managed. Thank you!
I'll give you a tip a lot of leaders overlook... There are two kinds of respect, demanded and earned. The first is worthless and the second is priceless. Here is another tip.. regardless of how many people you know are following you are always leading by example. A lot of parents miss this one and have this attitude like, "I shall reshape the thing I made into what I wish I made." That's a hard fail.
80
AskOldPeople
up0sx5
As the title says, I need help with finding the greatest number in a binary tree. In some way, the code doesn't make comparisons with all nodes, but I can't get the code to run on all nodes. Could you help me please? My code: [https://pastebin.com/K9yZRf2m](https://pastebin.com/K9yZRf2m)
Your link requires a (maybe your) mooc.fi account, so we can't see it. Please use github or pastebin or just post your code here. However a normal binary tree is sorted, so the greatest number would just mean getting the right node until you run out of nodes. Simple loop.
50
LearnPython
up0wip
I started learning c++ about a month ago for college and is stuck on a project right now. Basically I need a program that capitalize the first letter of the string. Thank you
> I need a program Your teacher is expecting you to write it. What are you having trouble with?
60
cpp_questions
up10ad
Well, it makes me feel better having only the A+ at my helpdesk job
Certs are nice, but experience is king.
1,070
ITCareerQuestions
up10ad
Well, it makes me feel better having only the A+ at my helpdesk job
Senior DevOps Engineer, no certs
300
ITCareerQuestions
up10ad
Well, it makes me feel better having only the A+ at my helpdesk job
Kevin has been in helpdesk for a while before he went to sysadmin. Once you get to mid level certs arent really required. Even at entry level if your helpdesk job teaches you alot of light sysadmin work and automation
140
ITCareerQuestions
up1coh
For more context... I'm trying writing some code to make a polyphonic synthesiser and doing the note on, note off parts. I have this for loop... for (int = 0; i <timeStamp.size()-1;i++) I had to add that -1 after vector.size() to solve this problem I was having below... I have the time stamps of note ons and note offs as vector elements. And need to subtract the note off time stamp from the note on to get the time duration. So I wrote it like this. timeStamp[i+1] - timeStamp[i] And it came up with an error because the [i+1] made it count past the total number of array elements eventually. So I fixed in the for loop with the timeStamp.size()-1, to prevent that happening. But now I need to add an extra element to the end of the vector that won't be used . And make all new note on note off timestamps pushback to just before that last element, to make this bandaid solution work. And I'm stumped on that one. (I'm a first year audio technology student btw)
* You could use `insert(v.end() - 1, ...`. * You could do `i + 1 < size ? times[i + 1] : duration` instead. * Don't subtract from `size` without checking it's non-zero. You could instead start the loop at `1`.
50
cpp_questions
up1geo
[https://pastebin.com/C5H0UbT0](https://pastebin.com/C5H0UbT0) I want this to be faster. Can you pls make ot faster or write it in c or c++?
...But *why*?
50
AskProgramming
up1geo
[https://pastebin.com/C5H0UbT0](https://pastebin.com/C5H0UbT0) I want this to be faster. Can you pls make ot faster or write it in c or c++?
Not really, no. The majority of the time is going to be taken up by the `print` statements because writing to standard output, while fast, is many times slower than everything else the code is doing.
30
AskProgramming
up1n1o
I'm confused why I occasionally see people posting about apps on apkmirror (or another apk outside of Google) when the app is already on Google play? I thought perhaps it has to do with app updates, but every app I checked was running the same version as the one I already had from Google play Is there some benefit to downloading apks outside of Google? -Pixel 6 pro
Can be for a variety of reasons 1-Some apps may update/release earlier in some regions so other users would need to wait for an update, so getting the APK directly is an option (that's usually the main one) 2-Unavailability, some apps may choose to display themselves as not compatible with a device for arbitrary reasons (when installing the app externally works just fine) 3-Some people choose to remove Google services from their devices (or don't have them in case of Huawei devices) so they'd need to download apps somewhere else 4-Rare but sometimes the Play Store just decides to hang at pending when downloading apps/updates so having a fallback from where to obtain said updates is welcome
120
AndroidQuestions
up1nru
I went to the gas station and gave the lady 4$ and told her to put it on the pump. when i got to the pump i realized she had accidentally put 40$ im dead broke so i just pumped it and left. will they take it out of her paycheck? i just realized this as a possibility
So one time i was in a rush i accidentslly filled up and forgot to pay. Thought i paid with my card. A few weeks later i got a letter in the mail by the police very kindly asking that i return to the gas station to pay the amount. The letter just said many times its a mistake and you can return to pay it.
39,060
NoStupidQuestions
up1nru
I went to the gas station and gave the lady 4$ and told her to put it on the pump. when i got to the pump i realized she had accidentally put 40$ im dead broke so i just pumped it and left. will they take it out of her paycheck? i just realized this as a possibility
I worked at 7-11 for 3 years, and fucked up a lot of things in that time. I never had to pay for any of it because I didn't do it intentionally.
26,760
NoStupidQuestions
up1nru
I went to the gas station and gave the lady 4$ and told her to put it on the pump. when i got to the pump i realized she had accidentally put 40$ im dead broke so i just pumped it and left. will they take it out of her paycheck? i just realized this as a possibility
Cashier lady might get in trouble yes.
15,070
NoStupidQuestions
up1nvn
Hi, today my dentist said that I need all my teeth removed and replaced with full dentures due to them being "too far gone". I'm not the best for oral hygiene but I've been working on it, brushing everyday since about a month ago. Last year he said that I just needed two fillings and now they're "too far gone"? I don't buy it, I haven't lost any teeth, my teeth aren't even that yellow let alone rotten in color, and my gingivitis (which has went away since brushing) wasn't even close to severe. Just last month when I had my checkup I was told I just need a few fillings and a root canal and they're now claiming my teeth are completely rotten. What is going on? 16M 5ft 9in 250 lbs I take Adderall daily No previous or current medical issues Month long issue
Get a second opinion from another dentist for sure..
7,360
AskDocs
up1nvn
Hi, today my dentist said that I need all my teeth removed and replaced with full dentures due to them being "too far gone". I'm not the best for oral hygiene but I've been working on it, brushing everyday since about a month ago. Last year he said that I just needed two fillings and now they're "too far gone"? I don't buy it, I haven't lost any teeth, my teeth aren't even that yellow let alone rotten in color, and my gingivitis (which has went away since brushing) wasn't even close to severe. Just last month when I had my checkup I was told I just need a few fillings and a root canal and they're now claiming my teeth are completely rotten. What is going on? 16M 5ft 9in 250 lbs I take Adderall daily No previous or current medical issues Month long issue
I would be amazed at how unethical that would be to suggest you need full dentures if your teeth arent pretty messed up but I think with something as serious as getting all your teeth pulled and committing to dentures at the age of 16 you absolutely should get a second opinion before making any decisions
2,170
AskDocs
up1nvn
Hi, today my dentist said that I need all my teeth removed and replaced with full dentures due to them being "too far gone". I'm not the best for oral hygiene but I've been working on it, brushing everyday since about a month ago. Last year he said that I just needed two fillings and now they're "too far gone"? I don't buy it, I haven't lost any teeth, my teeth aren't even that yellow let alone rotten in color, and my gingivitis (which has went away since brushing) wasn't even close to severe. Just last month when I had my checkup I was told I just need a few fillings and a root canal and they're now claiming my teeth are completely rotten. What is going on? 16M 5ft 9in 250 lbs I take Adderall daily No previous or current medical issues Month long issue
Dentist here. Very rare to have full mouth extractions at your age. If extractions are warranted, it may be due to a genetic condition causing extreme loss of enamel and/or dentin. These conditions (amelogenesis imperfect and dentinogenesis imperfecta respectively) don't usually require full mouth extractions either, just an example of what MAY cause a dentist to jump the gun and state this. You would have likely been diagnosed with one of these conditions already in your lifetime. Feel free to to PM me with any questions. Not sure where you're located either but I'm guessing somewhere in the U.S.
930
AskDocs
up1osf
its 1AM, can't sleep and browsing NSFW subs didn't help. Now im horny and can't sleep. AMA
It's orgasm time! The cocktail of hormones released will help your brain with sleeping. So my question is: have you found "the lucky one" pic/gif/vid for tonight handjob?
50
AMA
up1rgi
Drop your name below and I will tell you what you taste like. 😂
Allie :)
30
AMA
up1rgi
Drop your name below and I will tell you what you taste like. 😂
Does tasting people's names help you remember them?
30
AMA
up1rgi
Drop your name below and I will tell you what you taste like. 😂
Eva!
30
AMA
up1uw7
If you want to humble brag or 'low key flex' about TC go to Blind. ​ I'm talking about the cringy "should I leave my terrible 50k job for BigN/Unicorn at 250k?" - stfu, that's a 110% yes and you already know your gonna take the offer - its just an awkward flex. Also the faux poor posts - if you make >200k it doesn't matter what city you live in - I highly doubt you can't afford basic necessities after buying a Tesla. Or just make a daily 'Daily Thread' for said posts like with BigN.
So I got an offer from Google for $700k a year but I’m not sure if it will fulfill me spiritually.And my Victoria Secret model wife also says it’s a bad idea. What do you guys think I should do?
9,910
CSCareerQuestions
up1uw7
If you want to humble brag or 'low key flex' about TC go to Blind. ​ I'm talking about the cringy "should I leave my terrible 50k job for BigN/Unicorn at 250k?" - stfu, that's a 110% yes and you already know your gonna take the offer - its just an awkward flex. Also the faux poor posts - if you make >200k it doesn't matter what city you live in - I highly doubt you can't afford basic necessities after buying a Tesla. Or just make a daily 'Daily Thread' for said posts like with BigN.
The US stole my superyacht claiming I am tied to vladimir putin. Should I slum it and take a $1m/year job at Google?
5,380
CSCareerQuestions
up1uw7
If you want to humble brag or 'low key flex' about TC go to Blind. ​ I'm talking about the cringy "should I leave my terrible 50k job for BigN/Unicorn at 250k?" - stfu, that's a 110% yes and you already know your gonna take the offer - its just an awkward flex. Also the faux poor posts - if you make >200k it doesn't matter what city you live in - I highly doubt you can't afford basic necessities after buying a Tesla. Or just make a daily 'Daily Thread' for said posts like with BigN.
Hey guys, I did 1 hour of coding boot camp on udemy, just got an offer at a big faang for 550k a year plus 200k in stock options with a 50k sign on bonus. They said its fully remote and will buy a house for my any where in the world I want to go. Should I take that or continue the soul sucking shit hole career that is nursing?
4,640
CSCareerQuestions
up22ei
During the Atlantic Slave Trade, were there any African nations that had the military capacity to harass/disrupt European slavers and slave ships?
Probably the most famous example of an African leader who disrupted the slave trade was Queen Nzinga of Ndongo, who found success in her efforts against the Portuguese in the early-mid seventeenth century, though this question misses one of the key themes in the history of the Atlantic slave trade, which is that it was largely the result of cooperation between African merchants and states on the coast and European traders. Europeans generally did not penetrate into the African interior prior to the nineteenth century: most Europeans who went to Africa went as sailors and ship captains, who usually acted as merchants, to purchase enslaved people from African merchants, as well as other trade goods, such as ivory and gold. In exchange, they often traded European textiles, rum, and especially muskets and ammunition. They operated from small fortified posts often referred to as factories ("factor" was not an uncommon term for merchant in the Early Modern Era). Merchants in cities such as Lagos (in present-day Nigeria) worked with soldiers or states inland to purchase slaves, who were either taken in war or simply outright kidnapped. Olaudah Equiano, described his enslavement as starting during a day when the adults of his Igbo village went to work in the fields for the day, and a couple of strangers hopped a wall and put him and his sister in sacks, and carried them off. He described being brought to various places, closer and closer to the coast, until eventually his enslavers sold him to Europeans, who took him on shipboard and the infamous Middle Passage. A lot of African polities in or near the slave trade did not have a real motivation to disrupt it, unless it was to get better terms for themselves, because Europeans were not the people who usually did the initial kidnapping and human trafficking necessary to bring people into the Atlantic Slave Trade. Sources: Olaudah Equiano, *The Interesting Narrative of the Life of Olaudah Equiano, Or Gustavus Vassa, The African*, 1789. Kathleen Brown, *Good Wives, Nasty Wenches, and Anxious Patriarchs: Gender, Race, and Power in Colonial Virginia* (Chapel Hill: University of North Carolina Press, 1996) Linda Heywood and John K. Thornton, *Central Africans, Atlantic Creoles, and the Foundation of the Americas, 1585-1660* (New York: Cambridge University Press, 2007). Markus Rediker, *The Slave Ship: A Human History* (New York: Penguin Press, 2007).
4,570
AskHistorians
up22ei
During the Atlantic Slave Trade, were there any African nations that had the military capacity to harass/disrupt European slavers and slave ships?
During the main period of the Atlantic slave trade, the late seventeenth and the eighteenth century, most African states had the capacity to disrupt the slave trade, at least within their own territories. If we take the "Gold" and "Slave" coasts in West Africa, there are numerous examples of the Dutch, English and Danish forts and trading posts being blockaded, the roads closed for trade, even taken over - more often in the case of trading posts ("factories"), which were also frequently destroyed. In fact the European presence and trade in enslaved people was heavily dependent on the cooperation and permission of local communities and rulers. Initially those along the coastline, such as the Fante and Gã, in the eighteenth century increasingly also of the larger inland states such as the Akwamu and Asante, with whom the Europeans concluded numerous treaties for property and trading rights. The communities near (or as the Europeans would say, "under") the forts, such as Elmina, Cape Coast, or Christiansborg, would supply the forts with all kinds of food and necessaries and act as intermediaries and brokers with merchants from inland trading in gold, ivory and slaves. At the same time, they were able to withhold their services, without which the Europeans would be in deep trouble, and so disrupt the trade. The issue was that they in turn needed both the protection and the commodities which the European forts offered, to safeguard themselves against other states. The larger states or empires (Akwamu, Asante, Dahomey) were able to disrupt the trade equally or more so hy blocking the roads and preventing merchants to come to the shore to trade in slaves, besiege forts, and destroy trading posts. But at the same time these states were main suppliers of enslaved people sold to Europeans for various goods, notably guns and ammunition with which these states were able to establish their power further. So they also very much had an interest in facilitating rather than disrupting the trade. In short, there was situation where the various African states were dependent on European trade in slaves to furnish the wealth and weapons to maintain themselves against and defend against attacks from, rival states. The transatlantic slave trade thus fuelled this competition and these wars, having a deeply destabilising effect on the coast and inland. But it was not before the nineteenth century, and hence after the abolition of the transatlantic slave trade, that European states were able to establish some kind of hegemony on the west African coast. In fact, the British used the suppression of the slave trade as a main legitimation of this endeavour. Quite absurd, as they had stimulated and facilitated this very trade for centuries. For more, read eg Shumway on the Fante and the transatlantic slave trade (2011), Strickrodt, Afro-European Trade in the Atlantic World: the Western Slave Coast c.1550-c.1885 (2016), and the works of Robin Law, eg his ‘Here is No Resisting the Country’. The Realities of Power in Afro-European Relations on the West African ‘Slave Coast. (Update: I pressed post before finishing writing)
600
AskHistorians
up22ei
During the Atlantic Slave Trade, were there any African nations that had the military capacity to harass/disrupt European slavers and slave ships?
[removed]
50
AskHistorians
up23bi
when you hear Canada, what is the first thing you think of
Maple Syrup, Hockey and that dude that fed hookers to his pigs, oh and also Poutine.
1,630
ask
up23bi
when you hear Canada, what is the first thing you think of
the Canadian flag yeah, I'm boring like this
610
ask
up23bi
when you hear Canada, what is the first thing you think of
Eh!!!
460
ask
up258c
What would be your Main reason to go back in time?
I had a cat that died in 2018. He was the best little guy. I’d like to go back and sneak into my old apartment after past me left for work for the day and just hang out with him sometimes.
4,370
AskReddit
up258c
What would be your Main reason to go back in time?
Poor choices i made in my life
3,640
AskReddit
up258c
What would be your Main reason to go back in time?
With the knowledge I have now, travel 20 years in the past and avoid a lot of mistakes. And become overlord of the whole world obviously.
2,380
AskReddit
up26eh
I just got offered an internship for a Platform Engineering internship that involves working with cloud infrastructures and scripting. Is that good experience or at least a good way to get my foot in the door if I want to do software engineering?
Yes that’s good experience, once you have your first internship it opens the doors for stuff you’ll be more interested in
50
CSCareerQuestions
up26eh
I just got offered an internship for a Platform Engineering internship that involves working with cloud infrastructures and scripting. Is that good experience or at least a good way to get my foot in the door if I want to do software engineering?
Platform could mean anything tbh. It could be devops and scripting infra stuff, but it could just as likely be shit like a data platform that needs to scale to handle near real time event traffic, which usually requires working on application code to make it performant and also learning to investigate inefficiency in your platform with various tools.
30
CSCareerQuestions
up26l2
https://docs.google.com/file/d/1c4AFGizkOgQkdnnbYF9LBYuR28mZvCE4/edit?usp=docslist_api&filetype=msword I face constant rejections. I’ve had about 20 interviews, some were phone and some went to video. However, I’ve made no progress at all. What should I do? I’m studying for A+ but this is depressing. I’m in NYC
If you’re getting interviews then the resume isn’t the problem, you’re doing something wrong in the interviews.
30
ITCareerQuestions
up26l2
https://docs.google.com/file/d/1c4AFGizkOgQkdnnbYF9LBYuR28mZvCE4/edit?usp=docslist_api&filetype=msword I face constant rejections. I’ve had about 20 interviews, some were phone and some went to video. However, I’ve made no progress at all. What should I do? I’m studying for A+ but this is depressing. I’m in NYC
You’re getting calls it’s not the resume
30
ITCareerQuestions
up2ail
So I am interested in learning python coding, but when researching I found that theres such a thing called python 2 and python 3. I thought it was just one general one and of not which would seem best to learn?
Python 2 is no longer officially supported and can be safely ignored. I’d recommend starting with 3.9 or 3.10.
300
LearnPython
up2ail
So I am interested in learning python coding, but when researching I found that theres such a thing called python 2 and python 3. I thought it was just one general one and of not which would seem best to learn?
Python 2 is a dead-end, unless you are supporting legacy code that can't easily be converted to Python 3, which is not backwards compatible with Python 2. Nearly everyone uses Python 3 these days. Just grab the latest stable version.
110
LearnPython
up2ail
So I am interested in learning python coding, but when researching I found that theres such a thing called python 2 and python 3. I thought it was just one general one and of not which would seem best to learn?
There is no decision to be made here; Python 2 is EOL, so Python 3 is the only sensible option. Ignore all tutorials written for Python 2 (except maybe a few select ones that have no *official* Python 3 revision but that nevertheless have example code translated to Python 3, like Black Hat Python), and focus on Python 3. There aren't that many big differences between the two major versions, but given the state of the developer community today I would not see the need to focus on anything that came before 3.6, given the prominence of things like f-strings.
60
LearnPython
up2beq
When handling business logic, sometimes I have to fetch data from the database, so I can validate my business rules. However, this approach can cause some race conditions. For example, let's say I have an application with a Business Logic Layer (BLL) and a Data Access Layer (DAL), with the following functions: *dal.py* def get_account_by_id(id): query = text('SELECT * FROM account WHERE id = :id') with db.connect() as conn: result = conn.execute(query, {'id': id}) return result.one()._mapping def transfer(from_account_id, to_account_id, amount): withdrawl_query = text('UPDATE account SET balance = balance - :amount WHERE id = :id') deposit_query = text('UPDATE account SET balance = balance + :amount WHERE id = :id') with db.connect() as conn: conn.execute(withdrawl_query, {'amount': amount, 'id': from_account_id}) conn.execute(deposit_query, {'amount': amount, 'id': to_account_id}) conn.commit() *bll.py* import dal def transfer(from_account_id, to_account_id, amount): from_account = dal.get_account_by_id(from_account_id) if from_account['account_type'] == 'savings': raise Exception('Transferring from a savings account is not allowed') dal.transfer(from_account_id, to_account_id, amount) Most of the time, the code will work as expected. However, since my BLL function is not in a transaction, if the `account_type` gets updated (in database) after I fetch it, the transfer will be successfull even if it shouldn't be. I could move the `account_type` validation to the DAL: def transfer(from_account_id, to_account_id, amount): account_type_query = text('SELECT account_type FROM account WHERE id = :id') withdrawl_query = text('UPDATE account SET balance = balance - :amount WHERE id = :id') deposit_query = text('UPDATE account SET balance = balance + :amount WHERE id = :id') with db.connect() as conn: account_type = conn.execute(account_type_query, {'id': from_account_id}).scalar_one() if account_type == 'savings': raise Exception('Transferring from a savings account is not allowed') conn.execute(withdrawl_query, {'amount': amount, 'id': from_account_id}) conn.execute(deposit_query, {'amount': amount, 'id': to_account_id}) conn.commit() But it appears to defeat the purpose of my BLL layer and break the Separation of Concerns. My google search returned some terms like *queueing* and *locking*, but I don't know if that's what I need, and they seem a little too advanced. So I ask you, how is this problem (if it exists at all) tackled in the real word? Thanks.
Why is it possible to change the account type from savings to checking? That seems like that shouldn't be allowed in the first place.
30
LearnPython
up2btg
I went to a mental hospital, ask me anything!
How you like your new socks
50
AMA
up2ivs
Some years ago me and my bff were waiting for the bus. A random old man started staring at us and slowly approached us saying my friend's name and the following words: " Germany, Russia, peace was made" This man was a COMPLETELY STRANGER, he didn't know me nor my friend and wasn't a family friend of hers. Nowadays (with the thing going on with Russia and Ukraine) we started thinking about those creepy words... Have you got any explanation? Literally anything
People being people.
30
ask
up2ivs
Some years ago me and my bff were waiting for the bus. A random old man started staring at us and slowly approached us saying my friend's name and the following words: " Germany, Russia, peace was made" This man was a COMPLETELY STRANGER, he didn't know me nor my friend and wasn't a family friend of hers. Nowadays (with the thing going on with Russia and Ukraine) we started thinking about those creepy words... Have you got any explanation? Literally anything
Once upon a time, we had 2 world wars with Germany. Then we had a cold war with Russia. Then we had a time of moderate peace.
30
ask
up2m7h
Older devs (graduated before 2000): when you went into the IT field, was it seen as the safe and lucrative option that it’s seen as now?
It was a solid white collar job, comparable to being an accountant or maybe a college professor. You wouldn't expect a fancy lifestyle, but you could afford a house and your kids would go to college (both of which were cheaper then). It was also much more obscure. If you were in a restaurant and heard someone at the next table mention something a bit beyond home computing - let's say you overhear a remark about SCSI - you'd probably go over and introduce yourself. Also, the corporate landscape was a few giant R&D companies, not a million startups like it is today. So you were pretty likely to work in a multistory office building with hundreds of workers and its own cafeteria, and your only exposure to programming and tech would be within that company. "Not invented here" was very real - you might well be working in a programming language and operating system that had no meaning outside your own company. And of course all this was closed source. Whole programming languages that were used by thousands of people are lost to history now. I personally did significant work in Protel and BNR Pascal, for example, neither of which were ever made public. These factors, as well as the different culture around employment, meant that programming jobs were very safe. Mass layoffs weren't invented till the late 70s, job hopping was seen as immoral, and skills tended to be company specific, and as a result people often stayed at one company from graduation all the way to retirement. So these jobs might not have paid as much as today, but they were _very_ safe. They also typically came with a pension, which is a level of financial safety unheard of in today's world.
180
AskComputerScience
up2m7h
Older devs (graduated before 2000): when you went into the IT field, was it seen as the safe and lucrative option that it’s seen as now?
Not where I went. I’ll never forget my roommate who left computer science for psychology because I’m his opinion the tech field was already “saturated” with too many people. 1993
90
AskComputerScience
up2rp0
Or is our media going muricuh bad again?
AFAIK, A major producer of baby formula had cases of children dying from using their product, so they've been temporarily shut down, and that's dramatically lowered the active supply.
350
AskAnAmerican
up2rp0
Or is our media going muricuh bad again?
There's a shortage of it. I was told it has to do with one factory getting shut down.
280
AskAnAmerican
up2rp0
Or is our media going muricuh bad again?
There is a national shortage yes. I think the U.S. has a higher rate of formula use over breastfeeding as compared to other countries which exacerbates the problem, but yes we've got major issues in the supply chain for formula.
210
AskAnAmerican
up2zbv
I am an Israeli Citizen living In Jerusalem. AMA
Do you support a free and independent Palestinine?
30
AMA
up2zbv
I am an Israeli Citizen living In Jerusalem. AMA
Are you 100% jewish?
30
AMA
up36nf
Hi,so i know someone who has a samsung s10+ he bought it from brazil while he was on there from the store.Now he wants to sell it.But when i switched it off and turned it on i saw a big purplish colour while saying vivo! I tried everything that youtube said to confirm if a samsung phone is real,and yeah it passed every test.But i dont know why does it says vivo while turning it on! Can anyone please help me? By explaining why does that happens?
Vivo is a wireless carrier in Brazil. Almost every single Samsung phone that's sold by a wireless carrier will show the carrier's logo when it turns on, regardless of which country it's originally from
30
AndroidQuestions
up39kp
Because I’m a bored and lazy ass teenager who has nothing to do at the moment lol.
Igbo or Yoruba?
30
AMA
up39kp
Because I’m a bored and lazy ass teenager who has nothing to do at the moment lol.
Born in Canada or Nigeria ? Are other Canadians nice to you ?
30
AMA