The mode tag has no wiki summary.
0
votes
0answers
1k views
Mean shift implementation in C++
Can anyone recommend a lightweight mean shift clustering implementation in C++? I am already using OpenCV, however their mean shift implementation is for tracking, not clustering. I have seen EDISON, ...
1
vote
1answer
94 views
Python 3.0+ Calculating Mode
I have written a rather lengthy program to calculate the most often occurring number. And this works great! Unless you have 2 most occurring numbers in a list such as 7,7,7,9,9,9. For that I wrote in:
...
1
vote
2answers
49 views
Make all functions strict mode literal object?
Let's say we have this script.
var apple = {
type: "macintosh",
color: "red",
getInfo: function () {
return this.color + ' ' + this.type + ' apple';
}
///more functions ...
-1
votes
2answers
82 views
way to check original file permissions in linux [closed]
I was wondering if there was a way to check factory original file permissions of important system config files in linux, solaris, and freebsd systems etc. I'm creating a hardening software tool in ...
0
votes
1answer
391 views
Android phone , what units are shut off In sleep mode
I have a scenario that the android device exchanges data with a FTP server via Roaming service. I hope to make OS enter proper sleep mode by setting WakeLock type during the data transferring because ...
0
votes
1answer
61 views
An attempt to update a NOT NULL var char field sets the field to an empty string rather than failing. Is this correct behaviour
I would have expected this to fail, but instead it wipes the existing data and replaces it with an empty string. Is this correct behaviour? If it is, is there a work around to force an error instead
...
0
votes
0answers
52 views
Switching to protected mode in bochs PC simulator
I'm working on the bochs x86 emulator but I'm having trouble with switching to protected mode. At the moment this is the [relevant] code I have, but it's not working, i.e. it's not switching to ...
0
votes
2answers
119 views
IE8 documentMode always 'quirk mode'
I'm trying to print a message to the user when he is using an IE version bellow IE8. To test it I enabled the Document Mode 8. But when I ask for the Document Mode in javascript I always receive the ...
-1
votes
1answer
115 views
OCaml find the mode of a list [closed]
So here is the question.
Say I have a list [1;2;2;3;3;3]
I want to find the mode of it, which is 3.
There is one restriction about it : rec is prohibited, and List.fold_left or List.fold_right has ...
0
votes
1answer
97 views
How to produce multiple modes in Python?
Basically I just need to figure out how to produce modes (numbers occurring most frequently) from a list in Python, whether or not that list has multiple modes?
Something like this:
def print_mode ...
0
votes
1answer
124 views
Data Type of Columns in a List - R
I want to "extract" the data types of the different columns in a list in R.
I'm using the following function:
my.data.types <- t(sapply(loansData,
function(x) c(typeof(x), ...
2
votes
3answers
121 views
How to find the mode of a list in prolog?
Can someone please tell me how to find the mode of a list in Prolog?
I have tried this:
count_elt([], _, 0) :- !.
count_elt([H|T], H, P) :-
count_elt(T, H, P1),
P is P1 + 1, !.
...
0
votes
2answers
113 views
Bison C++ multiple error recovery with missing semi colon
I'm devloping my own compiler, and I hava problem with error recovery design
in panic mode for java grammer.
I thought about multiple solutions, but real question:
How I could do that with bison ...
0
votes
2answers
82 views
.emacs .txt file visual-line-mode simultaneously with muse-mode
I indicate my muse-mode files (usually named with .txt suffix) as being muse-mode by starting them with a "#title". To do this, I have
;; muse-mode on *.txt files, if a #title or sect. ...
0
votes
1answer
193 views
replace multiple values with regular Expression (Extended search mode) in notepad++ [closed]
i was searching for some tool to help me to replace tag with multiple values, but i quickly realized that notepad++ which i use can help me, especially with what they call it "regular Expression"
...
1
vote
0answers
159 views
Django maintenance mode approach
i use an approach to maintenance mode on my django project:
in settings i declare a variable named: MAINTENANCE_MODE
after imported settings file in urls.py, i use if condition related to ...
-2
votes
3answers
234 views
ZXing on Android: how to set camera in negative mode?
I want to use zxing in an android project. I have download the code and the example app is running now (ZXingTestActivity). For your information, i am not very familiar with coding native android.
I ...
5
votes
7answers
307 views
Most frequent character in range
I have a string s of length n. What is the most efficient data structure / algorithm to use for finding the most frequent character in range i..j?
The string doesn't change over time, I just need to ...
3
votes
1answer
67 views
How can I get git to read mode changes?
I've changed permissions on a folder and want to push it out to the repository. However, git doesn't recognize the permission changes.
Any idea why not and how to fix it? Thanks in advance.
1
vote
0answers
68 views
OpenCV: compute the statistical mode of a set of cv::Mat
I am using the following to obtain the statistical mode of a set of cv::Mat:
vector<Mat> imgs(30);
...
...
Mat mode = Mat::zeros(imgRows, imgCols, CV_8U);
for(int i=0;i<mode.rows;i++)
{
...
1
vote
1answer
115 views
How do I find the PHP equivalent of the MySQL WEEK function with mode 7?
Using PHP, how do I find the week number where:
the First day of week is Monday,
week 1 is the first week with a Monday in this year,
and the range is from 1-53?
I'm trying to achieve the PHP ...
0
votes
1answer
110 views
Android internal storage, which mode should I use?
I'm making an app that has a listview with a child listview for each parent listview item. The children have a few children items as well. You can add/delete an element from any of these lists. I'm ...
0
votes
1answer
157 views
Make Blend Modes in SVG actually work?
I've many times done the following:
<defs>
<filter id="screen">
<feBlend mode="screen" in2="BackgroundImage"/>
</filter>
</defs>
But when I, inside a shape, write ...
1
vote
0answers
657 views
Force portrait or landscape mode in android depending on screen size
I've been doing some research over the last few hours, as well as some trial and error, however I am not able to find a fully working solution for this problem. I would simply like to force my android ...
2
votes
2answers
95 views
Tridion 2011 CMS: Resource interpreted as Stylesheet but transferred with MIME type text/html
I've installed a custom msi on the Tridion 2011 CMS which updates many Tridion configs and do not have an insight of what configuration got changed. Now all css' are interpreted as text/html instead ...
0
votes
0answers
49 views
What is the time complexity of finding mode, median and standard deviation
I have a big array of 32 bit integer numbers. What is the time complexity I can calculate the mode, median, and standard deviation of the list?
If any reference is possible for analyzing the ...
0
votes
2answers
76 views
Changing cursor color based on a minor mode
I have written a minor-mode, it defines some key bindings and does some initialization. The mode properly sets up Navi-mode and Navi-mode-map.
How do I enhance this minor-mode to change the color ...
1
vote
5answers
154 views
Keep vim always in command line mode with a “:”
Is there a way to make vim stuck in command mode with a : already typed in?
In that way, for instance:
I would type /fooEnter and the cursor would go to the beginning of the next line containing ...
0
votes
0answers
60 views
Scene mode change to bell from silence automatic
I set phone scene mode and drop-down menu silence and vibrate. I am sure it is set well.
But when the call back it is a bell, the scene mode change to bell from silence. And drop-down menu also ...
1
vote
1answer
69 views
Check whether mode is on emacs
How to check whether in the current buffer a mode is on?
I tried this for LaTeX, for which I wanted to have an align function align on &, but only if I am in a LaTeX buffer, not in an ESS mode ...
0
votes
1answer
501 views
Force FullScreen on EditText in Android
I am currently developing an app with Samsung Galaxy Tab 2 as my device.
My Code in the XML is
<EditText
android:id="@+id/analysis_text"
style="@style/icon_text"
...
-1
votes
1answer
361 views
How to get rid of run as administration requirement in Windows 7 for Visual Studio [closed]
How to get rid of run as administration requirement in Windows 7 for Visual Studio and command prompt? There was one setting on user console or something (one of my ex-colleague showed me in the ...
0
votes
1answer
174 views
Using Browser and Document mode settings correctly
I have a wordpress site with ie html5.
Its fine in IE9,7 FF, Ch, Op and Saf. However, IE8 might be giving problems on one page http://www.haywardsdrycleaners.com/services/
I say might because I am ...
1
vote
1answer
35 views
IAR directive for Simulator
I'm using IAR EWARM 5.4 , I wondered if there is a directive to show the compiler in Simulator mode.
For example, I want a part of my code to be only compiled in Simulator mode but will be ignored in ...
0
votes
1answer
304 views
Appending to existing file from resource file in Linux C Program
i've trying to perform appending to an existing file from resource file using the C programming in Linux. However, my code doesn't work for that, can any1 do tell me what's wrong with the code and ...
1
vote
2answers
435 views
C++ How can I find the mode(s) of an array?
I have to write a function that finds the mode of an array of values for class. It takes two arguments: the array of values and a variable equal to the number of valid values in the array. It sounded ...
0
votes
3answers
176 views
Can we find mode of an array without hashmap in un sorted array in O(n) time
Can we find the mode of an array in O(n) time without using Additional O(n) space, nor Hash. Moreover the data is not sorted?
1
vote
2answers
148 views
python-mode 6.0.12 indent after return or pass
I use python-mode in emacs.
I have been using for 1 month with no problems.
Now I have a problem, in that whenever I 'return' or 'pass' a function inside a class, the indent returns to the start of ...
0
votes
0answers
232 views
IE=EmulateIE8 not working?
Can anyone tell me is there anything wrong in this below code
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8,chrome=1" />
Inspite of this html line included in my code i am unable to ...
2
votes
1answer
125 views
Matlab: Find the most repeated value in a cell (revised)
To my code idxcell{:,1} for 1:10 iterations gives the following results:
ans =
9 10 14 15 19 20 24 25
ans =
Columns 1 through 13
7 8 11 12 ...
1
vote
0answers
50 views
Asp.Net State Server Service should RUN in all production web servers?
Asp.Net 2.0 Session State Mode = State Server and poiniting to the 1st server only in all webservers web.config
My Doubt
We have 6 production servers for our project. Do I need to make sure the ...
0
votes
1answer
1k views
AS3 direct rendering mode — what does it accelerate?
Direct rendering mode. What exactly is this used for? "Treating the entire frame as a Stage3D surface" does nothing for me. I hear reports that it is the "fastest" rendering mode, but in what way? ...
0
votes
1answer
209 views
Calculate mode in SQL
I have seen the answer from a previous post, which works fine but I have a small dilemma.
Taking the same scenario:
A table that list students' grades per class. I want a result set that looks like:
...
0
votes
2answers
149 views
shouldAutorotateToInterfaceOrientation doesn't work properly
I want to lock orientation to Portrait if device is iPhone, and allow all orientations if the device is iPad.
I have this code, but it doesn't lock iPhone in Portrait mode:
- ...
2
votes
2answers
123 views
How to generate .exe drivers instead than .sys?
I'm new in kernel mode world. I've tried to write a simple "hello world" driver in a Windows 7 virtual machine, I'm using WDK 7600.16385.1 -> x86 Free Build Environment for compilation, when it does, ...
2
votes
3answers
321 views
Where is the mode bit?
I just read this in "Operating System Concepts" from Silberschatz, p. 18:
A bit, called the mode bit, is added to the hardware of the computer
to indicate the current mode: kernel(0) or user(1). ...
0
votes
1answer
62 views
Multi foreign key's in table with CakePHP
I have one situation where i want to take 3 foreign keys in one table.
And associate that table with 3 models. Is that a good practice to follow with CakePHP?
e.g. I have User, Roles, Multiple ...
0
votes
2answers
318 views
Wordpress PHP Safe mode [duplicate]
Possible Duplicate:
Is setting the uploads folder 777 permision secure?
I am using WordPress on my new host, and when I try to install a plugin I get this;
Warning: touch() ...
1
vote
1answer
910 views
Flot will not Zoom if xaxis is in the time mode
I am using flot zooming via jquery.flot.navigate.js
Zooming via the mousewheel on stops working if I am using xaxis in mode: "time". Zooming by double clicking continues to work.
See example:
var ...
0
votes
1answer
102 views
How can i just blend two images, put one over another and apply overlay in Xcode
How can i just blend two images, put one over another and apply overlay in Xcode
**i do this:**
cell.imageView.image = [UIImage imageNamed:@"yellowOrbTest"];
UIImageView ...



