Tagged Questions
The mode tag has no wiki summary.
22
votes
3answers
3k views
How to write an emacs mode for a new language?
I would like to write an Emacs major mode for a 4GL.
Can someone show me a tutorial?
As far as I googled I was able to find only this broken:
link http://two-wugs.net/emacs/mode-tutorial.html
14
votes
3answers
3k views
How can one detect airplane mode on Android?
I have code in my application that detects if Wi-Fi is actively connected. That code triggers a RuntimeException if airplane mode is enabled. I would like to display a separate error message when in ...
13
votes
5answers
12k views
Detect IE8 Compatibility Mode
We have not had time to fully test IE8 with our fairly extensive system. We are also reaching the point at which we can't prohibit the use of IE8. Our users are stubborn and not terribly ...
9
votes
2answers
860 views
emacs lisp, how to get buffer major mode?
I have tried to search Google and look in the manual, but still cannot find how to get major mode of a buffer object. Can you help me with an example or a reference. Thanks
only solution I could ...
8
votes
4answers
4k views
Getting Nexus S Android NFC into Card emulation mode
Has anyone been able to get the nexus s into card emulation mode?
The latest android release does not seem to support this yet.
This article says it's possible ...
8
votes
1answer
891 views
How to force a WPF application to run in Administrator mode
I have an WPF application which access windows services, task schedulers on the local machine.
When I deploy this WPF application and run it without "Run as Administrator" , it fails as it is not ...
8
votes
5answers
1k 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 ...
7
votes
1answer
3k views
How does git handle folder permission?
I'm using git version 1.5.6.3, and it seems git doesn't notice a folder's mode changes
#create a test repository with a folder with 777 mode
:~$ mkdir -p test/folder
:~$ touch test/folder/dummy.txt
...
6
votes
5answers
308 views
Is there a posibility to execute a Python script while beeing in interactive mode
Normally you can execute a Python script for example: python myscript.py, but if you are in the interactive mode, how is it possible to execute a Python script on the filesystem?
>>> exec(File) ???
...
6
votes
2answers
2k views
How to detect Render Mode of browser for current page?
I know that modern browsers generally have two render mode: standard mode and quirk mode. The browser detects the heading DocType.
The question is how to detect render mode of current page at ...
5
votes
2answers
348 views
ARM modes and why are there so many?
I'm currently reading/learning about ARM architecture ...
and I was wondering why there are so many modes
(FIQ, User, System, Supervisor, IRQ, ...).
My question is why do we need so many modes? ...
5
votes
2answers
3k 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 ...
5
votes
4answers
5k views
IE8 Browser Mode & Standards Mode
I need to force IE8 to display as follows:
Browser Mode: Internet Explorer 8
Document Mode: IE8 Standards
I have added this tag however it only affects the document mode, not the browser mode. How ...
5
votes
3answers
1k views
Detecting Vista IE7 Protected Mode with Javascript
I'd like to be able to detect Vista IE7 Protected Mode within a page using javascript, preferably. My thinking is to perform an action that would violate protected mode, thus exposing it. The goal is ...
4
votes
1answer
3k views
How to select debug/release mode in Xcode4?
Today, I realized that there is no debug/release mode selector in Xcode4. What's going on?
4
votes
3answers
839 views
Computing the mode (most frequent element) of a set in linear time?
In the book "The Algorithm Design Manual" by Skiena, computing the mode (most frequent element) of a set, is said to have a Ω(n log n) lower bound (this puzzles me), but also (correctly i guess) that ...
4
votes
3answers
2k views
decoding the CLLocationAccuracy const's
the following are listed in CLLocation.h but from my experience they are deceiving names- possibly originally thought up to serve two purposes, 1. to test the accuracy of the location returned, but ...
4
votes
3answers
317 views
in rails what is the difference between development mode and production mode?
Currently, I am using the Development mode for my application, but I don't know if I should use the Production mode. If it is the case, how do i transfer all my data to the Production mode?
Will ...
4
votes
1answer
108 views
Assign a keymap to a derived mode in emacs
How can I assign a keymap to a derived mode in emacs (I am using the define-derived-mode function). There is a derived-mode-set-keymap function but without examples or good documentation.
4
votes
3answers
112 views
How to detect when the laptop is running on batteries in .NET?
How to detect when the laptop is running on batteries (or AC) in .NET?
Thanks,
Mahesh
4
votes
3answers
451 views
Emacs mode that highlight Lisp forms
What is the Emacs mode or package that highlights Lisp forms changing the color of the backgrounds so that the form you are in has one color, the outer form another, the outer outer form another and ...
3
votes
2answers
99 views
How to calculate the statistical mode in Processing / Arduino
I'm a design teacher trying to help a student with a programming challenge, so I code for fun, but I'm no expert.
She needs to find the mode (most frequent value) in a dataset built using data from ...
3
votes
4answers
40 views
ie6 frame or mode for ie 7/8/9?
Very backwards question really, but we have a legacy system which only works with ie6, and no-other browser.
Theres not much chance of this system being renewed anytime soon unfortunately and having ...
3
votes
3answers
99 views
Emacs mode: how to specify that thing in square brackets should be colored
I write a simple emacs mode. How do I explicitly specify that all things in e.g. square brackets should be colored. Must be smth like that:
( (if thing is in square brackets) . font-lock-string-face)
...
3
votes
2answers
115 views
How to compute conditional Mode in R?
I have a large data set with 11 columns and 100000 rows (for example) in which i have values 1,2,3,4. Where 4 is a missing value. What i need is to compute the Mode. I am using following data and ...
3
votes
1answer
454 views
How can I make iPhone Silent mode independent to iPhone App?
Is it really possible to make iPhone Silent mode independent to iPhone App ?
This App "Talking Carl" makes me so confused. My iphone was in Silent mode. And whenever I open this application. ...
3
votes
1answer
112 views
NSDate slips back or forward an hour when in airplane mode or after DST transition
I have an application the plays an alarm sound at a scheduled time.
This is setup as a recurring alarm that will go off every day at the same time.
For example: Wake up at 6am every day.
I first ...
3
votes
3answers
304 views
Linux: Detect 64-bit kernel (long mode) from 32-bit user mode program
What's the best and most reliable way to detect if a 32-bit user mode program is running on a 64-bit kernel or not (i.e. if the system is in 'long mode')? I'd rather not call external programs if ...
3
votes
3answers
306 views
Why can't I call BIOS interrupts from protected mode?
Right. I've spent over three hours today trying to understand why you can't call a bios ISR when in protected mode. I get that once you set and IDT it wont necessarily be in the usual address for the ...
3
votes
3answers
791 views
WPF TextBox: How to change binding mode default to OneWay?
Initially, I have the following code:
<TextBox Text="{Binding LengthUnit, Mode=OneWay}" IsReadOnly="True" Background="{x:Static SystemColors.ControlBrush}" />
I know I can define a style like ...
3
votes
2answers
195 views
Find the most repeated row in a MATLAB matrix
I am looking for a function to find the most repeated (i.e. modal) rows of a matrix in MATLAB. Something like:
>> A = [0, 1; 2, 3; 0, 1; 3, 4]
A =
0 1
2 3
0 1
3 4
Then ...
3
votes
4answers
370 views
Would a scheduled Java app run when Windows is in sleep mode?
If I start a Java app, it initiates and does some work then goes to thread sleep for an hour, then wake up after an hour and does some more work ...
But my PC is running Win7 and after 15 minutes of ...
3
votes
2answers
180 views
Perl's taint mode in PHP
Just wondering... is there a PHP equivalent to Perl's Taint Mode? I don't think there is, but thought I'd ask.
2
votes
2answers
301 views
Android Development on Samsung Galaxy S
I am trying to test my Android apps in my Samsung Galaxy S i9000 but I dont know why, I cant. It doesn't appear in the Devices tab on Eclipse.
I've downloaded the Google Drivers via SDK Manager, I've ...
2
votes
4answers
91 views
EEmacs how to bind command to all keys? P.S. Except some
I want to make a minor-mode (foo-mode) which has its keymap (foo-mode-map), but when the user presses any key not in (foo-mode-map), the minor-mode should quit. How do I bind the turn-off-foo-mode ...
2
votes
4answers
88 views
XSLT 1.0: apply-templates and template mode
I have the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<Order>
<Item>
<RECORD_ID>RECORD_ID</RECORD_ID>
...
2
votes
1answer
155 views
python.el shell and execute buffer
I am using the python.el from fgallina python.el github There is a long list of features but I am unaware of how to use them.
EDIT: Found this mode was working, however didn't automatically open the ...
2
votes
1answer
219 views
How to force IE8 into compatibility mode WITHOUT clicking the button
I was recently asked to assist my city with their website. What i found when i went there, was they had been using Web Expressions. When they previewed the page within the program, it looked fine, ...
2
votes
1answer
107 views
emacs jruby config — using java
Is anyone using Jruby in emacs? I have setup emacs and it works perfectly for ruby code using jruby. However notice that java code isn't executing from within emacs. I have installed mode-compile and ...
2
votes
2answers
148 views
Finding a mode with decreasing precision
I feel like there should be an available library to more simply do two things, A) Find the mode to an array, in the case of doubles and B) gracefully degrade the precision until you reach a particular ...
2
votes
1answer
441 views
grails sessionFactory.currentSession.flushMode not work with thread?
In grails we have the following config:
DataSource.groovy:
hibernate {
flush.mode="commit"
}
which prints "COMMIT" when we log it in a transactional context:
println ...
2
votes
3answers
2k views
prevent mobile from going into sleep mode when app is running
I want to prevent Android Mobile from going into sleep mode when my threads are sending HTTP request. as what happened while threads are doing HTTP calls mobiles goes to sleep mode and when user wakes ...
2
votes
6answers
206 views
Return to normal mode without leaving the home row
I've been trying out vim, and the emphasis on speed and accessibility makes sense for the veteran programmer. I've previously used emacs, and currently use a combination of nano, and stuff like gedit ...
2
votes
1answer
444 views
c# datagridview in virtual mode
Let's say I got a DataTable with columns A,B,C,D,E.
I got a DataGridView that works in virtual mode because I had to add a column that is unbound with DataTable. This additional column is a combobox ...
2
votes
1answer
206 views
Vim: Different line-number color in the different modes
I've just started using Vim and I find myself being confused on which mode I'm currently in. I was wondering if it's possible to change the line number color (which I have displayed by default) in ...
2
votes
2answers
166 views
How to start GWT in web mode?
I'm using the Eclipse GWT plugin to start my GWT application. It's always starting in "development mode". How can I start it in web mode? (I guess that one doesn't need the Firefox Plugin?)
2
votes
1answer
107 views
C: strange behavior with nftw()
I've this code:
#include <ftw.h>
#include <stdio.h>
#include <string.h>
int nftw_stat(const char *path, const struct stat *stat, int flags,
struct FTW *ftw)
{
if ...
2
votes
2answers
813 views
XSLT apply-template with mode - Incorrect result with no matching mode
Here's a simple case.
Here's my XML:
<?xml version="1.0" encoding="utf-8" ?>
<dogs>
<dog type="Labrador">
<Name>Doggy</Name>
</dog>
<dog ...
2
votes
0answers
62 views
How common is MySQL traditional mode in the wild? [closed]
I was recently having a discussion with someone in which they kept insisting that I had to allow for certain exceptions due to the existence or use of MySQL traditional mode. In my experience, I have ...
2
votes
1answer
285 views
How can I change the Visual Studio work environment from Web mode back to Visual C++ mode?
I selected web development as my primary development style the first time I booted Visual Studio 2010 and now I would like to change it to Visual C++. How can I do this?