The mode tag has no wiki summary.
0
votes
1answer
9 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
4 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
7 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
17 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 ...
2
votes
1answer
4k views
How to control “Browser mode” in Internet Explorer 9 by commandline
I still haven't been able to find a solution to this problem. We have an application that launches a browser window but the underlying third party addin that we are using doesn't support IE9 yet. I ...
0
votes
0answers
12 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, ...
4
votes
5answers
2k 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 ...
0
votes
1answer
31 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
38 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
8 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
62 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
1answer
101 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
0answers
15 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
19 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
40 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
59 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 ...
7
votes
3answers
6k views
Is it possible to write an Android broadcast receiver that detects when the phone wakes up?
I want to figure out how to detect when the phone wakes up from being in the black screen mode and write a handler for that event. Is that possible? It seems like this would be something a Broadcast ...
-1
votes
1answer
72 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 ...
4
votes
3answers
562 views
Vim: why doesn't “:normal! i” enter insert mode?
In vim, if I execute the following from the command line
:normal! i
vim does not enter insert mode. Likewise the command
:normal! A
will move the cursor to the end of the line, but the cursor ...
2
votes
1answer
24 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
20 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
18 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 ...
0
votes
4answers
1k views
Finding Multiple Modes In An Array
I'm trying to write a java method which finds all the modes in an array. I know there is a simple method to find the mode in an array but when there are more than one single mode my method outputs ...
1
vote
1answer
36 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 = ...
10
votes
5answers
3k views
Get the element with the highest occurrence in an array
I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a JavaScript array.
For example, in
['pear', 'apple', 'orange', 'apple']
the 'apple' element is ...
0
votes
1answer
35 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 ...
2
votes
1answer
59 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
2answers
47 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
92 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
20 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
85 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
159 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
90 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
118 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
68 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
441 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 ...
0
votes
0answers
39 views
telnet input mode
I managed to run php from command line as a server and use telnet as client in windows 7. The problem is that when input from telnet I get response from the server for every character I write. What I ...
1
vote
1answer
73 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
111 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
64 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
595 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
866 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
842 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
175 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
23 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 ...
1
vote
3answers
313 views
Please explain this color blending mode formula so I can replicate it in PHP/ImageMagick
I've been trying to use ImageMagick to replicate Photoshops Colour Blend Mode. I found the following formulas in an online guide but I don't know what they mean. Do I just need to swap certain ...
0
votes
0answers
155 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 ...
0
votes
1answer
127 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 ...
0
votes
0answers
917 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
83 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:
...





