Questions tagged [auto-completion]
The auto-completion tag has no summary.
9 questions
6
votes
1
answer
1k
views
Autosuggest at scale - trie sharding
While reading on the design for autosuggest implementation on large scale systems (like google), I'm able to understand the usage of trie and how top "n" terms are stored at each node to quickly ...
0
votes
1
answer
83
views
User interfaces for C function completion
In method call syntax in many object-oriented languages, the receiver object goes to the left of the method name, e.g. someObject.someMethod(). This comes in handy when using an IDE with code ...
0
votes
1
answer
196
views
Evaluating JSON from popular auto-suggests
I was evaluating the various ways in which the big guys implement auto suggest. These are my observations.(Search string used was "ab") Questions towards the end.
Yahoo tries something like ...
6
votes
1
answer
195
views
Development-led security vs administration-led security in a software product?
There are cases where you have the opportunity, as a developer, to enforce stricter security features and protections on a software, though they could very well be managed at an environmental level (...
23
votes
6
answers
7k
views
What are the benefits of prefixing function parameter names with p*?
I often see projects (in Java projects and teams using Eclipse) that prefix function parameters with p.
For example
public void filter (Result pResult) ...
I personally don't see any benefit in ...
6
votes
1
answer
3k
views
Create code editor auto-suggest (like IntelliSense)
If one would to write auto-suggest for an IDE/code editor (like IntelliSense), does one generally need to write a parser for any language that should be supported, or do compilers/runtimes provide ...
1
vote
2
answers
523
views
Recognizing text fields according to their label value
I have an application who has text fields (not select, not checkbox or other types) where an user can enter some value, like this:
ISBN and E-Mail are the label of each input.
Now I have to ...
29
votes
15
answers
13k
views
Is it wrong or bad to use autocomplete? [duplicate]
Possible Duplicate:
Should newbies use IDE autocomplete (Intellisense)?
I have a friend at school who wrote a program in VB.net in notepad, took it home fixed any errors that came up, and then ...
18
votes
6
answers
3k
views
What is the term for IntelliSense in a non-Microsoft world?
When talking about IDE software or about what a programming language allows you to do or not at the source level, I often use the word IntelliSense, which has a precise meaning in the Microsoft world, ...