The mode tag has no wiki summary.
1
vote
1answer
12 views
More insight on Register Indirect Mode for assembly language
I am reading a book about 80x86 assembly language entitled "Introduction to 80x86 Assembly Language and Computer Architecture Second Edition" by Richard C. Detmer. I am having a hard time understand ...
0
votes
2answers
24 views
Vim cursor going outside of character bounds in normal mode
Some setting changed on my vim. In normal mode, I can now click anywhere and my cursor will go there. (This is in normal mode.)
The behavior used to be that if I clicked past the end of the line, ...
-3
votes
1answer
28 views
Creating an Array with Rails
I am trying to create an array of unique values for future search.
I am using the query BBOrder.uniq.pluck(:trader) --> has 7 values in it and I want to add an 'ALL' option, so the search can return ...
2
votes
1answer
30 views
Program keeps returning None even though I don't have a definition in it
I was working on the extra questions for learnpythonthehardway.com. After writing a program that opened and read a file, I tried to alter it to add a mode to the open command. But whenever I do that, ...
0
votes
2answers
61 views
C: No such file or directory
when I hard code chemin in open(chemin, O_RDONLY) to a file name, the program works, but when I leave if to open(chemin, O_RDONLY) I get No such file or directory.
Why isn't chemin in type_fichier ...
0
votes
0answers
24 views
Where in my Google maps code can I add Travel Mode to Directions?
I have directions working on my custom map. However I was hoping to add the pulldown I found on Google's Developer site that allows choices like "Bicycle", "Driving", "Transit", "Walking".
Here is ...
0
votes
0answers
22 views
Setting IE document mode to edge won't work
This might be a dumb/simple thing, but I dont get to the bottom of this...
I have to use a very resticrive CMS (Jimdo) for a Webpage. The page document Mode was set to IE8, so I added
<meta ...
0
votes
1answer
42 views
AngularJS textbox value returns undefined
When I press my button, I want to print the value of my textbox in my console. But my textbox returns a undefined. It seems that all of the code are working perfect, I did it the same way as some ...
2
votes
1answer
103 views
Calculating mode in C — the math is a bit wrong
3rd day of C programming so bear with me. I'm doing a beginner's exercise in which I generate random numbers and calculate the mean, std dev., median, and mode.
Problems in the mode. I'm moving on to ...
0
votes
1answer
84 views
Disable sandbox mode for facebook app via api?
Does anyone know if there is an (undocumented?) field/property in graph api I can use to disable sandbox mode for an app?
I have checked ...
0
votes
1answer
59 views
Sonata Admin Bundle - Different field options in configureFormFields
Is there a possiblity to add different fields to a Sonata Admin Bundle Form depending on wether you're creating a new entity or editing an existing one in configureFormFields?
1
vote
0answers
34 views
PIL cannot write mode F to jpeg
I am taking a jpg image and using numpy's fft2 to create/save a new image. however i get, "IOError: cannot write mode F as JPEG" and I don't understand what to do. is there an issue with CMYK and JPEG ...
0
votes
0answers
57 views
Cannot find option to turn sandbox mode off for facebook tab app
I have just created a facebook tab application and everything works fine. However I can't turn off the Sandbox mode to make it live to non admins. I have looked in Settings - Advanced but there is no ...
-1
votes
1answer
22 views
Checking a 3x3 neighbourhood and using “mode” [closed]
I want to check the 3x3 neighbourhood of a pixel in matlab. For the pixel at the center, I want to assign it the value which is repeated most in the neigbourhood. For this, I used mode.
I just want ...
0
votes
0answers
19 views
How is dart VM's production mode faster when ignoring static types? Doesn't it need to do type inference at runtime?
Was just watching this introductory video - http://www.dartlang.org/dart-tips/dart-tips-ep-2.html and the presenter memtioned:
Production mode actually gets a speed boost by ignoring static types, ...
0
votes
1answer
44 views
MODE_PRIVATE in Broacast Receiver
I have defined a function in a class called Receiver that extends the Broadcast Receiver.
The code of the function is like this:
public List<DatabaseRow> ToUpload()
{
...
1
vote
1answer
47 views
PHP lstat command doesn't distinguish shortcuts in windows
In windows, I open a dir, read the files, and for each file, run stat to determine the size, etc.
The problem is that when I run stat on a folder SHORTCUT, it comes back as a FOLDER, and I can't see ...
0
votes
0answers
11 views
What's the difference between OpenVG Matrix Modes?
The OpenVG specification mentions four different types of matrix modes:
VG_MATRIX_PATH_USER_TO_SURFACE
VG_MATRIX_IMAGE_USER_TO_SURFACE
VG_MATRIX_FILL_PAINT_TO_USER
VG_MATRIX_STROKE_PAINT_TO_USER
...
0
votes
2answers
101 views
How to make spinner in dialog mode?
I have button in my application and when I click on this button, it opens a spinner, but spinner is in dropdown mode and I need to make it in dialog mode. For API 11 and higher, there is a simple code ...
0
votes
0answers
20 views
Does Google Analytics account for browser mode or document mode in IE?
Usage stats show that the number users with older versions of IE are thankfully decreasing but can this be relied on?
If a page is visited in IE9 but set to IE7 Browser mode and/or document mode, ...
0
votes
1answer
28 views
Paramiko determine whether file or directory
Related to How to list all the folders and files in the directory after connecting through sftp in python:
I'm trying to see walk over the contents of a directory and determine whether or not each ...
0
votes
1answer
119 views
C++ Looking for the Element with the highest occurence in an array
I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a C++ ptr array.
For example, in
{"pear", "apple", "orange", "apple"}
the "apple" element is the ...
0
votes
1answer
45 views
C# Step Into variable list
There usually is a variable list at the bottom of the screen that helps me follow the value of different variables in my app while using the f11 'step into' function, but since I updated to web ...
1
vote
1answer
85 views
Most efficient way to find mode in numpy array
I have a 2D array containing integers (both positive or negative). Each row represents the values over time for a particular spatial site, whereas each column represents values for various spatial ...
-1
votes
1answer
93 views
How to find the mode of an ArrayList in Java [duplicate]
How would you find the mode of an ArrayList in Java?#
public class test {
public static void main (String [] args) {
ArrayList <Integer> max = new <Integer> ();
//* declared ...
2
votes
1answer
25 views
How to transform xml block?
I am new at XSL and I couldn't find anywhere like following case. I want to transform source.xml to target.xml. I have use mode"group" but it didn't work for me (probably I couldn't use it properly)
...
0
votes
0answers
22 views
Hbase mapreduce fails on cluster
I have a mapreduce program that first scans an HBase table.
The mapper will emit all row keys to a HDFS file.This works fine on local machine.But when I tried to run the code in distributed mode(I ...
0
votes
0answers
21 views
What kind of applications need to be run in administrator mode?
I need to develop an application to run in Windows Server 2012 that uses a MySQL database and I was considering developing a Windows Store app, but in the answer for this question at SU, Can Windows ...
1
vote
1answer
37 views
Get the mode values of a column
I have a table (sample below) which contains results from a phone vote
Number Voted
97867 Dog
97868 Cat
97869 Dog
97870 Dog
97871 Cat
97872 Donkey
I query the data using
$stmt = ...
4
votes
4answers
3k views
Java popup saying applications contains both unsigned and signed code
I am using Mac 10.7 running Java 1.7.0_21. I am trying to run a Java applet application that is signed and towards the end of the application I get a mixed mode security popup saying "Block ...
2
votes
1answer
81 views
How to enable a package/mode on emacs startup?
I want to enable rainbow-mode everytime I start emacs, rather than having to press M-x rainbow-mode
But just a general question, how do I load any mode/package automatically on startup?
I guess ...
0
votes
1answer
37 views
How to ignore prefix on certain models? CakePHP
I have to read data from a table called sys_sbu which is in the same database as my app. However, I have set tr_ to be the prefix of all my tables. When I tried to use $useTable = 'sys_sbu' on my ...
0
votes
2answers
61 views
finding mode from histogram
i have this function to print the histogram, I suppose to use this function calculate mode as well, I understand that to find mode you need to compare number of occurrences of each score, but I can't ...
0
votes
0answers
144 views
Magento Compilation make white blank page only in Back-end / Configuration page
A lot of page I seen and read how to disable the compilation mode if enabled and a make blank page. But I nowhere seen how to fix it... So when I installed up to my Magento and enabled this ...
0
votes
0answers
30 views
Slider Help how to Move it With Mouse
I make Function to Move Slider Auto
function move(elem) {
var left = 1
function frame() {
// left++ // update parameters
elem.style.left = left + '10px' // show frame
left++
...
1
vote
1answer
108 views
check .htaccess code for remove html extensions and redirect 301 [closed]
I have been struggling with this for a while, this is my copy of my .htaccess file. I don't think this code does what I want. Which is to remove html extensions and 301 redirect to new url.
What I ...
0
votes
1answer
311 views
iPhone css hover should go back normal 'unhover'
I'm working on a web app for the iPhone…
I made a 'button' with the following CSS, when you tap it (:hover) it changes, but when you release, it should go back to normal mode… How do i do that ?
...
1
vote
0answers
106 views
IE8 renders web page differently based on browser mode even though document mode is fixed - Intranet site
I am finding that IE8 renders web pages differently based on Browser mode despite Document mode always being set the same. Is this an IE8 bug?
Background is:
A corporate intranet being viewed by ...
0
votes
2answers
185 views
iOS Background Mode
I have a question about running an app in the background.
I know about how to do it, but Apple does not like the way I'm doing it.
To get you on the same page, I have a security app, and I need to it ...
1
vote
1answer
78 views
UIAlertView is not shown when returning from sleep mode in iOS app
My app must sometimes show an UIAlertView when the Home button or the locking button is pushed or when the notification center is shown.
I show the Alert from the applicationWillResignActive ...
3
votes
2answers
690 views
Write a mode method in Java to find the most frequently occurring element in an array
the question goes: Write a method called mode that returns the most frequently occurring element of an array of integers. Assume that the array has at least one element and that every element in the ...
1
vote
1answer
93 views
How to Create an MSI which runs in passive mode using WIX?
How can I create an MSI using WIX that can run in passive mode?
If I double click on the msi it should launch in passive mode. This should be equivalent of running MSI package with /passive or /qb!- ...
3
votes
2answers
137 views
Oracle DDL execution with immediate mode and errors
After doing about two hours' worth of research on various issues with execute immediate and error handling, I don't think I've encountered exactly the problem I am about to present. I have reduced my ...
2
votes
1answer
70 views
Writing a user-function to return column position, column name, mode and class for every variable
I need to write a user-defined function that, when applied to a data frame, will return the column position, the column name, the mode, and the class for each variable. I am able to create one that ...
3
votes
0answers
646 views
Android USB OTG Read Usb Drive
I am currently working on a project which requires Usb Host mode in Android (using 4.2.2). I need to be able to do standard file operations like listing files and reading from a usb drive. Using the ...
0
votes
0answers
916 views
How Android 4.0.4 open recovery mode? [closed]
I create the Android under layer. But I can not find the recovery, and I do not know how to open this recovery mode.
The Environment is: Android 4.0.4
There is a recovery catalogue in bootable of ...
1
vote
0answers
867 views
Samsung enable disable “Driving mode”
I would like to enable/disable Driving mode which is available on some Samsung devices (Galaxy S2, S3). I know I have to put something to system settings, but I don´t know what. So please advice me ...
-1
votes
1answer
218 views
Blowfish ECB Mode in BouncyCastle
This thread should not be for discussion on how bad ECB mode is, and that I should change it, but that BouncyCastle doesn't really support the mode, except for in Java, where you can use ...
0
votes
0answers
26 views
Mod_rewrite to folders and subfolders
I have the following mod_rewrite conditions:
RewriteCond %{HTTP_HOST} ^www.A.com$ [NC]
RewriteCond %{REQUEST_URI} !/A/
RewriteRule ^(.*)$ /A/$1 [L]
which rewrites my domain A.com to the subfolder A ...
0
votes
0answers
210 views
is ie7 mode inside ie10 reliable?
My site works well if i use IE7 standard mode emulation with IE10 but totally freaks out with native IE7, having totally messed css almost everywhere.
Can i force this standard mode on native IE7 or ...





