===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 1, 2005 4:32 pm
6990
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 4, 2005 2:39 pm
6991
Hi All, I have written some code in C now I wanna port them in python but I don't know python, is there any handy tool/software avialiable for this? Thanks, ...
... No. Python is quite easy to learn. You can immediately get started after you're through with the tutorial. Read http://diveintopython.org/ if you need...
Hi, I have written some code in C now I wanna port them in python but I ... Try SWIG - http://www.swig.org/ or Try SIP -...
Premnath Sah
prem.sah@...
Dec 6, 2005 10:53 am
6995
... I thought SWIG is used for calling other language code. i.e. a C code needing to call python code or something like that. Can it convert the code from C to...
badhri
badsam@...
Dec 6, 2005 8:20 pm
6996
... I thought SWIG is used for calling other language code. i.e. a C code needing to call python code or something like that. Can it convert the code from C to...
HI Really need help on this ... Suppose /foo is a symlink to /bar ... what module turns /foo/baz into /bar/baz ? like File::Spec->canonpath() but checking for...
Hi! I want to use simple graphics functions (drawline, drawrect, drawcircle) etc. in one of the C programs that I am writing. Which is the library equivalent...
... A simple google search "graphics.h linux" revealed a solution, ( I havnt tested it, but hope it helps): http://abhijit.adotout.net/#graphics.h_for_linux --...
... Linux provies a library called "ncurses" (curses.h) that has features related to graphics and keyboard handling etc. There are many tutorials available on...
... If I am not mistaken, ncurses provides funcionality somewhere between "conio.h" and "turbovision" and not graphics.h . Thanx for reminding about it...
... The poster asked for <graphics.h> - as in Borland BGI graphics, not <conio.h> (for which curses would be a replacement). Please look at the question fully...
yes laxminarayan, You are absolutely right. -- Deepak Tripathi E3 71V3 8Y C063 (We Live By Code) http://deepkatripathi.blogspot.com [Non-text portions of this...
... Turbo C's graphics.h is pretty much a toy library. You probably want to use something like SDL, but it's an industrial strength tool and would probably be...
... I guess Svgalib is outdated and requires root privileges. A better option that I have used is SGE (http://www.etek.chalmers.se/~e8cal1/sge/). It is a...
... Actually SDL does not provide the graphics primitives. I exposes a low-level framebuffer interface. You'd need a wrapper library like SGE that I mentioned...
Hai everyone, Iam final year student in CIT Coimbatore(TN). I planned to do a final year project in Linux Device Driver. I learned some basic concept and wrote...
Hi, After setting up the testbed, to remotely (serially) debug the kernel and then applying the breakpoints, kernel execution does not stop at the breakpoint. ...
... Linux has had this for ages. It's called a loopback file system. ... I know it can be tough thinking up a final year project but restricting your scope to...
HI Friends, I am facing a problem in messgae queues. I am using wrapper functions send_message and send_message instead of standard message queue sending and...
... SDL programming is just as simple to use as BGI, actually. ... SDL_gfx is another viable alternative (it does primitives only, not TTF and so on -- there's...
Hi All, I get a compilation error when i try to have a C++ string data type variable in my code. I'm using RedHat 9 Linux. I'm just using the default...
... you need to use the std namespace in your code. using namespace std; // Imports entire std namespace (or) using std::string; // Only string is...
badhri
badsam@...
Dec 10, 2005 4:26 pm
7016
... A small test program with source reproducing the problem should help us diagnose what's going wrong. Ganesan -- Ganesan Rajagopal (rganesan at debian.org)...
Thanks to the group. I got the fix. using namespace std; helped! -Pradeep __________________________________________________ Do You Yahoo!? Tired of spam?...
Hi All, I get compilation err when i have. Any idea what may be the problem ifstream ifile; ifile.open(fileNam,ios::in,ios::nocreate); I have included...