Importing an existing C++ project into NetBeans IDE
Links: – These are not QT based projects.
- Developing Existing Application With the NetBeans C/C++ Development Pack – The Squirrel Shell project
- C/C++ Projects Quick Start Tutorial
NetBeans: New Project > C++ project with existing source
-
At this point I encountered this page: NetBeans with Qt3 I did the project import using the existing SpreadSheet project that I had previously successfully built using command line interface. It successfully built under NetBeans direction. It is important that I built successfully previously as Netbeans used all that was in place as was.
Math: Octave the open source equivalent of MatLab
MatLab is getting out of hand with its pricing!
- GnuOctave project website
- Octave on wikipedia
- Page of the new developers working on QtOctave – with source code download
- QtOctave's original developer's blog
- QtOctave interface for Octave the original developers have dropped it but others appear to have taken it up.
- GnuOctave – talks about another gui frontend that appears to be in active development
Controlling which picture is used for FaceBook thumbnail
The following code inserted into the header.php passes off the thumbnail in the article. [php light=”true”] <?php
![]()
Office Tip of the Day: Wavy Armed Stand In for you at the office
Office tip of the day: Get one of those inflatable wavy-arm air-blowing things you see advertising stuff in a life sized version of you. Then fire it up at the office to give the illusion of furious activity. This idea supersedes the kinko's printed lifesized cardboard cutout that rests with hands on keyboard.
That is all. Go back to what you were doing.
Notes: What to do when you sell your car in Arizona
14) What should I do when I sell my car?
Remove the license plate and keep it for use on another vehicle. If you do not transfer that plate to another vehicle within 30 days, you must surrender the plate to an MVD or Third Party office, or submit an affidavit of plate destruction (Plate Notice, form #48-3302).
As the seller, you must sign off the back of the title (have your signature notarized) and give the title to the buyer. Complete a Sold Notice online, or fill in the back of the vehicle registration and mail it to the address indicated on the form.
When selling or trading a vehicle, there may be a plate credit available for refund. For more information, see Selling Your Vehicle.
Arizona
- Filing a sold notice
- submit an affidavit of plate destruction (Plate Notice, form #48-3302).​
Texas
….More
MinGW hello world in windows Minimalist GNU for Windows
GNU compiler plus Windows interfaces means you can write apps for Windows
MinGW ("Minimalist GNU for Windows"), formerly mingw32, is a free and open source software development environment to create Microsoft Windows applications.
MinGW includes a port of the GNU Compiler Collection (GCC), GNU Binutils for Windows (assembler, linker, archive manager), a set of freely distributable Windows specific header files and static import libraries which enable the use of the Windows API, a Windows native build of the GNU Project's GNU Debugger, and miscellaneous utilities.
Compile and run a small test program with MinGW
Links
- MinGW basic instruction of usage – example runs with windows cmd prompt and the most important thing is to set the path
Code
#include <iostream>
using namespace std;
main()
{
cout << "Hello World!";
return 0;
}


