The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
594 views

Emacs: Set fill-column in Change Log Mode

Very specific question that I hope is not too dumb. (setq-default fill-column 120) sets the width of the buffer fill to 120 columns. Default for me otherwise is 74. This command, when put in my ...
2
votes
2answers
234 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
1k 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 ...
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?
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 ...
1
vote
1answer
563 views

what is the difference between text and binary files. How do you decide when to use what?

what is the difference between text and binary files. How do you decide when to use what? For example, if you have to read pcm samples from an audio file that contains raw data, which mode would you ...
0
votes
1answer
388 views

Using win32 APIs in Windows Forms Projects

I need to use Win32 Functions like GetForegroundWindow(), ShowWindow(), SetForegroundWindow(), SendMessage(), GetWindow().......in my Windows Form Project in Visual C++ 2005 (CLR mode). the error i ...
0
votes
1answer
259 views

Emacs (Aquamacs) using wrong mode (sometimes)

I'm using version 2.1 of Aquamacs and django-mode from https://github.com/myfreeweb/django-mode. I installed it (after installing yasnippets) by adding (require 'django-html-mode) (require ...
0
votes
0answers
267 views

windows 7 compatibility mode

Having a strange problem with one of our testors involving our .NET 4 program written in c#. The program in question worked fine on this particular windows 7 32 bit machine until one day it didn't. We ...
1
vote
1answer
1k views

Access 2010 - Runtime mode displays only one form

Hey everyone, I am attempting to create a runtime mode version of our Access database by renaming the file extension from .accdb to accdr, according to Microsoft instructions. The problem is that when ...
0
votes
2answers
228 views

Why can I not enter Edit Mode on my custom pages in SharePoint?

I have a very strange issue I just cannot figure out. I am not able to enter Edit Mode on my custom pages. Appending my URL with ?ToolPaneView=2 does nothing. Manipulating the Site Actions button to ...
2
votes
3answers
6k 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
1answer
190 views

Determine path to source code of current mode in Emacs 23

I'm trying out a new Python mode for Emacs 23, but I'm not sure how to tell if I'm using the new mode (source code located at ~/.elisp/python.el) or the bundled python.el mode. Is there a way to find ...
1
vote
2answers
998 views

How to implement matlab like Cell mode in Vim

In Matlab, we can write to the editor the following %% -- a example cell -- plot(rand(3)); %% -- another cell A=rand(2^10); t=linspace(-pi,pi,2^10); compass(fft(A*sin(t)) and we can just hit ...
0
votes
1answer
2k views

firefox kiosk mode : just 3 buttons needed

I've done the researched but I haven't found anything suitable. I need firefox to start in so called kiosk mode that would result in : fullscreen no tabs no right click back home forward buttons ...
1
vote
1answer
271 views

How can I start different mode with Emacs in command line?

Is there a way to start different emacs mode using command line? For example, is it possible to run emacs as follows? emacs --org-mode # to start orgmode emacs --python-mode # to start python ...
2
votes
6answers
336 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 ...
0
votes
3answers
4k views

what is causing IE8 to render in IE7 mode by default

this site : http://medisra.sideradesign.com it is rendering in IE7 document mode by default. Is this due to a CSS or HTML validation error? how can I identify what's causing it? thanks
3
votes
2answers
698 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 ...
0
votes
1answer
204 views

Writing iPhone filesystem in background mode

I am writing an app that logs GPS locations to a file on the iPhone and has to continue updating the locations in background mode. Now I am wondering what is the best way of doing this. Is it good ...
2
votes
1answer
772 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
372 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 ...
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) ??? ...
1
vote
1answer
91 views

Remapping SLIME keys

Slime remaps several keys I like to use and have set in global-set-key. I'd like to avoid directly editing slime.el. What's the routine to override keys in a given mode? Update: In your .emacs, ...
3
votes
1answer
999 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 ...
0
votes
1answer
629 views

iPhone SDK 4.x - network reachability callback in the background mode

In our iPhone application we have a situation when the current network is lost (Wi-Fi) and we need to switch to another network (GPRS). We're handling this situation using Reachability API of iPhone ...
1
vote
1answer
157 views

How to know a socket is blocking mode or not? On Windows [duplicate]

Possible Duplicate: In Win32, is there a way to test if a socket is non-blocking? On Unix, I can use fcntl(). Are there any Winsock API I can use to check a socket is blocking mode or not? ...
0
votes
2answers
672 views

Google Chrome Application Mode: Possible to isolate multiple instances?

I want to run multiple Google Chrome application windows logged into the same web site (Twitter.com, say), each with different credentials. Is this possible? If so, how? My initial testing shows that ...
1
vote
1answer
2k views

Is MySQL safe mode the default mode?

I just upgraded my Mac from Leopard to Snow Leopard and in the process my web development environment broke. I have managed to fix a weird "bug" in Apache that didn't happen before and I have restored ...
3
votes
2answers
427 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?)
0
votes
1answer
956 views

