Daily Archive for May 1st, 2007

Heroes Art

Scared ClaireIf like me you enjoy comic book art and have been watching the hit NBC TV show Heroes, you probably would have noticed the recurring paintings and sketches that play a central role throughout the show.

Well they are all created by comic book ilustrater Tim Sale. The body of Sale’s comics work has been with collaborator Jeph Loeb who is also a writer and producer on the show.

The two have produced popular works such as Batman: The Long Halloween, Batman: Dark Victory, and the so-called ‘color’ books for Marvel Comics starring characters such as Spider-Man and Daredevil.

Just over a month ago, four of the paintings that where featured in the TV show went up for auction. The paintings that where auctioned marked pivotal moments in the TV series: The Exploding Man, Homecoming, The Eclipse and Hiro Battles The T-Rex the highest bid was a huge $25,000 on the Homecoming painting probably one of the most iconic images in the first season. All the proceeds went to the National Epilepsy Foundation.

Also there is an article here in which Sale talks about the stories behind some of the paintings that appear throughout the series.

DHCP Installation & Setup on Centos 4

DHCP (Dynamic Host Configuration Protocol) is used to assign IP addresses to clients on the network. We can use the server package to assign the IP addresses of valid DNS servers, WINS name servers, TFTP boot servers etc.

Installation of DHCP is fairly straight forward. Simply install the DHCP server from your nearest repository.

# yum install dhcp

After the installation script has finished running, the configuration file will need to be edited to suit the needs of your enviroment.

# vi /etc/dhcpd.conf

An example of standard DHCP configuration file follows.

ddns-update-style none;
deny bootp;
authoritstive;
subnet 192.168.0.0 netmask 255.255.255.0
{
option subnet-mask 255.255.255.0;
option domain-name "example.com";
option routers 192.168.0.1;
option domain-name-servers 192.168.0.1, 192.168.0.10;
option netbios-name-servers 192.168.0.2;
range dynamic-bootp 192.168.0.60 192.168.0.120;
default-lease-time 31200;
max-lease-time 62400;
}

OK lets explain the above DHCP configuration. Any machine that connects to the server will recive a dynamic IP address between 192.168.0.60 and 192.168.0.120 and a subnet mask of 255.255.255.0.

The server will dish out the default DNS servers for the client of 192.168.0.1 and 192.168.0.10 along with the default domain name suffix of example.com. The configuration also specifies a default WINS server of 192.168.0.2. This is useful if there are Microsoft Windows clients connecting to a Samba Server on the network.

The default lease time is 520 minutes (counted in seconds) and the maximum lease time is set to 1040 minutes (again, counted in seconds).

Once the DHCP server has been configured, and the file saved, it can be started by executing:

# /etc/init.d/dhcp start

Make sure that once everything is working correctly, and you are satisfied with the configuration, you make sure the dhcpd init script is set to start on system reboot.

# chkconfig dhcpd on

Macquarium G4 Cube

Mac Aquarium

For those of you that haven’t heard of A macquarium before its just an aquarium made from the shell of an Apple Macintosh computer. This has to be one of the coolest fish tanks I’ve seen, made from an old 450mhz Power Mac G4 Cube.

For more information on this particular macquarium check out this website.