Translate

Archives

Customizing the GNOME Shell

The new GNOME 3 Shell is highly configurable. In this post I share a modicum of what I have learned to date about customizing the new Shell including how to change themes, icons, fonts and colors.

GNOME 3 Shell in Fedora 15

This post discusses the Fedora 15 GNOME 3 Shell. It provides an overview and introduction to the Shell and shows you how to customise it using CSS.

Calculating Prime Numbers using Perl

Definition of a prime number: A prime number is defined by any number that is only dividable by 1 or itself. Except for 2 which is a prime, a prime number is always odd (2n+1) Here is a Perl script which outputs all the prime numbers between 0 and 10000: #!/usr/bin/perl my $UPPER = 10000; my $sieve = “”; print “2n”; for (my $guess = 3; $guess < = $UPPER; $guess+=2) { next if vec($sieve,$guess,1); print "$guessn"; for (my $mults = $guess * $guess; $mults