6
votes
5answers
144 views
Compare two images the python/linux way
Trying to solve a problem of preventing duplicate images to be uploaded.
I have two JPGs. Looking at them I can see that they are in fact identical. But for some reason they have different file size …
1
vote
3answers
83 views
How to run server script indefinitely
I would like to run an asynchronous program on a remote linux server indefinitely. This script doesn't output anything to the server itself(other than occasionally writing information to a mysql …
1
vote
3answers
79 views
Linux USB Mapping Question
Hi,
I'm working on a utility that will auto mount an inserted USB stick on linux. I have tied into D-Bus to receive notification of when a device is inserted, and that works great. However, I need to …
3
votes
2answers
99 views
Python: when to use pty.fork() versus os.fork()
I'm uncertain whether to use pty.fork() or os.fork() when spawning external background processes from my app. (Such as chess engines)
I want the spawned processes to die if the parent is killed, as …
0
votes
1answer
35 views
Linux group scheduling for user not being applied to setuid-ed process
On the 2.6.28-11 Linux kernel, I am using setpriority to bias the amount of cpu time different user processes receive. User 1 is to receive double the CPU power of user 2. Using Linux's setpriority, I …
1
vote
2answers
79 views
Python/Linux - A function callback every time a key is pressed (regardless of which window has focus)?
I want to write a programme (in python) on Linux (Ubuntu Linux 9.10) that will keep track of how many key presses per second/minute I make. This includes normal letter keys, and …
1
vote
4answers
51 views
Why am I getting a file permission error with Python
I am working with a shared hosting environment which as well as other things supports Python. I have followed the examples and deployed my cgi file and then through chmod, gave it Read and Execute …
4
votes
6answers
131 views
How do I determine an open file’s size in Python?
There's a file that I would like to make sure does not grow larger than 2 GB (as it must run on a system that uses ext 2). What's a good way to check a file's size bearing in mind that I will be …
1
vote
1answer
46 views
Is there any python package that could configure IP address of network interface?
I am writing a server application which allow remote client to show/add/change/delete IP addresses of network interfaces of the machine where the host is running.
The OS is Linux(CentOS 5.2), so I …
0
votes
0answers
33 views
Unable to get Wacom events from /dev/input/event*.
I have created a pygtk program to monitor the keyboard status and mouse clicks across any application (i.e. not just for my application). This uses evdev by Micah Dowty which basically monitors …
6
votes
2answers
92 views
Creating portable Django apps - help needed.
I'm building a Django app, which I comfortably run (test :)) on a Ubuntu Linux host. I would like to package the app without source code and distribute it to another production machine. Ideally the …
3
votes
8answers
277 views
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job?
I've never used python before. I've used php for about 5 years now. I plan to learn python, but I'm not sure what for yet. If I can think of a project that might be better to do in python, I'll use …
1
vote
3answers
73 views
Looking for advice on how to develop applets for Gnome / Ubuntu
I am a linux (mostly ubuntu) user with a reasonable understanding of how the system works (although I am certainly not a linux guru!). In the past I have developed small cross-platform desktop …
0
votes
4answers
80 views
how to find the owner of a file or directory in python
I need a function or method in Python to find the owner of a file or directory?
the function should be link
find_owner("/home/somedir/somefile")
owner3
0
votes
1answer
32 views
merge background audio file
I have 2 audio files for primary and background music that I want to merge (not concatenate). The final audio file should be as long as the primary file, and if the background music is shorter then it …
