georgeprowse
.co.uk
Useful Stuff
Based on a design from Open Source Web Design . Relased under the Creative Commons "Share and ShareAlike (sa)". You may distribute derivative works only under a license identical to the license that governs the original work.
##UNDER CONSTRUCTION!!!
The Basics
I am a tip, remember me and I will help you out!
What is Gentoo?
Gentoo is a Linux distribution. It has a special place in landscape of Linux and it's known for its speed, fun community and steep learning curve.It is what's know as a "source distro", which basically means that instead of getting pre-compiled programs that install straight away you have to compile the source code which makes/builds the program.
What is source code?
Quite simply, source code is how a program is written to make it human readable and writable. Computer readable code (binary, see below) would be prohibitively long to write so people invented languages that could be written by a person and then converted by another program into something that the computer can understand. Here is an example (taken from runningwithscissors on the Gentoo Forums)~MyClass()
{
this->!MyClass();
}
!MyClass() // this is the finalizer
{
if (this->foo != nullptr)
delete this->foo;
this->foo = nullptr;
if (this->bar != nullptr)
delete this->bar;
this->bar = nullptr;
}