Questions tagged [auto-completion]
9 questions
29
votes
15 answers
Is it wrong or bad to use autocomplete?
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 compiled it. He used a textbook to get the hang of…

Jonathan.
- 880
- 3
- 9
- 18
23
votes
6 answers
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 this, but would like to know what the reasoning is.…

oschrenk
- 616
- 5
- 9
18
votes
6 answers
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, but is inappropriate when talking to people who…

Arseni Mourzenko
- 134,780
- 31
- 343
- 513
6
votes
1 answer
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 retrieve the list. However, I'm not able to get my…

user2599672
- 69
- 2
6
votes
1 answer
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 (ie, the operating system would take care of…

haylem
- 28,856
- 10
- 103
- 119
6
votes
1 answer
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 these things?
Neither the PHP or Python binaries…

Markus Hedlund
- 329
- 1
- 6
1
vote
2 answers
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 automatically test these inputs according to their label.…

HBv6
- 113
- 4
0
votes
1 answer
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 completion/code assist/Intellisense; when the user types…

echristopherson
- 113
- 5
0
votes
1 answer
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 this, where the response was a JSONP. Response is readable…

Uzair
- 3
- 2