Web
WEB is a computer programming system created by Donald Knuth as the first implementation of what he called "literate programming".
Language
Any
Platform
License
Any
Hi,
Need Help!
I'm porting VxWorks code to Linux. Here in VxWorks I have a structure called ether_tag_header.
What is the equivalent structure in Linux?
Note:
struct ether_tag_header {
u_char...
I have a c++ cgi program that uses cURL to communicate to paypal. I'm attaching the whole file. There's a lot of commented out nonsense in there from various things I've tried, but I don't think...
Hi all
Well first I’ll just say I am a complete Linux beginner, but I have done vbs, js, php, html web type stuff so I’m not a complete beginner to programming.
However I've been trying to learn...
Hi all
Well first I’ll just say I am a complete Linux beginner, but I have done vbs, js, php, html web type stuff so I’m not a complete beginner to programming.
However I've been trying to learn...
Well, this post is rather old. I am returning to Programmers Heaven, so I just saw it.
Ok, my sugesstion is that you could create two pipe files. You would perform this outside from your program....
I've been trying to call a perl program (an entire program not just a subroutine)and I really don't want to use call() or any exec() functions as I'd like to not have to initialize the perl...
hi,
I try to use ndbm.h header file and its methods...
I wrote a simple test program that just makes a call to
dbm_open();
when I try to compile with gcc, it works ok.
But with g++ it...
Hello,
Over the last couple day's I have been working on the Bordeaux for FreeBSD 7 port. We now have everything compiling and running but a lot more testing needs to be done before it's ready for...
Hi, I am writing all my presentations in LaTeX. LaTeX creates .pdf files. I would like to be able to include certain movies in the .pdf files which could then be played by one single click. Is this...
Hi All,
I heard Oracle 10g comes with it's own driver that you can set your
$ORACLE_HOME to. Can anyone enlighten me on where I can find more
information on this and setting up my Solaris...
my dear freind,
google/use richard steven's advanced programming in Unix environment.
thats wgat i do normally, if cant find then reply i will give you the
link.
well!!
fork()
it divides the...
undefined reference means that the compiler has never heard of rtupdate0, rtupdate1, etc.
you must tell gcc where to find these functions so for example if you are using a unix based system you...
Hey folks, I've been roaming the web for an answer to my problem but have still to find an easily understandable method.
I am currently writing a slightly modified "grep" tool, with the added...
Don't know if you have already come across any of these but here we go anyway:
Spencer's socket site (include links to sample code)
http://www.lowtek.com/sockets/
Beej's Guide to Network...
you're getting the errors because you didn't link to the curses library when you compiled your program. Try:
gcc program.c -o program -lcurses
I'm not sure that your program will work because...
: : Hi! Me and my friends are building a shell that are going to work in UNIX. The final part that we want to implement is that it are going to accept batch support - anyone in here who knows that?...
: : Dear All,
: :
: : I have an assignment regardign the snake game in Assembly Language under FreeBSD 4.8.
: :
: : I need assistance in this regard
:
: What do you need help with? Is it...
: Can fork() be specified with additional parameters for the new spawned process?
:
I looked in to the msdn and it seems that the fork that is under Unix is called createProcess for Windows
Here...
: Your right very new to C/C++ I have a book but i find it easier to lean with the book and code, the only problem is, is that i cant find a book that gos into sockets in any real detail with out it...