| View previous topic :: View next topic |
| How do you rate LXF 66? |
| Poor |
|
0% |
[ 0 ] |
| Okay |
|
15% |
[ 3 ] |
| Excellent |
|
85% |
[ 17 ] |
|
| Total Votes : 20 |
|
| Author |
Message |
Gordon LXF regular

Joined: Thu Apr 07, 2005 6:01 pm Posts: 209 Location: Bradford, West Yorkshire
|
Posted: Fri Apr 15, 2005 6:41 pm Post subject: |
|
|
Greatmag. I've still got every copy from the preview Linux Answers and have subscribed from about issue 3. The mag just keeps getting better. I can only say, 'Start selling binders for the mag'. It's a great source of reference material. Maybe you could create an index for each binder so I can find those articles from years ago with ease. _________________ Violence is the last refuge of the incompetent |
|
| Back to top |
|
 |
skecs

Joined: Fri Apr 22, 2005 10:22 am Posts: 76 Location: Bathurst, NSW Australia
|
Posted: Fri Apr 22, 2005 11:16 am Post subject: |
|
|
Just a quick thought about the code issues - any chance of them being an ASCII file or files on the DVD under the Magazine folder (Coding).
I was just having some gawk errors with the shell script in "A Space Odyssey" in the Tutorials section. It came back to having the spaces wrong which is easy to do in non-monospaced text (which takes up lots of room on paper). _________________ Regards from
Downunder!
.... _
... (0)>
... / /\
.. / / .)
.. V_/_
Linux Powered! |
|
| Back to top |
|
 |
graham Site admin

Joined: Tue Apr 12, 2005 10:31 am Posts: 37
|
Posted: Mon Apr 25, 2005 1:05 pm Post subject: |
|
|
Here's my final space odyssey script:
| Code: | #!/bin/bash
TMP="/tmp"
SRC="http://antwrp.gsfc.nasa.gov/apod/"
PGE="astropix.html"
cd ${TMP}
wget --quiet $SRC$PGE
image=`gawk -F \" '/href="image/ { print $2; exit; }' $PGE`
wget --quiet $SRC$image
filename="${image##*/}"
cp -rf $TMP/$filename $HOME/.kde/share/background
dcop kdesktop KBackgroundIface setBackgroundEnabled false
dcop kdesktop KBackgroundIface setWallpaper $HOME/.kde/share/background 6
dcop kdesktop KBackgroundIface setBackgroundEnabled true
rm -rf $TMP/$filename
rm -rf $TMP/$PGE |
This script needs to go into your path (such as $HOME/bin). The dcop stuff won't work from cron, because it doesn't know about the KDE session. You can get around this in KDE by using kalarm for scheduling instead. |
|
| Back to top |
|
 |
donoreo LXF regular

Joined: Mon Apr 11, 2005 2:49 pm Posts: 788 Location: Toronto, Ontario, Canada
|
Posted: Tue Apr 26, 2005 3:59 pm Post subject: |
|
|
It was a very good issue (and the first of my subscription, no more running around to find it) including the usual assortment of typos and spelling errors
Don in Canada |
|
| Back to top |
|
 |
ryptyde
Joined: Wed Apr 06, 2005 5:24 pm Posts: 95 Location: Tragic City,Michigan,USA
|
Posted: Wed Apr 27, 2005 3:13 am Post subject: |
|
|
I enjoyed the Firefox write-up and also found the "Firefox Tip" on the side panels useful
as I read,browse and tweak.GCC 4.0 article was not so exciting (due to my ignorance)but
I read it through to the end and will no doubt be utilising it in the near future.
The tutorials are a joy and have been following the GIMP closely.
Keep up the good work.
Phil |
|
| Back to top |
|
 |
skecs

Joined: Fri Apr 22, 2005 10:22 am Posts: 76 Location: Bathurst, NSW Australia
|
Posted: Tue May 03, 2005 9:02 am Post subject: |
|
|
Hi graham,
Thanks for the nasa script in monospace fonts - works a treat!! _________________ Regards from
Downunder!
.... _
... (0)>
... / /\
.. / / .)
.. V_/_
Linux Powered! |
|
| Back to top |
|
 |
| View previous topic :: View next topic |
|