Load form in WPF with different mode

I have the WPF application. I am trying to open the User Entry form as per Mode(Edit,Update,Delete). so somewhere I have to check the for this mode. and somehow load the for as per mode. Where have to ...
1
vote
1answer
1k views

Difference between KeyboardNavigationMode Contained and Cycle?

Short question - what is the real difference put in easy and understandable words?.. Extracts from MSDN: Contained - Depending on the direction of the navigation, focus returns to the first or the ...
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 ...
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 ...
2
votes
1answer
157 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 ...
1
vote
3answers
847 views

kernel mode timer

How can I have a timer in kernel mode such that a specified function in my driver is called approximately every second on Windows XP and above? I should be able to use all functions (in particular ...
3
votes
4answers
740 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 ...
1
vote
1answer
730 views

Making a replacement for a 16-bit installer, program needs short filenames?

I have an old game (Westwood Monopoly CD-ROM) that only has a 16-bit installer so it won't run on my Windows 7 x64. To get around this I decided to use Inno Setup to make a new installer. The game ...
1
vote
2answers
351 views

WPF Textbox loses original values, even if the user doesn't udpate

I am having a very strange issue. I have a datagrid which is binding to an observable collection of type Person The selected item is bind to an Object Person. I have 2 textboxes firstname and ...
0
votes
2answers
661 views

How to Detect IE7/IE8 “run as administrator” mode with Javascript

How to Detect IE7/IE8 "run as administrator" mode with Javascript? I have a html page that needs to be run in administrator mode. I can detect if it is ie8/7 and when that occurs I pop-up an alert ...
0
votes
1answer
1k views

ViewModel is not binding from the POST form when passed into a method as a parameter

I'm new to asp.net mvc, but I've thoroughly searched on this topic everywhere. I've a ViewModel class named PictureViewModel which is the class an EditorTemplate view inherits from: <%@ ...
1
vote
4answers
1k views

how to calculate the mode of an unsorted array of integers in O(N)?

...using an iterative procedure (no hash table)? It's not homework. And by mode I mean the most frequent number (statistical mode). I don't want to use a hash table because I want to know how it can ...
1
vote
1answer
443 views

NSArrayController Class vs Entity mode in Core Data Mac OS X document based application

Can anyone explain differences in practise between NSArrayContoller modes (Class / Entity}? I am just facing some debugging issues in my document based Core Data desktop application (using Entity ...
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 ...
0
votes
1answer
93 views

Is there Lockdown Mode for Trial Version?

I was just wondering if there is the "Lockdown Mode" for trial version of the ESXi 4.1 version? I can't seem to enable to option as when I F2 to customize the system, the option is not selectable and ...
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 ...
2
votes
0answers
126 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 ...
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?
0
votes
1answer
318 views

Change iPhone internet connection mode programatically

I want to know if there is a way of changing the internet connection mode from GPRS to WiFi and vice-versa programatically. I am developing one application and want to give liberty to users which ...
5
votes
3answers
719 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 ...

1 3 4 5 6 7