Tagged Questions
The prefixes tag has no wiki summary.
6
votes
1answer
210 views
Combining prefixes in SSE
In SSE the prefixes 066h (operand size override) 0F2H (REPNE) and 0F3h (REPE) are part of the opcode.
In non-SSE 066h switches between 32-bit (or 64-bit) and 16-bit operation. 0F2h and 0F3h are ...
4
votes
2answers
79 views
Repeat prefixes and mandatory prefixes in x86
In my quest of writing a small disassembler for linux specific to x86 arch, I'm faced with a small issue. It's with regard to mandatory prefixes and repeat prefixes. Looking at the Intel docs [1], ...
4
votes
10answers
172 views
Python: finding whether a string starts with one of a list's variable-length prefixes
I need to find out whether a name starts with any of a list's prefixes and then remove it, like:
if name[:2] in ["i_", "c_", "m_", "l_", "d_", "t_", "e_", "b_"]:
name = name[2:]
The above only ...
3
votes
6answers
571 views
If you are using getters and setters, how should you name the private member variables?
As kind of a follow up to this question about prefixes, I agree with most people on the thread that prefixes are bad. But what about if you are using getters and setters? Then you need to differeniate ...
2
votes
4answers
175 views
PHP Class Namespaces vs Prefixes
Just a quick question on your preference of using PHP namespaces or class prefixing.
<?php
// ----- namespace -----
use My\Namespace;
$object = new Namespace\Object;
// ----- prefix with PR -----
...
2
votes
4answers
161 views
Formatting an Integer using ISO-prefixes for kB,MB,GB,… and kiB,MiB,GiB,
I looking for the function that prints file size on the mode-line in size-indication-mode. I have searched for size-indication-mode in the source but cannot find a code-references to it. So where is ...
2
votes
1answer
112 views
Use the same linq with different table prefixes
I have a webapplication that uses LINQ to connect to a database.
The problem is that I Only have 1 database, and I need a several copy's of the tables, 1 copy / client. Is it possible to make linq use ...
1
vote
3answers
60 views
Different table prefix for one table?
Hypothetically, let's say I had multiple installations of some odd MySQL/PHP driven software. They are the same software so the database table structure is the same cross all of the installs. What I ...
1
vote
1answer
77 views
Do I still have to use all five vendor prefixes for the CSS box-shadow property?
When declaring say box-shadow or text-shadow or gradients for that matter, do you still need all the prefixes?
-webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
-moz-box-shadow: inset 0 0 1px 1px ...
1
vote
1answer
72 views
Multiple common prefixes among different paths
Sorry for the title, my problem is as follows. I have a list of paths and I want to get multiple common prefixes. For example, given I have:
...
1
vote
1answer
75 views
Slicing the prefix from the stem in Python
I want to slice the affixes from stem. I tried the suffixes with the following command and it was OK for 'dishes'. However when I want to do it with a prefix (for example, 'undo'), how can I define ...
1
vote
1answer
1k views
Asp.Net MVC2 Clientside Validation problem with controls with prefixes
The problem is: when I put 2 controls of the same type on a page I need to specify different prefixes for binding. In this case the validation rules generated right after the form are incorrect. So ...
0
votes
1answer
39 views
What is the best way to represent a category hierarchy using term prefixes in Xapian?
Assume I have the following example hierarchy:
US
Michigan
Detroit
Grand Rapids
Lansing
Minnesota
Grand Rapids
Minneapolis
St Paul
Ohio
Columbus
Grand Rapids
Sandusky
I see two ways that I ...
0
votes
2answers
67 views
minimal cyclic sub string in a bigger cyclic string
I am trying to find an algorithm that culd return the length of the shortest cyclic sub string in a larger cyclic string.
A cyclic string would be defined as a concatenation of tow or more identicle ...
0
votes
2answers
123 views
jquery selector with prefixes
This is my HTML code:
<div id="editorRows">
<div class="editorRow">
<input type="hidden" value="01c4ed6d-1234-4951-b048-d86208636479" autocomplete="off" name="comds.index">
...
0
votes
8answers
588 views
Function in c++ for finding if a word is prefix
Let say i have some words AB, AAB, AA.
AB is not a prefix to AAB but AA is a prefix to AAB because if i just add B at the end of AA it will become AAB, which is not possible with AB.
So, is there ...