Archive

Archive for June, 2009

Visual Command Alpha 0.0.0.0.0.1

June 22nd, 2009

Visual Command

I have been playing around with this idea since I graduated in May.  I learned a lot about QT from this project.

It can dynamically create an interface for a command prompt application.

It currently uses check boxes, numerical integer , and strings as inputs.

Files, doubles, and sliders will be next, along with a way to upload/download GUI interfaces to a server.

It was built using QT over the previous month.  Never used Qt before so it was more of a learning experience.

Visual Command Edit ModeVisual Command run Mode

Sam Uncategorized

Calling base function, and base constructor C++

June 17th, 2009

class ParentClass{

ParentClass(){

}

void FunctionA(){

}

}

class ChildClass:ParentClass{

ChildClass():ParentClass(){

}

void FunctionA(){

ParentClass::FunctionA();

}

}

Sam Uncategorized ,

Favorite Applications

June 11th, 2009

Launcy – http://sourceforge.net/projects/launchy/

Launchy is a free windows utility designed to help you forget about your start menu, your desktop icons, and your file manager. Launchy indexes and launches your applications, documents, project files, folders, and bookmarks with just a few keystrokes!

Synergy – http://sourceforge.net/projects/synergy2/

Synergy lets you easily share a single mouse and keyboard between multiple computers with different operating systems without special hardware. It’s intended for users with multiple computers on their desk since each system uses its own display.

Sam Uncategorized