9
votes
10answers
539 views
What does .NET stand for? Is it an acronym?
I've seen pronunciation guides and all sorts of definitions of .NET as a framework, but no definition or explanation of the actual name of the framework.
Wikipedia doesn't seem to …
1
vote
2answers
55 views
Tools that help with acronyms and jargon in software requirement documents
Are there any tools that would help with reading software requirement documents that contain a mix of domain specific and company specific acronyms and jargon. In particular I was …
1
vote
6answers
503 views
What is a UUID?
Well, what is one?
0
votes
4answers
175 views
Difference between <acronym> and <abbr>?
Definitionally they seem the same, yet they are deemed dissimilar enough by the W3C to have separate tag definitions. What is the semantic difference between <acronym> and &l …
1
vote
6answers
429 views
DTO, DAO, and DCO. What is a DCO?
My search for the meaning of DCO was quite fruitless, so I decided to ask here. In my Java application, there are many classes like EmployeeDetailsDto, EmployeeDetailsDao, but rece …
6
votes
7answers
289 views
What’s in a name?
I am designing a new product for my team to develop at my corporate job. I feel the project will pave a new direction for my team. I am creating a presentation to sell the idea; ho …
6
votes
24answers
1k views
What Programming acronyms do you frequently use without knowing the meaning of
I just told someone I'd VNC into their machine. It can be very embarrassing when someone asks you what that stands for and you don't know.
Throwing around terms like PHP, SQL, AS …
0
votes
4answers
420 views
is there a string method to capitalize acronyms in python?
This is good:
import string
string.capwords("proper name")
'Proper Name'
This is not so good:
string.capwords("I.R.S")
…
