Search the web
Sign In
New User? Sign Up
linux-bangalore-programming · LB Programming Discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7385 - 7414 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7385
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Jul 1, 2007
12:48 pm
7386
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Jul 1, 2007
12:48 pm
7387
hi I am using the below mentioned code for serial transmission using FC6. I am using a DG965 Motherboard. It gives me no error while transmitting but I don't...
Vaibhav Ghadiok
vghadiok
Offline Send Email
Jul 1, 2007
5:32 pm
7388
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Jul 15, 2007
12:39 pm
7389
Hi, Is there a simple, reliable way of finding out the (full path) name of an executable during its execution on a Solaris system? I do not have access to...
Manu C S
manu@...
Send Email
Jul 16, 2007
10:59 am
7390
... if working directory does not change during program execution, you may check current working directory in proc (e.g., in Linux /proc/<PID>/cwd ) -- Mohan ...
Mohan Rao A. J.
moj_in
Offline Send Email
Jul 16, 2007
2:21 pm
7391
Hi Manu, Maybe getcwd() is what you are looking for. Rgds Arvind [Non-text portions of this message have been removed]...
Arvind Adiga
arvind_adiga
Offline Send Email
Jul 16, 2007
2:21 pm
7392
Hi I want to trap keystrokes just like a keylogger does, process the keystrokes, and re-emit them. How do I go about doing this? I found a sourceforge project...
Akarsh Simha
akarsh_naras...
Offline Send Email
Jul 18, 2007
12:46 pm
7393
... man 3 ungetch should be a good starting point. martin...
Martin DeMello
martindemello
Online Now Send Email
Jul 18, 2007
4:29 pm
7394
Hi , For windows programming you can refer the following , do some R&D and try to convert it VC++ Project--> http://www.codeproject.com/system/KeyLogger.asp if...
ajai_np
Offline Send Email
Jul 19, 2007
10:09 am
7395
I'm interested in doing it for linux. Can't I do it in C rather than using the .NET framework? [Non-text portions of this message have been removed]...
Akarsh Simha
akarsh_naras...
Offline Send Email
Jul 19, 2007
11:29 am
7396
... Why not use this http://sourceforge.net/projects/lkl/ instead of writing your own ? regards VK...
vivek khurana
khuranavivek_in
Offline Send Email
Jul 24, 2007
4:42 am
7397
Not possible for two reasons: 1. LKL doesn't work with XServer where the mouse starts behaving funny 2. LKL cannot process and re-emit them. -- Regards, Akarsh...
Akarsh Simha
akarsh_naras...
Offline Send Email
Jul 24, 2007
5:59 am
7398
... Google for xmacro and xsendkey.c .. they should help you re-emit keys Anil...
Anil Gulecha
anil.verve@...
Send Email
Jul 24, 2007
1:31 pm
7399
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Jul 29, 2007
2:23 pm
7400
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Aug 1, 2007
12:47 pm
7401
Dear all, It's that time of the year again, when we reveal details about this year's FOSS.IN. FOSS.IN/2007 will be held from December 4th to December 8th....
Atul Chitnis
linuxbangalo...
Online Now Send Email
Aug 5, 2007
5:17 pm
7402
Hi, How can you set the brightness and contrast values using framebuffer apis. Regards, Deepak....
tvsdeepak
Offline Send Email
Aug 7, 2007
8:28 am
7403
The FOSS.IN/2007 website is now unlocked. http://foss.in/2007 Please read the notice in the blue box on the front page! Discussions on the FOSS.IN mailing...
Atul Chitnis
linuxbangalo...
Online Now Send Email
Aug 7, 2007
8:28 am
7404
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Aug 12, 2007
12:44 pm
7405
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Aug 26, 2007
12:49 pm
7406
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Sep 1, 2007
12:36 pm
7407
All: Here are the selected Project Days sessions, in alphabetical order: * Debian/Ubuntu * Fedora * Gnome * IndLinux * KDE * Mozilla * OpenOffice.org *...
Atul Chitnis
linuxbangalo...
Online Now Send Email
Sep 5, 2007
5:18 am
7408
I came across a need where I had to find out the name of a function within the program given its address, from within the program. Is this possible? If so,...
Kiran Kumar Immidi
immidi_kiran
Online Now Send Email
Sep 8, 2007
5:28 pm
7409
... I know abt doing this in gcc. You can use dladdr and compile your code with -rdynamic. --code snippet-- #define _GNU_SOURCE #include <stdio.h> #include...
Venkatesan S
svtesan
Offline Send Email
Sep 8, 2007
7:20 pm
7410
... objdump -T <filename> readelf -a <filename> -> check .dynsym section. For further options "man objdump" and "man readelf" -Shiv...
S h i v
shivakumargn
Offline Send Email
Sep 9, 2007
2:37 am
7411
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Sep 9, 2007
12:30 pm
7412
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Send Email
Sep 23, 2007
12:30 pm
7413
And here we go! After a some delay, the Call for Participation is now out there. Please carefully note the important dates: * 24-Sep-2007 Call for...
Atul Chitnis
linuxbangalo...
Online Now Send Email
Sep 23, 2007
8:43 pm
7414
All: In accordance with the FOSS.IN/2007 Call for Participation, speaker and talk registration is open. You can now go and register. You should read the CfP...
Atul Chitnis
linuxbangalo...
Online Now Send Email
Sep 26, 2007
4:28 pm
Messages 7385 - 7414 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help