-
Replied To a Post in So then I wasn't paying attention and destroyed my NTFS.
dd is a great tool, but as with all great tools, its proper use requires great responsibility! All the other posts are right on - Rev. Jim, Gerbil, and Mike2k. … -
Replied To a Post in no services installed in my cherry mobile omega
Huh? Please elaborate. -
Replied To a Post in Letter guessing game help?
What tinstaafl said. Look at the function definition on line 43: `int SingleGame(char file_letter);` You want to remove the semicolon as that makes the compiler pretty much ignore the rest … -
Replied To a Post in closing internet browser
Or more simply, "killall firefox" -
Replied To a Post in How to make partition of windows and linux..?
Agree 98% with Mike2K, except the 2% that is the fact that EXT4 is a journalled file system. :-) Minor point, but agree - btrfs is still too new to … -
Replied To a Post in Searching dictionary (NSDict) and displaying results
You need to post your code before we can help you. Just generalities like you posted are not helpful to determine the cause of your problem. -
Replied To a Post in Hi
You can use your virtual machine(s) to access external systems without difficulty. I do this frequently. I do like VirtualBox as a virtual machine manager since it allows me to … -
Replied To a Post in Running shell script using PL/SQL
I'm not sure it is possible to call shell scripts from PL/SQL. You can call embedded java code which in turn can call a shell script. I had to do … -
Replied To a Post in sorting array
Why don't you just use qsort() to do this? It is a standard C function that works fine with scalar arrays like this in C++. I use it all the … -
Replied To a Post in Boost asio compile error with Code Blocks
This is a compiler, not a linker error. You are not including the header that has declared Swprintf. -
Gave Reputation to NathanOliver in Understanding Copy Constructor.
I have to add that if you have a C++ 11 compiler then you should be using `nullptr`. -
Replied To a Post in C++ Assistance.. Please all the help that can be rendered
To make a long story short, we don't do your homework for you! Make an honest effort, show us your code, show use where you are getting errors or unexpected … -
Replied To a Post in Terminal server profiles
How do they differ? When you login with RDP / terminal services, you are getting logged into the session that your ID did last time. If they didn't log out, … -
Replied To a Post in 16bit MS-DOS Subsystem ERROR
And what? What is the problem? What is the error? ??? You are NOT providing enough information to help you in any tangible way... :-( -
Replied To a Post in Does this motherboard support pixel shader and vertex shader version 3.0
With appropriate driver support, the 946GX does support OpenGL 2.0, which should have the shader support you need. Go to the Intel web site support page for these GPUs and … -
Replied To a Post in Unable to access a website using IP, but i can by using domain name
Instead of "ping", use "nslookup" instead. That will provide 1 or more IP addresses for the domain name, any one of which may, or may not, be available. -
Replied To a Post in Good windows version with linux
To remember: if you install Windows after Linux, you will have to reinstall the Grub bootloader and reconfigure it to know about both your Linux and Windows installation. Windows seems … -
Replied To a Post in c++ data type and cooding
1. You have to process the incoming data, such as verifying that it is legal for your program's needs/design. 2. You are responsible to format the data so that it … -
Replied To a Post in Understanding Copy Constructor.
Good explanation Moschops. Now on to nit-picking and some common new C++ programmer errors. 1. Always initialize member variables that do not have default constructors, such as pointers. See code … -
Replied To a Post in Does my Chipset support OpenGL 2.0
According to Intel it does. http://www.intel.com/p/en_US/support/highlights/graphics/intel946gz shows that is supports OpenGL, and another article indicates that as of Vista, Intel had OpenGL 2.0 drivers for the chip set. -
Replied To a Post in Use a mac as a programmer?
@iamthwee - well, Microsoft is releasing the source code to .NET and the CLR needed to run C# applications. Graphics? Well we shall see! :-) At this point, I think … -
Replied To a Post in Apache 2.4.7 server not serving Internet users
Access to / (root of the apache directory tree - not the system root folder) is very dangerous! You should set it up to require a userid and password to … -
Replied To a Post in Best Monitor 2015
@ youssefmanm - harde har har har! I like my Samsung Galaxy 5... :-) Amrita, the best monitor is what you like the best, at a price you can afford. … -
Replied To a Post in mouse problem
Does the original Mac mouse work ok? What about the Magic Mouse? If the Mac mouse works, then it is likely not a computer problem, but a faulty mouse. If … -
Replied To a Post in PC power button blinking once , CPU fan started spinning and then stops
What Rik said is pretty correct, though it may be a bad solder joint in the power or battery connector. Unless you are a capable electronics technician, take it or … -
Replied To a Post in Issue with micro SD card
Boot a live linux CD/DVD/USB drive and you can reformat/erase the device without any problem. To erase the drive completely, use the command (assume the SD card is /dev/sdb) "dd … -
Replied To a Post in Wanna Buy new Motherboard
Why specifically MSI? There are other motherboards that support the AMD FX series processors. Try some Google searches. -
Replied To a Post in Compile with g++
Why did you install Ming under Wine? That is a Windows version of the Gnu compiler. If you are running Linux, you need to install the native GCC suite. -
Replied To a Post in instance method
Static methods are NOT instance methods! An instance method will operate on instance variables typically, and require an instance to run. A class static method is like a global function, … -
Replied To a Post in Best Anti virus for my PC
If you are running Windows, there are none. Myself, I will not run Windows natively on my personal systems. When I need to run a Windows application, I do it … -
Replied To a Post in alternative to adobe writer
A PDF form should not require writer to input the signature and fill out the form. The standard Acrobat viewer should work just fine for that, and it is available … -
Replied To a Post in Compile with g++
You need to install the GNU compiler suite for your system. That will include gcc, g++, and such. You may also need to install make and cmake. -
Replied To a Post in cursor related problem
Not enough information. Does this happen when you boot? After leaving computer alone for some time? What? -
Replied To a Post in How do i remove power password from cmos
Contact Dell tech support. They can probably help you. They have a good internet chat tool so you don't have to wait on hold. -
Replied To a Post in Printing buffer on the screen inside function - segmentation faut after one
So, you are saying your code is correct? Yet it dumps core. You are suffering from a severe case of near-sightedness. Step back a bit and look at your code … -
Replied To a Post in convert algorithm to code
And? You want us to do your homework for you? Make an effort if you want help here. We don't get your degree - you don't get our help unless … -
Replied To a Post in How to use GetOpt
Show how you are using getopt() in your code. Just talking about it isn't helpful without something tangible to work from. FWIW, the Linux getopt() man page has several pages … -
Replied To a Post in C++ project question
NP. And congratulations! I know how much sacrifice people make trying to juggle family, job, school. Been there, done that! Anyway, keep posting here when you need help, and I … -
Replied To a Post in i wrote snake and ladder game ....please giude me to improve it
This is just the machine playing with itself. What about real user input? This is a situation where a proper description of the flow of the game is required. Pseudo … -
Replied To a Post in Need help with this function
KISS - keep it short and simple. The sum() function should be simply this: int sum( int x, int y) { return x + y; } This results in this … -
Replied To a Post in project based upon c++
What topic is interesting to you? If you have no idea, change to another degree area - CS is not for you. CS has a huge number of subject areas … -
Replied To a Post in simple c++ calculation any 1 complete solution plz
Write the code. This is almost done. If you are still clueless, talk with your teacher or go back to the book... -
Replied To a Post in my assignment n0 3
If you get a degree by cheating using our work, do we get the degree? -
Replied To a Post in preincrement operator problem
What's with the underscores? Is that a C11 thing? Ignoring the sytactical errors, the order of evaluation is compiler-specific. Until I see some valid (in my eye) code, I cannot … -
Replied To a Post in Programming and hexadecimale
Well, they are either letters or numbers. What they mean depends upon what they represent. Is it binary code, text, data, what? Until you know what it represents, understanding them … -
Replied To a Post in Looking for the best Motherboard (and processsor) for multimedia creation
Either an AMD or Intel current build 64-bit processor would work. Go for higher CPU speeds (3GHz or faster). More RAM is better (8-32GB - 8 is on the low … -
Replied To a Post in Programming and hexadecimale
In Linux you can use bvi - a binary VI editor. If the files are already in hex format (text really), then any editor will do. Notepad++ in Windows works … -
Replied To a Post in Insert value, loop and reset
No code. No help. We don't do your homework for you! -
Replied To a Post in Help with Pseudocode assignment
First, this really isn't pseudocode. Pseudocode will describe the problem and solution in regular terms. It should be understandable by someone who is intelligent but not computer literate. -
Replied To a Post in Programming question
`stars[i][j+1] + stars[i+1][j]` - BOOM! The largest index in a size 20 array is 19. What happens when you access element 19+1 in either of these two sub-expressions? It is …
The End.