Acronyms in CamelCase [closed]

Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago. Improve this question I have a doubt about CamelCase. Suppose you have this acronym: Unesco = United Nations Educational, … Read more

What’s your most controversial programming opinion?

Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. This is definitely subjective, but I’d like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately. The idea … Read more

What is the difference between concurrent programming and parallel programming?

What is the difference between concurrent programming and parallel programing? I asked google but didn’t find anything that helped me to understand that difference. Could you give me an example for both? For now I found this explanation: http://www.linux-mag.com/id/7411 – but “concurrency is a property of the program” vs “parallel execution is a property of … Read more

Shortest distance between a point and a line segment

I need a basic function to find the shortest distance between a point and a line segment. Feel free to write the solution in any language you want; I can translate it into what I’m using (Javascript). EDIT: My line segment is defined by two endpoints. So my line segment AB is defined by the … Read more

Runtime vs. Compile time

What is the difference between run-time and compile-time? 26 Answers 26 The difference between compile time and run time is an example of what pointy-headed theorists call the phase distinction. It is one of the hardest concepts to learn, especially for people without much background in programming languages. To approach this problem, I find it … Read more