The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
4answers
6k 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
27
votes
4answers
11k 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 ...
22
votes
5answers
29k views

Detect IE8 Compatibility Mode [duplicate]

Possible Duplicate: Differentiate IE7 browser and browser in IE7 compatibility mode We have not had time to fully test IE8 with our fairly extensive system. We are also reaching the point ...
14
votes
1answer
10k 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 ...
14
votes
3answers
6k 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 ...
14
votes
5answers
16k 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 ...
12
votes
2answers
5k 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 ...
12
votes
1answer
4k 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 ...
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 ...
10
votes
5answers
16k 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 ...
9
votes
1answer
8k 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?
8
votes
5answers
3k 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) ??? ...
7
votes
2answers
1k 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? ...
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 ...
6
votes
1answer
9k views

Toggle airplane mode in Android

Did I make a mistake? It's not working. public void airplane() { boolean isEnabled = Settings.System.getInt(this.getApplicationContext().getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0) ...
6
votes
2answers
6k views

Force iPhone web app to landscape mode

How do you force an iPhone web app (not a native app) into landscape mode?
6
votes
2answers
384 views

In emacs, how to disable comment auto-indent in C/C++?

Sometimes I want to have temporary comments fully left justified on a line (//) or a block of lines /* */. However, CC Mode overrides this by auto-indenting upon typing the second key. In general, I ...
6
votes
3answers
2k 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 ...
5
votes
7answers
280 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 ...
5
votes
3answers
3k 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 ...
5
votes
3answers
192 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) ...
5
votes
3answers
713 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 ...
5
votes
1answer
1k 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?
5
votes
1answer
228 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.
5
votes
1answer
664 views

Trying to use IE=edge X-UA-Compatible in an iframe on a page using IE=EmulateIE7

I have a page that's going to be included in an iframe on a page where they use the following: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> and ideally I'd like to render my ...
4
votes
3answers
552 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 ...
4
votes
2answers
1k views

How to enable flyspell-mode in emacs for all files and all major modes?

How do you enable flyspell-mode to be automatically used for every file and every major mode as soon as Emacs is started? Also, is there an XML dictionary that does not mark XML tags as misspelled ...
4
votes
3answers
564 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 ...
4
votes
3answers
255 views

Vim insert mode: unambiguous key binding that always works as expected?

Background: Sometimes when editing in vim it is possible to have extra characters in a file that the user did not expect to be there because he was in "insert mode" when in a hurry and rushing to get ...
4
votes
2answers
3k 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 ...
4
votes
5answers
1k 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 ...
4
votes
4answers
213 views

Most common number in MYSQL SELECT statement

I am trying to get a MYSql statement to spit out the most common number in a field. I believe I am supposed to use COUNT(QUANTITY) but I am confused by which to GROUP BY and ORDER BY, I can't seem to ...
4
votes
1answer
278 views

TSQL top 1 parameter assignment issue

I'm trying to get the MODE average for a set of zipcodes (zip code with most entries in a particular upload set). I want to make this a scalar function, instead of a stored procedure. Why does this ...
4
votes
3answers
144 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
2answers
340 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.
4
votes
1answer
929 views

USB HOST mode in ICS

I'm trying to connect a usb sensor (see Toradex) to an android phone (Desire Z) running android 4.0.3. To test this, I wrote a small app to enumerate the attached device(s). This supposed to have ...
3
votes
3answers
3k views

Finding the mode of a list in python

So you have a function that can find the mode of the list but how would you display a message if the list does not have a mode ie. the numbers only appear once. Can't use any importing of functions, ...
3
votes
1answer
1k views

vim bin mode view

How to view file in bin mode in VIM? example: 0101010100111010010 1101001001000100001 11000110111010111010 I know how to view file in hex mode. Thanks!
3
votes
2answers
297 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
4answers
736 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
692 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
6answers
1k views

Finding Mode of Vector of Ints in C++

So I'm trying to make a basic program to learn the basics of C++, I'm generating 100 random numbers from 0 to 100 and storing them in a vector, I am then displaying the sum, mean, median, mode, high ...
3
votes
3answers
6k views

composite colors: CALayer and blend mode on iPhone

I'm trying to use core image on the iphone. I'm able to composite my colors using quartz to draw an uiview, but I want to separate each component into CALayer (UIview consume more resources). So I ...
3
votes
2answers
421 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
3answers
517 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
2answers
423 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?)
3
votes
3answers
2k views

Recognising iPhone Silent Mode

I would like to stop my application playing a sound if the user has switched the iPhone to silent mode. Where can I read that the phone is in silent mode? Is there some flag I can query? I noticed ...
3
votes
1answer
993 views

emacs copy kill-ring to system clipboard in nowindow mode

I'm running "emacs -nw" under terminator program in Ubuntu. My issue, I couldn't get kill-ring to system clipboard with that. However, things works if run in X11 mode. Could you please help me with ...
3
votes
1answer
60 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.
3
votes
2answers
2k views

What is the overhead involved in a mode switch

Many a times i read/hear the argument that making a lot of system calls etc would be inefficient since the application make a mode switch i.e goes from user mode to kernel mode and after executing the ...

1 2 3 4 5 7