Tagged Questions
The vocabulary tag has no wiki summary.
579
votes
354answers
238k views
New programming jargon you coined? [closed]
Question
What programming terms have you coined that have taken off in your own circles (i.e. have heard others repeat it)? It might be within your own team, workplace or garnered greater popularity ...
14
votes
2answers
516 views
12
votes
14answers
1k views
What's that CS “big word” term for the same action always having the same effect
There's a computer science term for this that escapes my head, one of those words that ends with "-icity".
It means something like a given action will always produce the same result, IE there won't ...
10
votes
3answers
726 views
What do pty and tty mean?
I noticed there are many "pty" and "tty" in some opensource projects, could someone can tell
me what do they mean and what is the difference between them ? thanks!
8
votes
8answers
4k views
Are semantics and syntax the same?
I don't understand the meaning of semantic and the meaning of syntax! What are they? And what's the difference between things like "semantic website vs. normal website", "semantic social networking ...
7
votes
5answers
368 views
How do you maintain your program vocabulary?
In a not-so-small program, when you have not-so-few entities, in order to maintain code readability, common terms, and otherwise improve mutual understanding between team members, one have to define ...
6
votes
4answers
142 views
Kind of a question about the English language: Using plural in the first part of an identifier name
As a non-native English speaker, I often wonder about using the plural form in the initial part(s) of noun phrases when naming classes or objects.
For example:
If I have an interface to multiple ...
6
votes
4answers
706 views
Absolute urls, relative urls, and…?
I am writing some documentation and I have a little vocabulary problem:
http://www.somedomain.com/en/public/img/logo.gif is called an "absolute" url, right?
../../public/img/logo.gif is called a ...
5
votes
1answer
345 views
What is the difference between a shim and a polyfill?
Both seem to be used in web development circles, see e.g. HTML5 Cross Browser Polyfills, which says:
So here we're collecting all the shims, fallbacks, and polyfills...
Or, there's the es5-shim ...
5
votes
14answers
1k views
Important programming vocabulary words
I am getting ready to teach a language (specifically, PHP) to someone without any background in programming. I want to make sure I don't forget any important vocabulary. This is what I have so far:
...
5
votes
2answers
357 views
Why do I sometimes hear the term “lexical variable?”
I've seen the term "lexical variable" a few times, mostly in the context of closures. Paul Graham uses the term in his books on Lisp referring to variables defined using the let expression.
I ...
4
votes
2answers
138 views
What is [assembly: InternalsVisibleTo(“MyAssembly”)]? A statement, directive, …?
Sorry about the vocabulary question but I can't find this anywhere: how do you call this below?
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("MyAssembly")]
Is it a statement, a ...
4
votes
2answers
380 views
Is there a dictionary about common programming vocabulary?
When I need a name for a new class that extends behaviour of an existing class, I usually have hard time to come up with a name for it.
For example, if I have a class MyClass, then the new class ...
3
votes
2answers
902 views
What is a vocabulary tree and how to build one?
I'm reading a lot about vocabulary trees when it comes to fast queries for similar images or texts in big databases. But I couldn't find any good (easy to unserstand) description on what such an ...
3
votes
4answers
559 views
What is the definition of an implementation detail?
I see this term on the internet a lot (in fact, typing it on google returns a lot of results).
What is the exact definition of an "implementation detail"?
2
votes
2answers
95 views
Tagging and Searching Plone Content from Constrained Vocabularies
I want to let my editors tag content on several orthogonal vocabularies and then have a nice search interface that lets users search for the content based on those vocabularies.
It seems too parts of ...
2
votes
1answer
33 views
How can controlled vocabularies or taxonomies be used to define XML element names or attribute names?
I am currently writing an XML file which models some experimental issue. Unfortunately, many of the associated words come with various synonyms.
What I would like to do is to have a controlled ...
2
votes
1answer
175 views
How do I relate items in schema.org?
Suppose I have this simple HTML page about a guy getting a job:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>New Job for John ...
2
votes
1answer
85 views
Code vocabulary statistics
A couple of months ago Harvard University and Google researchers did a study where they mined the complete text of 4 percent of the world’s books and came out with interesting statistics about the ...
2
votes
1answer
153 views
Categories of tags
I'm starting a pro bono project that is the web interface to the world's largest collection of lute music and it's a challenging collection from several points of view. The pieces are largely from ...
2
votes
4answers
194 views
Compile-time, load-time, run-time: phases of… what?
Sorry for the confusing title :P
I'm sure I should know this but I always have trouble with terminology. I can't figure out the right word to put in the blank space in the following sentence:
...
2
votes
1answer
2k views
custom url for taxonomy > vocabulary at Drupal 6
I'm new at Drupal. a question;
I create a hotels directory site. I created Taxonomy>Vocabulary for locations like London, Liverpool, etc... For example the url below lists the London
...
2
votes
3answers
770 views
define mysql indexing
What is indexing?
What is full text?
I know the answers to both questions, but I can't expose those answers in the exact way to an interviewer:
indexing means something like index in book
...
2
votes
3answers
398 views
Where to get a Database of Spanish <-> English Translations?
for a program I am writing I would need a dictionary between Spanish and English words. I googled a while, but I could not find any database freely available. Does anybody know where or how to get ...
1
vote
0answers
43 views
Terminology equivalences between programming languages [closed]
Most programmers know there are different terminologies between different languages, from my experience I know Smalltalk terminology, and actually I don't care why posterior language designers decided ...
1
vote
1answer
41 views
How to make usernames as vocabulary in Drupal 7?
I am making a website using Drupal 7, in which a user may assign tasks to another user while editing a content node. I was thinking of doing this by making the Username list appear as a tag list with ...
1
vote
5answers
41 views
Debug Assert condition logic and language peculiarities
I am not native English speaker, so for me is a little strange the Debug.Assert method, that, for me, verifies a condition, in fact, verifies the opposite of this condition.
Assert = advance, ...
1
vote
3answers
34 views
How to read a method call
I have a mostly vocabulary-related question, concerning method calls:
when you have a code such as
dog.sit()
Would you rather say that you "call the sit method of dog" or "call the sit method on ...
1
vote
1answer
300 views
Drupal: How do I manually print Taxonomy Images
Here is the code I used to print taxonomy images per specific vocabulary using Taxonomy Image:
<?php
$vid = 19;
$terms = taxonomy_node_get_terms_by_vocabulary($node,$vid);
$new_terms = array();
if ...
1
vote
2answers
69 views
General Programming: When a set of objects are managed by another object, what do you call it?
I'm looking for help identifying this design pattern and learning the "typical" vocabulary it uses:
I'm working on a project in PHP, and I've created a thin ORM layer that saves generic objects to ...
1
vote
3answers
112 views
Unit Testing Vocabulary: “coverage”
I'm preparing some educational/training material with respect to Unit Testing, and want to double check some vocabulary.
In an example I'm using the developer has tested a Facade for all possible ...
1
vote
3answers
71 views
What's the term (if any) for frameworks that support dynamic class creation?
Sorry about the vocabulary question, but I'm writing my master thesis and it's a pain to repeat "frameworks that support dynamic class creation" again and again. Is there a term for that?
Some ...
1
vote
1answer
232 views
1
vote
1answer
52 views
PHP how to tell vocabulary type in context
What I want to be able to do is tell if a word in a sentence is a noun, adverb, adjetive, etc.. I looked into FreeLing, and a few other open source projects that I could find that are able to do ...
1
vote
2answers
2k views
How to delete terms within Drupal taxonomy module?
If terms (admin OR user created) are duplicates, I don't see a way to delete them from within the Drupal browser interface.
This becomes a problem during, say, adding products to an ecommerce site ...
0
votes
0answers
28 views
filter vocabulary from vocabulary
Hello everybody a newbie wants to do the following any help would be highly appreciated!
I have several vocabularies. lets assume
v1, with terms v11,v12,v13
v2, with terms v21,v22,v23
v3, with terms ...
0
votes
2answers
24 views
What terms do you use to describe the nature of a refactorization?
Currently I'm trying to write a good commit comment for a code refactoring I've made.
And I feel like I'm missing a word to sum up what I did instead of describing it.
Right now my description is:
...
0
votes
0answers
16 views
Android speech to test SDK - limit vocabulary
Is there a way to limit the vocabulary of the Android speech to text SDK?
Thanks
0
votes
2answers
193 views
Repository of SKOS Vocabularies
Is there any repository or list of freely available SKOS (or even not SKOS) vocabs?
I need some special vocabs and want to know if they are already exist or not.
I found some well-known ones like ...
0
votes
0answers
35 views
“Standard” vocabulary for event calendar entry types in travel industry
We are building a travel iPhone application. Does there exist any standard vocabularies which you could use for "type" field in the event calendar.
E.g. the vocabulary would contain entries like ...
0
votes
1answer
134 views
How do you pronounce SCons? [closed]
How do you pronounce the name of SCons (The Software CONStruction toolkit, a replacement for make)? I see two main ways:
Pronounce the S separate from the Cons (Ess Cons)
Pronounce them together ...
0
votes
0answers
132 views
Creating an Ajax filter for a view [closed]
I have create a page using views and it works fine. now I have got a new request to add a filter to this page to allow visitors to filter the content basing on PubDate or by the taxonomy/vocabulary ...
0
votes
2answers
722 views
how to use views to display taxonomy vocabulary list in 2 level on Drupal 7
I'm working on my first Drupal 7 project. I'm having a problem about vocabulary term listing :/ I hope you can advise...
I created Vocabulary named Services, and terms are 2 level as below (there ...
0
votes
1answer
66 views
Term in Programming/ Chaos Physics [closed]
What is the term for a problem in physics or programming for a question with such complex data, or so many possible answers that the question approaches unanswerable. I'm not looking for a wicked ...
0
votes
3answers
94 views
What are methods that affect their explicit parameters called?
I'm documenting some code in C++ right now, and one of the methods I intend to write will sort an array. It won't create a new array, though, it will sort the elements of the given array in place. I ...
0
votes
1answer
28 views
how to automate creation of vocabulary questions
We would like to prepare a quiz which will improve the vocabulary of the students.
What does pittance mean?
a) tiny, inadequate amount of payment
b) to feel pity or remorse
c) to go against, ...
0
votes
1answer
136 views
Hiding a vocabulary from certain Drupal users
I want hide a particular vocabulary from users other than admins. How can I do this?
0
votes
1answer
25 views
Vocabulary: path in a graph of objects?
I'm having trouble with the following sentence:
DeepClone performs a deep clone of
the target object, stopping the cloning process
when all <dependency paths> have
reached a value type or ...
0
votes
10answers
4k views
What is exact meaning of “ad hoc” in programming?
I found terminology "ad hoc" used here and there in programming field. What does it exactly mean in programming?
wiki says "for this purpose"
0
votes
2answers
26 views
vocabulary for protocol dataflows?
I'm having a mental block for the words describing data flow in a communications protocol + google isn't helping, due to information glut.
In the following scenarios A and B are communicating to each ...