Tagged Questions
The idle tag has no wiki summary.
19
votes
3answers
3k views
How can I make setInterval also work when a tab is inactive in Chrome?
I have a setInterval running a piece of code 30 times a second. This works great, however when I select another tab (so that the tab with my code becomes inactive), the setInterval is set to an idle ...
11
votes
3answers
3k views
Why do we need a swapper task in linux?
The idle task (a.k.a. swapper task) is chosen to run when no more runnable tasks in the run queue at the point of task scheduling. But what is the usage for this so special task? Another question is ...
10
votes
4answers
654 views
How to prevent Windows from entering idle state?
I am working on a C# application which runs in the background without any Windows control.
I want to notify Windows that my application is still alive to prevent Windows from going into the idle ...
9
votes
3answers
623 views
Getting user Idle time in C#?
I found this tutorial on how getting Idle time of the user Idle Time.
The problem is that it will only work if the application runs on the user.
And my application runs on SYSTEM.
Anyone know how ...
7
votes
1answer
184 views
SWIG: 'module' object has no attribute 'Decklist'
I'm having one hell of a time with SWIG, due in part to the lack of good C++ examples to learn from. I finally got my first program to compile with SWIG, but am having troubles running it. Let me ...
6
votes
1answer
170 views
How do you add breakpoints to a python program in IDLE?
I solved this already, I'm just posting it here because I couldn't figure it out with google, or by reading the docs. I only found it by accident.
To add a breakpoint, right-click on the line that ...
6
votes
2answers
238 views
WPF Application slow when coming back from idle
I have a WPF (.Net 3.5 sp1) application that loads a bunch of data on start up (it takes a few seconds to start up) but it performs fine after the data is loaded.
While the app is running, if I don't ...
5
votes
2answers
203 views
Python Idle and KeyboardInterrupts
KeyboardInterrupts in Idle work for me 90% of the time, but I was wondering why they don't always work. In Idle, if I do
import time
time.sleep(10)
and then attempt a KeyboardInterrupt using ...
5
votes
3answers
166 views
Best way to do nothing until things are connected in C#
I was reviewing the code to connect to the DB in one of the applications that I'm working on and I saw this
if (_dbConnection == null)
_dbConnection = GetConnection();
while ...
5
votes
3answers
632 views
Programmatically reset Windows XP IDLE time
Windows resets the IDLE time every time the user touches the keyboard or the mouse. My application needs to reset the IDLE time at specific moments, but i can't figure out how to do this ...
4
votes
1answer
305 views
Notification when the system is idle or not on OS X
I know that there is some way to get the system idle time with the IOKit framework on OS X, but I want to know if there's notifications available.
I can create a timer to check if the idle time is ...
4
votes
4answers
195 views
Detecting idle users in Winforms
I'd like to pause my program if a user is inactive for 5 minutes. By inactive I mean hasn't pressed their mouse or their keyboard during that time (including outside the program too!). Any starting ...
4
votes
3answers
225 views
How to reload Python module in IDLE?
I'm trying to understand how my workflow can work with Python and IDLE.
Suppose I write a function:
def hello():
print 'hello!'
I save the file as greetings.py. Then in IDLE, I test the ...
4
votes
5answers
327 views
In Python on Unix, determine if I am using my computer? or idle?
I would like to write a script to do an heavy network upload, in the background.
However, I would like it to pause when I am using my computer (either by detecting network activity or keyboard ...
4
votes
1answer
763 views
IMAP Idle Timeout
Lets say I am using IMAP IDLE to monitor changes in a mail folder.
The IMAP spec says that IDLE connections should only stay alive for 30 minutes max, but it is recommended that a lower number of ...
3
votes
1answer
42 views
How can i have screen idle listener?
I need to use idle listener to listen the user is using the application or idle when the activity is alive.
I need to do something when the user is not using the application more than ten seconds.
How ...
3
votes
2answers
203 views
Python - subprocesses and the python shell
I am trying to shell out to a non-python subprocess and allow it to inherit the stdin and stdout from python. - i am using subprocess.Popen
This would probably work if I am calling from a console, ...
3
votes
2answers
91 views
Script works in IDLE, but .py-file doesn't work
I have a tkinter script, which runs just fine in IDLE. However, when I double click the .py-file from Windows Explorer, the console window flashes half a second and then it exits.
I was able to ...
3
votes
1answer
128 views
Python IDLE doesn't start after installing Immunity Debugger
I currently switched from olldbg to ImmunityDebugger and realized that my IDLE didn't start any longer. Immunity Debugger installs itself a copy of Python (the newest one: 2.7), so I thought it ...
3
votes
2answers
83 views
How do I restart the IDLE Python Shell in Linux?
In IDLE on Windows, on the menu bar, there is a Shell menu. One of the items on the Shell menu is 'Restart Shell'. The Shell menu is not available in IDLE on Linux.
The Restart Shell command is ...
3
votes
2answers
118 views
MonoDroid Looper.MyQueue() hangs on some activities / Idle Handler?
I'm using MonoDroid Looper.MyQueue().AddIdleHandler() to execute some Commands when the app is in idle mode. This is working in one activity, but if I'm starting the second activity it hangs until i ...
3
votes
1answer
324 views
Python 3.2 Idle vs terminal
In python 3.2 under OSX, if I'll run "type(sys.stdin)" under Idle I get a strange answer as shown below
>>> type(sys.stdin)
<class 'idlelib.rpc.RPCProxy'>
>>>
But if I'll ...
3
votes
2answers
946 views
Passing Command line argument to Python program using IDLE?
I have downloaded a python file xxxxxx.py that is supposed to run on the command line by
typing: python xxxxxx.py filename1 filename2
and that should take these two files as arguments.
I was ...
3
votes
2answers
379 views
Ruby Equivalent of Python “_”
In Python, you can use the _ field to grab the last computed value. That's really useful in IDLE. Does Ruby have an equivalent for IRB?
An example from Python:
>>> 2 + 2
4
>>> _
4
...
3
votes
2answers
629 views
Python IDLE: Change Python Version
I have Python 2.x and 3.x on my machine (Mac OS X 10.6).
For some things I want to use ver 2, but for others I want ver 3. I like the IDLE software for editing/running, but it always uses version 3.
...
3
votes
3answers
460 views
Objective C: Get notifications about a user's idle state
My cocoa app runs background tasks, which I would like to stop when the user becomes idle (no keyboard/mouse input) and then resume when the user becomes active again. Is there a way to register for ...
3
votes
1answer
341 views
iOS device goes idle, network stops. How do i get notified about entering the 'idle' state?
My app has a screen where it is constantly polling a server for information.
When the user does not interact with the app it goes idle, the screen goes dim and then black.
In the background, the app ...
3
votes
2answers
484 views
How to find out that a running Linux machine is idle or not
I have my laptop, most of the time connected to internet, the speed of internet is quite slow. When i download some big files, then i am not able to surf web sites because of slow speed of internet. ...
3
votes
2answers
976 views
How to detect user inactivity in Qt?
How can I detect user inactivity in a Qt QMainWindow? My idea so far is to have a QTimer that increments a counter, which, if a certain value is passed, locks the application. Any mouse or key ...
3
votes
5answers
511 views
java jdbc mysql connector: how to resolve disconnection after a long idle time
Hiya.
I'm using red5 1.0.0rc1 to create an online game.
I'm connecting to a MySQL database using a jdbc mysql connector v5.1.12
it seems that after several hours of idle my application can continue ...
3
votes
2answers
187 views
How can one set up a thread in C# to only execute when CPU is idle?
I have a Windows Service in C#. I want a certain thread to perform specific actions, but only when the CPU is idle. Is there a way to do this in C#.
2
votes
1answer
40 views
Pause until logged in user is idle to run shell script in OS X
I wrote a script that checks available memory (using vmstat and awk) then purges memory if less than 25% is free. Then after the purge, my Mac says (yes the goofy robot voice) the integer of available ...
2
votes
1answer
30 views
can we access the autolock setting that the user has set in iOS?
I just want to find out what the user has set for the timeout period for autolock, which is in Settings->General->Auto-Lock in iOS. How can I find this?
Thanks,
2
votes
1answer
73 views
tilde char on IDLE 3.2.2 MacOS-X Lion
Impossible to get tilde char ~ on Python IDLE 3.2.2 MacOS-X Lion.
I tried the prefs/Keys, no success, no entry "Option-N space".
Please help !
2
votes
2answers
90 views
Python script causes git publickey error when not run in IDLE
On windows 7 64bit have installed Python 2.7, I have no choice over which version to use.
I have used IDLE to write a script and when I press F5 to run the script everything works as expected.
...
2
votes
2answers
119 views
How to put my C# Program in a sleep mode?
OK , so lets say I have built an Application in C# and when you are working with this application it uses a lot of the computer's Memory and now I want to do something that when its Idle or I'm not ...
2
votes
1answer
67 views
My python interpreter does not recognize strings
Newbie disclaimer: I am new to Python and just started using IDLE to play around with Python.
My problem is the interpreter does not recognize strings, whether enclosed in ¨¨ or ´´.
I configured ...
2
votes
1answer
153 views
pythonw.exe processes not quitting after running script
Every time I restart the shell or run a script and instance of pythonw.exe*32 is created. When I close out of IDLE these processes don't go away in the task manager. Any ideas on how to fix this?
...
2
votes
1answer
352 views
iOS custom idle timer
In an iOS enterprise app i need to implement an idle timeout. The application's idleTimerDisabled property is set to yes, that's not what I want.
It's a journal type of application for an ...
2
votes
2answers
341 views
Cannot Import GTK in Ubuntu Python 2.7
I'm trying to import GTK in Ubuntu Python 2.7, and I get the following error. PyGTK imports just fine. When I import gtk, I get the following error:
Exception in Tkinter callback Traceback (most ...
2
votes
3answers
172 views
opening files using python / IDLE returns “no such file or directory” for pathname
I have WORDS_TXT = /macintosh HD/users/[username]/Desktop/[file]/words.txt/
but when run, python says "no such file or directory", however going though finder and "go to folder" that exact pathname ...
2
votes
1answer
298 views
Why does Idle keep crashing? (Mac)
I just installed python 2.6 on Mac OS X (Snow Leopard) and when I start IDLE it keeps quitting!
I removed all the installations of python by:
rm -rf /Library/Frameworks/Python.Framework
and then ...
2
votes
1answer
155 views
python win32api.LoadKeyboardLayout(), doesnt change language in IDLE shell?
Can someone help me out please...I'm trying to start my first programming project. It will be implemented in python.
I need to have a textbox (which i am using wxpython for). If the user enters any ...
2
votes
1answer
249 views
idle state detection silverlight 4 application
What's the best way to detect idle state for a silverlight application? I have read quite a few articles on the net by now and usually they are either for wpf/mobile apps etc.
I have created a ...
2
votes
1answer
101 views
question about IDLE debugger in Python
This is a simple question, is it possible to view an entire list in the locals box of the IDLE debugger? Because right now, if a list becomes too long, the debugger will put an ellipsis and not show ...
2
votes
1answer
179 views
Python: changing IDLE's path in WIN7
Windows 7
As I'm learning Python (3.2) I prefer using IDLE than CMD.
In order to change the path where I can import scripts of my own, I use a little trick that I found in this site: I go ...
2
votes
3answers
353 views
Delphi idle handler only fires when I move the mouse
I have an OnIdle handler in my D2006 app. With this code:
procedure TMainForm.ApplicationEvents1Idle(Sender: TObject; var Done: Boolean);
begin
Inc (IdleCalls) ;
Sleep (10) ;
Done := False ;
end ;
...
2
votes
2answers
312 views
How to tell whether imaplib2 idle response resulted from timeout
I'm using imaplib2 (docs) to interact with an IMAP server.
I'm using the idle command, with a timeout and a callback.
The problem is, I don't see any way of telling if the callback was triggered by ...
2
votes
2answers
85 views
method call problem with Python
So I'm learning python, and I seem to be having a consistent problem with calling setText() methods on Text objects. The process works fine when I'm in the interactive IDLE GUI, but when I save ...
2
votes
2answers
283 views
How to launch python Idle from a virtual environment (virtualenv)
I have a package that I installed from a virtual environment. If I just launch the python interpreter, that package can be imported just fine. However, if I launch Idle, that package cannot be ...