1
vote
Determining the TCP port number to which client got bound.
I believe that Darron meant getsockname(). This is what you want if you need to determine the port number on the client side (the side calling connect()) programmatically. …
2
votes
What are some good resources for learning network programming?
The classic Steven's texts are always a good start (e.g., UNIX Network Programming, Advanced Programming in the UNIX Environment). Other than that, focus on distributed programming techniques and m …
13
votes
.o files vs .a files
.o files are objects. They are the output of the compiler and input to the linker/librarian.
.a files are archives. They are groups of objects or static libraries …
0
votes
python convert microsoft office docs to plain text on linux
I've had some success at using XSLT to process the XML-based office files into something usable in the past. It's not necessarily a python-based solution, but it does get the job done.
…
2
votes
How to find or calculate a Linux process’s page table size and other kernel accounting?
Not sure about Linux, but most UNIX variants provide sysctl(3) for this purpose. There is als …
3
votes
How Does Piping Work in Linux?
If your programs are communicating using stdin and stdout, then make sure that you are either calling fflush(stdout) after you write or find some way to disab …
1
vote
Why does locale es_MX work but not es?
Hmmm... it sounds like a platform problem. I did precisely the same thing under Mac OSX and got the expected results. I suspect that your version of linux doesn't like LANG=es.utf8. Ch …
0
votes
How to decompose unix time in C
A time_t is the number of seconds since Jan 1, 1970 UTC so decomposing that into month, day, and year isn't that difficult provided that you want the result in UTC. There is a …
0
votes
Linux stand alone executable generation
You might want to consider Perl as it is installed on most UNIX systems by default these days. It isn't much of a higher-level language IMHO but it is a little easier than writing C. I would grab …
5
votes
C++ Console Progress Indicator
You could try something like:
void
spinner(int spin_seconds) {
static char const spin_chars[] = "/-\\|";
unsigned long i, num_iterations = (spin_seconds * 10);
for (i=0; …
3
votes
What book or online resource do you suggest to learn programming C++ in Linux?
Programming in C++ under Linux isn't all that different at the core. Linux compilers are generally more standard's conforming than MSVC; however, that is changing as MSVC is becoming a better comp …
1
vote
Best resource on learning Linux command line?
My vote is for The UNIX Programming Environment by Kernighan and Pike followed up by …
2
votes
Fastest implementation of one thread providing data, many threads consuming data
Sounds like a good use for pthread read-write locks along with some thread-safe queues. The producer thread inserts items into the queue. The worker pool will pull items off of the queue and proc …
3
votes
How to get pathname to executing binary?
Take a look at finding-current-executables-path-without-proc-self-exe …
4
votes
Mutex lock on write only
The concept is a "shared reader, single writer" lock as others have stated. In Linux environments you should be able to use …
