Tagged Questions
The prefix tag has no wiki summary.
11
votes
2answers
4k views
Adding a prefix to every URL in CakePHP
What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter?
http://example.com/en/controller/action
http://example.com/ru/admin/controller/action
It needs to work ...
11
votes
3answers
827 views
Space-efficient in-memory structure for sorted text supporting prefix searches
I have a problem: I need space-efficient lookup of file-system data based of file path prefix. Prefix searching of sorted text, in other words. Use a trie, you say, and I thought the same thing. ...
10
votes
4answers
174 views
Python: Determine prefix from a set of (similar) strings
I have a set of strings, e.g.
my_prefix_what_ever
my_prefix_what_so_ever
my_prefix_doesnt_matter
I simply want to find the longest common portion of these strings, here the prefix. In the above the ...
10
votes
5answers
5k views
instance variable/ method argument naming in Objective C
What conventions are people here following for naming of instance variables and method arguments - particularly when method arguments are used to set ivars (instance variables)?
In C++ I used to use ...
9
votes
3answers
281 views
The difference between +1 and -1
> :t (+1)
(+1) :: Num a => a -> a
> :t (-1)
(-1) :: Num a => a
How come the second one is not a function? Do I have to write (+(-1)) or is there a better way?
8
votes
3answers
1k views
Python regex - r prefix
Can anyone explain why example 1 below works, when the r prefix is not used?
I thought the r prefix must be used whenever escape sequences are used?
Example 2 and example 3 demonstrates this..
# ...
8
votes
5answers
2k views
Check if string is a prefix of a Javascript RegExp
In Javascript I have defined a regular expression and now a user is typing in a string. I want to tell him if his string still could match the RegExp if he continues typing or if he's already on the ...
7
votes
5answers
187 views
sorting list in python
if I have a list of strings e.g. ["a143.txt", "a9.txt", ] how can I sort it in ascending order by the numbers in the list, rather than by the string. I.e. I want "a9.txt" to appear before "a143.txt" ...
6
votes
1answer
143 views
Real time Prefix matching and auto-complete in Quora
How is real time autocomplete with prefix matching implemented in Quora ?
Since Solr and Sphinx doesn't support real-time updating so what changes were made to support real time updating?
6
votes
2answers
219 views
All of a sudden, perl scripts don't work unless I prefix them with “perl” and give full path to the script
I've been using my own personal environment that's worked consistently for over 20 years. I started incorporating many perl scripts about 14 years ago.
I've been using the same tree of command-line ...
6
votes
4answers
227 views
Is always prefixing (auto)properties with the this-keyword considered a good practice?
Ever since I found out about auto properties, I try to use them everywhere. Before there would always be a private member for every property I had that I would use inside the class. Now this is ...
5
votes
3answers
156 views
Where can I find a list over third party unit/component name prefixes
Most third party component vendors uses a spesific prefix for their own unit names and component names.
Can I find any overview over these prefixes anywhere?
Eg
gtUnitname = Gnostice
frxUnitname ...
5
votes
8answers
141 views
Precedence of ++ and — operators in Java
I read from the official tutorial of Java that prefix and postfix ++ -- have different precedences:
postfix: expr++ expr--
unary: ++expr --expr +expr -expr ~ !
Operators
According to ...
5
votes
1answer
453 views
jqueryui autocomplete: lists entries with search terms in middle
I am using jqueryui autocomplete widget for autocompleting a 'country' field but I am facing an issue. Suppose the user enters "in", I want the jqueryui to list countries like 'india', 'indonesia' ...
5
votes
1answer
84 views
bash, numeric prefix for emacs bindings?
Is it possible to use emacs bindings in bash shell with numeric arguments, for example in emacs C-u 5 C-d deletes five characters. Is there an equivalent way of doing the same in bash prompt?
Thanks
5
votes
3answers
1k views
How to split using a prefix character using regular expressions?
I would like to split the example string --
~Peter~Lois~Chris~Meg~Stewie
on the character '~' and have the result be
Peter
Lois
Chris
Meg
Stewie
Using a standard string split function in ...
4
votes
1answer
371 views
How to define form field prefix in ASP.NET MVC
I am attempting to render a composite ProductCatalog view in ASP.NET MVC. This requires that I render multiple Product views per page. Each product view is a separate form. I need the form fields ...
4
votes
3answers
132 views
Detect largest suffix of some file that is prefix of another file
I have two files - let's call them file0 and file1.
What I would like to get is a fast algorithm for the following problem (it is clear to me how to write a rather slow algorithm that solves it):
...
4
votes
5answers
668 views
Why does the postfix increment operator take a dummy parameter?
Have a look at these function signatures:
class Number {
public:
Number& operator++ (); // prefix ++
Number operator++ (int); // postfix ++
};
Prefix doesn't take any parameter ...
4
votes
2answers
257 views
Objective-C pre-compilation error
I'm compiling a big iPhone app and am getting 24 of the same error...
cc1plus: note: obsolete option -I-
used, please use -iquote instead cc1:
error: -I- specified twice
This error is ...
4
votes
4answers
451 views
Processing command-line arguments in prefix notation in Python
I'm trying to parse a command-line in Python which looks like the following:
$ ./command -o option1 arg1 -o option2 arg2 arg3
In other words, the command takes an unlimited number of arguments, and ...
4
votes
1answer
174 views
emacs interactive function with optional numeric prefix
How do I specify a function which has optional numeric prefix, if not, it prompts for a number? basically how goto-line behaves?
(defun my-function(&optional n)
; I have tried
(interactive ...
4
votes
4answers
2k views
How to differentiate (when overloading) between prefix and postfix forms of operator++? (C++)
Because I've overloaded the operator++ for an iterator class
template<typename T>
typename list<T>::iterator& list<T>::iterator::operator++()
{
//stuff
}
But when I try to ...
3
votes
2answers
47 views
C++ Boggle Solver: Finding Prefixes in a Set
This is for a homework assignment, so I don't want the exact code, but would appreciate any ideas that can help point me in the right direction.
The assignment is to write a boggle solving program. ...
3
votes
2answers
118 views
How to remove a prefix in Python?
I wanted to know what is the pythonic function for this :
I want to remove everything before the wa path.
p = path.split('/')
counter = 0
while True:
if p[counter] == 'wa':
break
...
3
votes
2answers
304 views
What does the '@' prefix do in PHP?
What does the '@' symbol do in the following code?
@mkdir(ROOT. "cache/");
3
votes
2answers
967 views
change controller name convention in ASP.NET MVC
Is there a way to change the naming convention for controllers in ASP.NET MVC?
What I want is to name my controllers InicioControlador instead of InicioController, or better yet, use a prefix instead ...
3
votes
3answers
1k views
C++ infix to postfix conversion for logical conditions
I want to evaluate one expression in C++. To evaluate it, I want the expression to be converted to prefix format.
Here is an example
wstring expression = "Feature1 And Feature2";
Here are ...
3
votes
1answer
178 views
Binding, Prefixes and generated HTML
MVC newbie question re binders. Supposing I have two strongly typed partial actions that happen to have a model attributes with the same name, and are rendered in the same containing page i.e.:
Class ...
3
votes
2answers
407 views
Cygwin gcc is adding an underbar “_” prefix to my symbols. Where can I find documentation on this behavior?
I am trying to compile a gcc project on cygwin for the first time. The build is failing, because an underbar is being prefixed to all symbols. This is causing a symbol mismatch to the GLIB library ...
3
votes
1answer
4k views
makefile: how to add a prefix to the basename?
I have a list of file path like that:
FILE_PATH := a1.so a2.so bla/a3.so bla/a3.so bla/blo/a4.so....
I need to add a prefix to the basename in order to get:
FILE_PATH_PREFIX := liba1.so liba2.so ...
3
votes
4answers
1k views
About Trees and Prefix (Polish) Notation?
My MIPS Assembly class required me to read in an expression of unknown size into a Parse Tree. I've never had to deal with trees, so this is how I went around storing values:
Lets say the user ...
2
votes
1answer
61 views
Linux configure/make, --prefix?
Bear with me, this one's not very easy to explain...
I'm trying to configure, make and make install Xfce into my buildroot build directory. When configuring I'm using
...
2
votes
3answers
38 views
How to loop mysql tables that have default prefix using php
I looked at select from mysql db with 300 tables using a default prefix but I still don't understand.
Here's my problem:
The database has 5 tables named as pbtest01, pbtest02, pbtest03, pbtest04 and ...
2
votes
1answer
68 views
Spring Security ROLE_ prefix no longer needed?
I was investigating on how to create custom role prefix until I realized that it doesn't matter. As long as my role from my db matches something like:
<security:intercept-url ...
2
votes
9answers
201 views
Check if one string is a prefix of another
I have two strings which I'd like to compare: String and String:. Is there a library function that would return true when passed these two strings (but false for say String and OtherString)?
To be ...
2
votes
2answers
69 views
Recursively verifying if a string is a valid prefix expression?
I'm rather new to the community but I've seen some helpful posts on here so I thought I'd ask.
I've got a homework question that asks us to recursively check whether a given string is a valid prefix ...
2
votes
3answers
90 views
Add a prefix to each item of a PHP array
I have a PHP array of numbers, which I would like to prefix with a minus (-). I think through the use of explode and implode it would be possible but my knowledge of php is not possible to actually do ...
2
votes
3answers
211 views
How to configure SOLR so users can make prefix search by default?
I am using SOLR 3.2. My application issues search queries on SOLR instance, for a text field type. How can i make SOLR to return results like "book", "bookshelf", "bookasd" so on, when user issues a ...
2
votes
1answer
86 views
Easy way to chane .deb build prefix?
I am trying to make a live CD for simplifying chrooting into unbootable Linux systems for users, as many unbootable Linux issues could be fixed with chroot, but many users probably don't understand ...
2
votes
1answer
686 views
Xcode: How do I change my project folders name, without having building problems?
I would like to change the folder name where my Xcode project is in. But when I do that I can't build my project anymore. It shows me 2 errors that says:
Apple LLVM compiler 3.0 error
file "project ...
2
votes
1answer
182 views
Prefix vs Suffix Trie in String Matching
I'm not too well-versed about the actual algorithms used in string matching with tries.
I'm wondering why there seems to be more focus on suffix tries for string matching rather than prefix tries. ...
2
votes
4answers
249 views
C#: How to get the name (with prefix) from XElement as string?
This might be duplicate since my question seems so trivial, but I haven't been able to find the answer here on stackoverflow.com.
I have an XElement with data like this:
<abc:MyElement>My ...
2
votes
1answer
210 views
c# linq xml how to use two prefixes for same namespace
Is there a way in Linq to use two prefixes for the same namespace? Example, I have two prefixes below "foo1" and "foo2" pointing to the same namespace that I want to use in my document. How do I do ...
2
votes
2answers
395 views
How can I prefix ordered list item numbers with a static string using CSS?
I want this HTML...
<ol style="list-style:decimal;">
<li>Apples</li>
<li>Oranges</li>
</ol>
...to render like this
Q1. Apples
Q2. Oranges
In other words, I ...
2
votes
2answers
535 views
Problem with 'undefined namespace prefix' with XPath in PHP?
Very new to PHP/programming in general, and I've been trying to run a PHP file set up to parse an Atom feed outputted from the Google Search API for Shopping. When run however, the code outputs a ...
2
votes
1answer
357 views
Does Solr Suggester support infix search?
The wiki page of the Solr Suggester component does not mention how the provided field is searched? Is it a prefix only, or is there also an infix search possible?
2
votes
1answer
102 views
How can I change the Prefix Mapping in a Git-Svn Repository?
I've created a Git Clone of a SVN repository using git-svn. When doing this I specified the --prefix option to prefix my remote branches. I now want to get rid of this prefix.
Is there a way to ...
2
votes
1answer
2k views
“Namespace prefix not defined” when it actually is defined
I'm having trouble deserializing XML with an "undefined" namespace prefix which really is defined.
We've published an internal web service in C# which serves a variety of clients. A new client's IDE ...
2
votes
1answer
698 views
Converting a prefix expression to postfix
I'm trying to implement a program that changes a prefix expression to a postfix one using recursion.
I've written what I thought would work but instead of the output ab/c*de+f*- I get ...