[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] Re: Glade
Hi Richard,
Richard Ibbotson wrote:
> it. I've got the Wrox Gtk+ book which is just about the best one
> that I've seen. Started to build the calculator application at page
> 437 but got lost in the detail of which bit to do next.
I've got one book around, but I don't know whether it is the same
or not (I have a Spanish translation, but it is the one by Eric
Harlow).
At any rate, the whole idea of GTK is rather simple once you get
the hang of it. Some useful tutorials:
- <http://www.geocities.com/ichattopadhyaya/linux/glade.htm>
- <http://www.kplug.org/glade_tutorial/gladekplugtut.html>
- <http://sjbrown.geeky.net/metagame-sector/tutorial.html>
(Python-related)
- <http://laguna.fmedic.unam.mx/~daniel/pygtutorial/pygtutorial/>
(again some Python-related stuff)
Anyway, those are some of the links I had handy. No doubt google
(or globito.com) will provide more useful links.
Hope it helps,
José
--
José L Gómez Dans PhD student
Tel: +44 114 222 5582 Radar & Communications Group
FAX; +44 870 132 2990 Department of Electronic Engineering
University of Sheffield UK
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}