-
Replied To a Post in Warning: Linux security bashed by 22 year old remote code execution bug
Here's some great advice for Linux sys-admins who want to detect and block attempts by would-be attackers who are testing your servers for this bug, or who have already taken … -
Replied To a Post in SDL keypresses and image optimization
Took me a little while to spot this, but I think you are going to kick yourself! Have a close look at what your loadSurface function is doing: Line 140: … -
Replied To a Post in question
You have a wide range of options: On Windows you could install the free version of Visual C++ Express (or buy a licence for one of the full versions of … -
Replied To a Post in Vector c++
The OPs questions are in the comments in the code. @OP: How you would populate the vector of records would depend entirely on how the data has been stored in … -
Replied To a Post in Problem with my readuser function
The only obvious thing that I can see that would cause a crash is at lines 10 and 11. At line 10, you attempt to open and get a pointer … -
Replied To a Post in Understanding Sqlite3 c++.
That's strange! Are you saying that compiling the program causes the wrapper-library to throw an exception?? That doesn't seem at all right! From what you've posted, it looks more like … -
Replied To a Post in vim after new installation
If memory serves, there should be an example vimrc file at the following location: `/usr/share/vim/vimXX` (where XX is the version of vim installed) The file will be called something like … -
Replied To a Post in Install Ubuntu from USB?
There are a number of ways that you could install Ubuntu on a USB drive and it all depends on what you want. Do you just want a live environment … -
Replied To a Post in dry run in programming c++ help please ☺☻♥
I don't think I could make it any easier without actually doing your homework for you. And let's make this clear: I'm NOT going to do your homework for you. … -
Replied To a Post in dry run in programming c++ help please ☺☻♥
OK, so that's your homework. What part of it are you having a problem with? It's not too difficult. The instructions are pretty clear. It might help you to understand … -
Replied To a Post in Which is your favourite Linux distro and why?
For me it has to be Crunchbang or Arch. That said, I'm currently using Kubuntu 14.04 on my main laptop. But I rarely log into a KDE/Plasma desktop session anymore. … -
Replied To a Post in Beards
I've been sporting a long goatee beard for the last 15 years or so. Don't know too many people in the IT/programming field with beards, but I know plenty of … -
Replied To a Post in file upload, again
I'm having a similar problem. I just tried attaching a patch file to one of my posts as .patch.gz (compressed), .patch (uncompressed) and .txt and it keeps telling me that … -
Began Watching NURBS library installation problem
Dear friends: I want to install the Non-Uniform Rational B-Splines (NURBS) curves and surface packate NURBS++ in opensuse linux 13.1. The official web site of NURBS++ is http://libnurbs.sourceforge.net/old/documentation.shtml. and the … -
Replied To a Post in NURBS library installation problem
EDIT: Damn, DW won't let me upload/attach my patch... :/ -
Replied To a Post in NURBS library installation problem
Out of curiousity I took a look at this when I got home last night. It turns out that the patch mentioned above was not enough to get the program … -
Replied To a Post in NURBS library installation problem
Looking at [the projects sourceforge page](http://sourceforge.net/p/libnurbs/patches/7/) there is a patch to get the program to compile on gcc 4.3. I suggest you download and apply that patch and see if … -
Replied To a Post in Create server linux?
First you'll need to install some form of Linux distro, then you need to install and configure Apache web server, MySQL (Or some other database engine) and PHP, before installing … -
Replied To a Post in RHCE certification or CEH Certificate
At the end of the day, it is your life and your decision. What do you want to do with your life and your career? There are a lot of … -
Replied To a Post in mp3 meta data
b is a byte string - I'm sure I mentioned these in one of your other python threads...I think it was one of your socket related threads. Yup, [here](http://www.daniweb.com/software-development/python/threads/471352/the-socket-module#post2057366). As … -
Replied To a Post in mp3 meta data
You could try installing and using the Tagpy library to tag the mp3 files. Tagpy should be available in the repos of most distros - I think the package is … -
Replied To a Post in Run program from terminal with single command
AFAIK, with most Linux distros which use Bash as the default shell; many of them already have $PATH set up to check for a bin sub-directory in the users home … -
Replied To a Post in programming problem
I'd have to echo Rubberman! The first thing I'd suggest is clean up your indentation and your general code-formatting, it's all over the place. As your code currently stands, it's … -
Replied To a Post in memory management with std::map and pointer to newed object
As the MyCon objects have all been allocated on the heap with new, you should probably iterate through the map and delete all of the MyCon elements before the std::map … -
Replied To a Post in ATM algorithm
That looks a lot like Python code to me. I think the OP has misposted in the C section. To compound things, he seems to have a load of line … -
Gave Reputation to Abhishek_14 in Permission Denied
Try a command # setenforce 0 see hope ur issue will be resolved.... -
Replied To a Post in book for advanced linux command line
I have a copy of Apress [Pro Linux Systems Administration](https://www.linux.com/directory/Books/pro-linux-systems-administration) by James Turnbull, Peter Lieverdink and Dennis Matotek. It covers pretty much everything from the basics, including partitioning and user … -
Replied To a Post in palindrome
EDIT: Nevermind Moschops got there first! :) -
Replied To a Post in Problem with Linked Node
Your reverseNode function takes a double as a parameter. But in your recursive call to reverseNode at line 56 you are dereferencing rest, which is declared as a pointer to … -
Replied To a Post in read a file from vi editor and sort alphabetically
I've never really messed with vi/vim scripts, other than making a few minor modifications to my .vimrc startup file. Using vim, you could sort the file using the command `:sort`. …
The End.