trainee programmer: man pages of input_sync(),input_report_key,input_event() - linux

i want to get explanation of functions line input_sync(),input_report_key,input_event().. when i search for it i only get the definition of these function .. am a newbie in this driver programming and i really need simple explanations like man pages .. so that i can know what these functions actually do??
regards..

There is a tutorial covering the methods in which you are interested in the Documentation/input folder in input-programming.txt. You can browse the latest version of it online at git.kernel.org

Related

ExtLibUtil documentation - where do you find what the available functions are?

As I have asked questions in this form - thanks for your many helpful answers - i have found many really neat things that one can do using ExtLibUtil.???? however, other than a bit here and a bit there I have not found anything that gives a listing on the various functions. I one post I read that it is all in the source of the extension Library, and it might be if you really understand where in the source to look. Sure would appreciate a pointer and starting point.
I've been unable to find a JavaDoc for it. The library slipped passed us when we wrote the book - certainly I was not as au fait with Java to be aware of it and all the strength within it. So the best option currently is to look at the source code in Eclipse. Many of the methods are helper methods to easily access things like viewScope etc, which is easy from SSJS but less easy from Java. Most are pretty self-explanatory.
Content assist doesn't seem to work from SSJS, but will from any Java class or, alternatively, open up one of the Java classes created for XPages / Custom Controls under the "local" package in Package Explorer, type "ExtLibUtil." in any method and you'll see the list.

Where can I find the Docs of libnautilus?

I have been searching on google all day, but I couldn't find any useful information about how to use this lib.
Who can help me? Thanks a lot.
You can start with Nautilus Development Extensions. It is not comprehensive, but you can get the idea.
Later, you should check the document written by Dave Campd Nautilus Extensions, which contains examples. Notice I pointed out archive.org because the original url did not work for me.
Dave's document helps to get the context, which is useful when reading the API.

how to use mjsip with j2me

I want to make voip applicaton in j2me.I surfed about mjsip2ME. I want to use mjsip with my application. Can any one suggest me for how to do this ?
There's a tutorial, but it is kinda incomplete at the moment, as it does not contain source code, and some sections are labeled "TO DO". However, it contains the list of methodw, with descriptions and a quick, general help.
There's also some info on the web not on the official site, but I hope you're not afraid of chinese :/

Beginning Greasemonkey Help: Modifying Page Source Code?

I'm quite new to Greasemonkey so bear with me. I'm trying to create a script that modifies the value of an ID of a webpage, and then enters a word into a textbox ID and presses submit.
How would I go about doing this? What code would I use?
Thanks in advance!
Learn about Greasemonkey by:
Examining the introduction and tutorials.
Inspect the code of GM scripts that are similar to what you want to do. You can find a mess of useful scripts at userscripts.org.
In general, beginner's guides are not encouraged at StackOverflow. The beginners-guide tag is not allowed to be used, and the beginner tag was ruthlessly "disappeared", for example.
Re:
"How would I go about doing this? What code would I use?"
If you want us to write code from scratch for you**, then you must provide more detail and/or show some evidence of effort.
In this case, link to the page your GM script will modify. Or, at the very least, post a sufficiently complete code snippet of the page and list exactly how you want it modified.
**Note that such requests rarely find much traction at SO. This site is for programmers helping other programmers.
Do you know jQuery?
It is easy to learn, easy to handle and easy to implement into Greasemonkey!
Just add
// #require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
to the metadata of your script and code like you normally would with jQuery, except that you have GM_* commands to execute commands usual javascript is restricted.

Windows Live Writer Webpreview and Weblayout

I'm working on implementing a blogging engine and want to make it compatible with windows live writer. I found an excellent post on this, but what I can't find is documentation on the placeholder tags used in the weblayout and webpreview templates. The only page I can find referring to this files on MSDN is this one that doesn't mention the placeholder tags.
Anybody point me in the right direction?
Many thanks
Tony
The placeholders are:
{post-title}
{post-body}
The msdn article that you linked to does state that, though.

Resources