Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for a comprehensive pthread tutorial. I considered buying Programming with posix threads but this book seems is bit dated. Other online tutorials like this are very basic. Can someone please suggest a good and complete pthread tutorial.
Lawrence Livermore National Laboratory has an excellent tutorial at:
https://computing.llnl.gov/tutorials/pthreads/
The LLNL one is good but I also found http://randu.org/tutorials/threads/ which is for C but clearly written and very useful.
This should helpers:
http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've got the assignment to write a pacman game using qt creator and c++. I know that QT Quick is better suited for games but i've got no option. The only problem is i am a little bit lost because the documentation of qt is great but there is massive amount of it. Could you provide me some tutorials or links to the documentation where to start?
I would be grateful.
Try to give a look at the QGraphisView and the Animation framework examples, probably they are a good starting point.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there any tutorial describing mini_c example from boost::spirit? It looks as good example of using grammar from boost::spirit::qi, but it's rather complex one and some guide through the code would be helpful.
None that I know of. However, the mini_c example is step 9 in a series of calculator examples. Therefore, if you start working from calc1.cpp up to mini_c (or even the new 'conjure' examples now added to SVN) you shouldn't have a hard time understanding what's going on.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
does someone know good literature for C/C++?
language: german/english
thanks
This is the classic treatsie ...
Smashing The Stack For Fun And Profitl
This one has an entire chapter on the subject.
This book from Jon Erickson:
Wikipedia has a great intro with pointers on what to read next.
The Shellcoder's Handbook: Discovering and Exploiting Security Holes
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Which forums you are using for data mining questions? SO is mainly intended for programming, not for DM questions.
I can suggest KDnuggets; it is a site focused on data mining and analytics.
(Note: I am an editor at KDnuggets.)
Check out stats.stackexchange.com Although it's still in beta, there are some nice resources there.
Also, metaoptimize has some questions on this area.
Not sure what software package you're using but Microsoft has data mining related threads at its MSDN Forum site. Check out this link.
You can check my data mining forum. It is a small forum but it is alive and there is some people answering questions.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any opensource/sample application in qt/c++, just like desktopdock or objectdock..?
XQDE is an OSX-style dock written in Qt.
You could check out the demos and examples section of the documentation:
QT Demos
QT Examples
The demos are slightly larger than the examples, while the examples are focused on showing a specific feature - and good Qt programming. There's also the tutorial, here, which covers the entire development of two simple apps.