-
Replied To a Post in How to compile Truecrypt from source in Kali linux?
Ok. If it is solved, please inform the rest of us what you did to fix it. :-) Thanks. -
Replied To a Post in Power Supply Blew Now Computer Turns On But Not For Long
If the CPU fan is working, you might want to check your memory sticks. There is a tool called lm_sensors that gives you access to the thermal detectors on the … -
Replied To a Post in Why my view record function cannot run correctly after i add items?
@phoenix254 - Well, besides being very bad, and retro, goto's are allowed, even in C++, but VERY MUCH not recommended! And usually not needed in properly structured code. It is … -
Replied To a Post in Why my view record function cannot run correctly after i add items?
@phoenix254 - Well, besides being very bad, and retro, goto's are allowed, even in C++, but VERY MUCH not recommended! And usually not needed in properly structured code. It is … -
Replied To a Post in dev c++ is not showing output
When you make changes to C/C++ code, you have to recompile the sources. Did you do that? Also, for basic C/C++ code I do not recommend the use of an … -
Replied To a Post in Need an Android App Development Tutorial Book
Where have you looked? The Android developers web site has some good tutorials and user community. Remember, Android apps are either Java-based (using the Dalvik compiler), or webapp based. Do … -
Replied To a Post in C++
So, does your code work? If not, what errors are you getting? We can help you more now, and we can appreciate your difficulties using out-of-date tools. We will try … -
Replied To a Post in Null pointer
@Schol-R-LEA - nice explanation! To expand, if one doesn't initialize pointers to NULL (or 0 - preferable for current systems), then you have introduced serious security flaws in your system. -
Replied To a Post in Why my view record function cannot run correctly after i add items?
You are asking us to analyze 300+ lines of code, yet give no indication of what your problem is. Got $200 USD per hour for me to do that? My … -
Replied To a Post in Ye Bloody Gods!!! 74 percent of big business yet to fix Heartbleed flaw
A lot of the ignoring of these issues is due to management not wanting to deal with the costs involved. They seem to take the stance that "we aren't being … -
Replied To a Post in [Urgent] Nothing boots anymore
If you are booting a recovery or live CD/DVD/USB drive, the system hard drive will not be mounted. Since you seem to be getting similar errors in these cases, you … -
Replied To a Post in 2-D Array
I agree with Suzie999. First index is the number of "rows", and the second is the number of "colums" in the row, although either way will work if programmed correctly, … -
Replied To a Post in How to compile Truecrypt from source in Kali linux?
DO NOT modify the Makefile! That is unnecessary if you put the headers in the correct place. I didn't need to make any changes to the Makefile on my system. … -
Replied To a Post in .com extension and its relation to ms-dos
@Leo G - this goes back further into the days when MS-DOS was first derived from Seattle Computer Product's QDOS opearting system that MS purchased to sell to IBM for … -
Replied To a Post in Tic Tac Toe Pseudocode
And until you post some effort at a solution, don't expect help here for a homework problem! -
Replied To a Post in About arrays
This code does nothing. Don't expect help until you post code that at least approximates a solution to the problem at hand! -
Replied To a Post in help please
Sorry, but per the terms of service for DaniWeb, we don't do your homework for you. You do the work, post your code and analysis here, and we may help … -
Replied To a Post in Stop demonizing the cloud
I agree 100% with HappyGeek. Just think as the cloud as being an external data center. You still have to put in place the security methods you do for internal … -
Replied To a Post in How to compile Truecrypt from source in Kali linux?
As I mentioned before, you need to install all the `pkcs11*.h` files in the source/Crypto directory. That should allow the CFLAGS options in the Makefile to find them for the … -
Gave Reputation to Moschops in how to use structure in C
Line 89 is the problem. -
Gave Reputation to deceptikon in how to use structure in C
> the console I/O library is not a standard part of C, and is associated with older (that is, pre-C99) Borland compilers. Some common modern compilers support it. I don't … -
Replied To a Post in C++
Describe your approach, show your code (even pseudo code), and where you are running into roadblocks. This will indicate an honest effort on your part to do the work. We … -
Replied To a Post in How to compile Truecrypt from source in Kali linux?
Ok. I'm almost there. The three pkcs11.. header files have to go into the TrueCrypt source/Crypto directory. Then you need to install the Linux native assembler nasm, and the fuse-devel … -
Replied To a Post in How to compile Truecrypt from source in Kali linux?
You should be able to build it by extracting the directory with the command: tar -zxvf "TrueCrypt 7.1a Source.tar.gz" After that, cd into the source directory: cd truecrypt-7.1a-source Then run … -
Replied To a Post in Addition without arithmetic operators
@nitin1 - oops, sorry about that. I hate it when people hijack other folks' threads. I'll get back to that when I have a minute. -
Replied To a Post in What could have caused my laptop to die?
Sounds like it's time to either replace or repair it. -
Replied To a Post in Patcher for program defines directory as invalid, while it exists.
On Linux systems, double quoting a directory or file name will deal with the spaces. IE, your adding "\ " values to the string are problem causing this error. So, … -
Replied To a Post in Addition without arithmetic operators
Start with lines 42 and 43. I assume you want to add the numbers in each element of the array, but it is a 2 dimension array, so lines 42 … -
Replied To a Post in mysql_fetch_row(): supplied argument is not a valid...
To extend Jorge_7's answer - you're not opening the connection to the database. As noted, the mysql api's are deprecated (out of date) so either use pdo or mysqli. Myself … -
Replied To a Post in contact klp
What's your problem? Explain it here and maybe we can help. Post your code if available. -
Replied To a Post in Get currently logged in Windows user - Is it possible?
As explained in the stackoverflow thread, this would be a MAJOR security breach! If the user has logged into your server previously, the login information could be saved in the … -
Replied To a Post in Separate two processes
Your section bracing is bad. Look at it, especially in the child section. Example: while(TestAndSet(&lock)) printf("spinning"); There is no brace starting the block after the while() statement. This is not … -
Replied To a Post in deceptikon C webcast
Post some subjects and what you intend to accomplish. I'd be interested. -Rubberman -
Replied To a Post in Addition without arithmetic operators
This is a good exercise in bit-twiddling. Just remember, a left shift is a multiply by 2, a right shift divide by 2. Your logic is faulty and you need … -
Replied To a Post in Can you help me guys ??
Function? The only function you have is main()... -
Replied To a Post in convert c++ code to mips code
So, what is your problem? A C++ compiler on x86 or Mips systems should generate equally valid executables unless you are doing bit-manipulation and need to address little vs big-endian … -
Replied To a Post in I need help in C code
Schol-R-LEA beet me to the mark with his response. Your original post is not valid C code. You can use semaphores to enable a mutual-exclusion behavior, but all the processes … -
Replied To a Post in mosmpo36
The only link I could find was this: http://concorde-sst.com.foxmos.com/ That appears to be a cloud data storage service. If you don't have your son's ID and password, it is unlikely … -
Replied To a Post in Disassemble Dlls
You need a disassembler. That will turn the binary code into assembler code. Good luck! -
Replied To a Post in Run - length - encoding.
Show your new code. -
Replied To a Post in Help understanding a problem
Specify CREDITRATING as a private member, but provide a protected setter and public getter method to set/get the data. Don't use friend or static members or methods for that. In … -
Replied To a Post in I need help in C code
Please post the code directly, and describe the problems you are having. -
Replied To a Post in Insert Variable into Statement
Use one or the other in C++, not both. Cout is preferred. You can use sprintf() to push the data into a string, and then output that with cout. Sometimes, … -
Replied To a Post in How to solve this question?
People need to recognize that PHP is an object-oriented language (C++ with training wheels) that runs on a web server, and can emit HTML and javascript as necessary to run … -
Replied To a Post in How to display a result based on a sum as sum inputs are entered
You really don't need javascript to do this! Assuming you have the tax rate and selling price (either GET or POST variables), then you can easily do this in the … -
Replied To a Post in Run - length - encoding.
This is more or a C than a C++ problem. Read one character from stdin (cin), count the number of instances of that character from stdin until you get a … -
Replied To a Post in Home network. Wireless broadband
Your routers have a maximum bandwidth, and all the loads are probably hitting that limit, hence the "lags" you are experiencing. You can use both wifi access points, provided they … -
Replied To a Post in system shutdown itself
Systems shut down automatically when certain things happen, such as overheating. Is this a laptop or desktop system? What is the power supply rating (in watts)? Are the cooling fans … -
Gave Reputation to deceptikon in c++
Um...what? -
Replied To a Post in How to disable “This connection is untrustedâ€warning in Firefox thru script
This warning will be issued in a number of scenarios, including if the certificate is a self-signed one (not registered with a legitimate CA). They should be noted, but for …
The End.