Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
2k views

Is there a cross-platform python low-level API to capture or generate keyboard events?

I am trying to write a cross-platform python program that would run in the background, monitor all keyboard events and when it sees some specific shortcuts, it generates one or more keyboard events of ...
3
votes
3answers
84 views

How to track mouse X/Y position and print it to a label?

I know how to modify cursor position from examples on MSDN. My question is how to check position of mouse while mouse moves and then print X and Y position to representing labels? EDIT: Lets say I ...
2
votes
2answers
54 views

capturing network packet in c

This question might sound fool, because I know there are bunch of frameworks that does it for you. What I want is actually get in touch with low level C API deeply and able to write a program that ...
2
votes
2answers
852 views

Low level Bluetooth Programming in C++

I need a library (or API, ...) to do some low level Bluetooth programming using C++. Any reference or rich link will be great! And i prefer to work in linux based opreration systems... Thanks in ...
1
vote
1answer
48 views

How load Entity data into object - GoogleAppEngine - Low Level API

How can I automatically read a Entity (com.google.appengine.api.datastore.Entity) into a object using GoogleAppEngine Low Level API? There is no magic way?
1
vote
1answer
87 views

How to know if a hardware is working or not in c#

Is it possible in c# to detect that any hardware attached to computer has stopped working! If yes then how?
1
vote
1answer
111 views

Keep transaction between JDO and low-level API

I have a Spring application in GoogleApp engine which uses JDO to persists objects. So I'm using it in this way in my service layer to keep transactions (with @Transactional annotation). ...
1
vote
1answer
38 views

Is DatastoreMutationPool flushed to the datastore before the callback?

I'm using mapreduce and I need to persist some entities when they are not in the datastore. I add the new entities to a DatastoreMutationPool so these entities could be persisted with batched calls. ...
1
vote
2answers
104 views

Generating id in the low level API

I have to use the low level API to persist an entity of type Value in Google App Engine. I've been searching and I have only found a examples in this way: DatastoreService datastore = ...
1
vote
1answer
1k views

Control iPhone Services using Low--Level API or PrivateFrameworks in Xcode

I am trying to make put together a simple application to control the phone services such as WiFi, Bluetooth, 3G, etc. using Private Frameworks or low-level API's. I am able to build the device and ...
0
votes
1answer
116 views

App engine datastore and Java low-level api: many to may relatioship

I just wanna know how made a many to many relationship between two entity´s using the low level api in the datastore, I've been looking but I could not find documentation that explains how to do this ...
0
votes
1answer
73 views

Dbus mainloop.h missing error

I used gcc `pkg-config --cflags --libs dbus-1` hello-serv.c -o server to compile a dbus program and getting error: hello-serv.c:7:32: fatal error: dbus/dbus-mainloop.h: No such file or directory ...
0
votes
2answers
144 views

touchesMoved(): is it the only finger-tracking API? and is it accurate?

I'm writing an iPad application that needs to time the finger movement very precisely, so I am keen on getting the best performance and accuracy I can. I have two questions about this: For ...
0
votes
1answer
243 views

handling GUI with assembly language in Linux

i am very new to assembly programming language. i have a little experience with MASM which works on windows. i want to know how to deal with GUI in Linux.(i have done simple programs in assembly on ...
0
votes
1answer
120 views

Batch put with pre-defined keys on Google App Engine

I would like to do a batch put of entities with pre-defined keys using the low-level api for Java. You can do a batch get: Map<Key,Entity> get(.Iterable<Key> keys) However the batch ...
0
votes
1answer
145 views

How does a portable Thread Specific Storage Mechanism's Naming Scheme Generate Thread Relative Unique Identifiers?

A portable thread specific storage reference/identity mechanism, of which boost/thread/tss.hpp is an instance, needs a way to generate a unique keys for itself. This key is unique in the scope of a ...