Our holiday photos. We went camping in Norfolk :-)
Picasa Web Albums - Holiday 2009 - Holiday 2009
Tuesday, 25 August 2009
Tuesday, 14 July 2009
At last! Nokia to Google Calendar sync
At last! Nokia phone to Google Calendar synchronization that actually seems to work!
Googasync
After trying various freeware/shareware programs which never seemed to get out of beta and screwed with the phone or Google calendars in varied and "interesting" ways I may finally have found a worker.
It actually seems to work well enough that I'd be willing to pay for it. And I never buy software if I can find something Open Source to do the job!
Currently using 7 day trial on Nokia 6124.
Googasync
After trying various freeware/shareware programs which never seemed to get out of beta and screwed with the phone or Google calendars in varied and "interesting" ways I may finally have found a worker.
It actually seems to work well enough that I'd be willing to pay for it. And I never buy software if I can find something Open Source to do the job!
Currently using 7 day trial on Nokia 6124.
Tuesday, 19 May 2009
In the name of Yeshua ben Yoseph
From http://www.behindthename.com
JESUS
English form of Ιησους (Iesous), which was the Greek form of the Aramaic name יֵשׁוּעַ (Yeshu'a). Yeshu'a is itself a contracted form of Yehoshu'a (see JOSHUA). Yeshua ben Yoseph, better known as Jesus Christ, was the central figure of the New Testament and the source of the Christian religion. The four Gospels state that he was the son of God and the Virgin Mary who fulfilled the Old Testament prophecies of the Messiah. He preached for three years before being crucified in Jerusalem.
All simple enough but now check out the comments page where the real fun begins as the logical and the liturgical take sides.
You have to wonder about the twisted logic behind:
When I was thirteen, a fifteen year old boy named Jesus (hay-SOOS) left our school because he sexually assaulted me. I think that it is horrible to have to say 'yes, Jesus sexually assaulted me the other day.' So, soon-to-be parents, on the off chance that your son turns out to be a weirdo, do not name him Jesus.
Well I laughed.
All simple enough but now check out the comments page where the real fun begins as the logical and the liturgical take sides.
You have to wonder about the twisted logic behind:
When I was thirteen, a fifteen year old boy named Jesus (hay-SOOS) left our school because he sexually assaulted me. I think that it is horrible to have to say 'yes, Jesus sexually assaulted me the other day.' So, soon-to-be parents, on the off chance that your son turns out to be a weirdo, do not name him Jesus.
Well I laughed.
Monday, 2 February 2009
Wednesday, 21 January 2009
Acer Aspire One Linpus - Password Protection
I now have an Acer Aspire One netbook, the 8GB Linux version which runs Linpus Lite on a "solid state disc".
Great as this little machine is out of the box I can't help feeling that on something this portable (and thus stealable) the lack of password protection on start up is a serious security issue. When you first set the One up it asks you to create a password but only asks for it when coming out of screensaver/suspend (if you select the option for it to do so). At start up auto login is enabled by default so no password is asked for. This obviously contributes to the One's impressive sub 17 second boot time but if you're as uncomfortable with the lack of security then you'll want to disable that auto login.
It took me some time and googling to find out how to do this so I'll spread the word here. It does involve a bit of Linux command line jiggery-pokery though so care is required.
First off, where's the Terminal? Not immediately obvious this. From the home screen open "My Documents". Then click File, and click Terminal. A nice command line terminal should appear with a prompt:
[user@localhost Documents]$
At the prompt type
sudo thunar
and hit enter
Thunar is the file manager used on the Aspire One and "sudo" means you want to run it as root, rather than as an ordinary user. If a password is requested enter the password you set up when you first set up your Aspire One. A new file manager window will appear, this time with a big red warning bar across it to indicate that you are using the root account!
Use the blue arrow button to go up one level then click "view" and "show hidden files". You should now be able to see all the system folders on the disk. You need to navigate to this folder:
/etc/rc.d/
so type /etc/rc.d/ into the location box (just above the red bar) and hit enter. the contents of the folder should be displayed. Scroll down until you see the file named
rc.S
Carefully right click this file, be sure not to accidentally double click it otherwise the file will run, all hell breaks loose and you will have to turn off your One and start again. Yes, that is the voice of experience :-( Click on "Open With" and "Open with "Mousepad"" The contents of the file will be displayed. You need to carefully edit this file as follows, if you get it wrong your One may become unusable so I suggest you print this bit or write it down, especially if reading this on your One.
First of all find the following line in the file
/usr/bin/xinit -- -br>/dev/null 2>&1 &
You need to comment out this line so it will be ignored by putting # at the start of it like this:
#/usr/bin/xinit -- -br>/dev/null 2>&1 &
Immediately below this line add a new line like this:
/usr/sbin/gdm
Now click File and Save, then File and Quit to close the window. Close all the other windows and restart the One.
When you reboot your Aspire One you will be presented with a login screen. The username is "user" and the password is whatever you set it to be when setting up your One.
You will also briefly see this screen when shutting down your One.
Some of the above I found on THIS SITE where there is more info, including a link to what to do if you forget to add the extra line and can't boot your One!
Although the Aspire One takes a little longer to start now I feel much happier with that little extra bit of security between my data and the bad guys. I hope this info is of use to others, feel free to spread it around.
Great as this little machine is out of the box I can't help feeling that on something this portable (and thus stealable) the lack of password protection on start up is a serious security issue. When you first set the One up it asks you to create a password but only asks for it when coming out of screensaver/suspend (if you select the option for it to do so). At start up auto login is enabled by default so no password is asked for. This obviously contributes to the One's impressive sub 17 second boot time but if you're as uncomfortable with the lack of security then you'll want to disable that auto login.
It took me some time and googling to find out how to do this so I'll spread the word here. It does involve a bit of Linux command line jiggery-pokery though so care is required.
First off, where's the Terminal? Not immediately obvious this. From the home screen open "My Documents". Then click File, and click Terminal. A nice command line terminal should appear with a prompt:
[user@localhost Documents]$
At the prompt type
sudo thunar
and hit enter
Thunar is the file manager used on the Aspire One and "sudo" means you want to run it as root, rather than as an ordinary user. If a password is requested enter the password you set up when you first set up your Aspire One. A new file manager window will appear, this time with a big red warning bar across it to indicate that you are using the root account!
Use the blue arrow button to go up one level then click "view" and "show hidden files". You should now be able to see all the system folders on the disk. You need to navigate to this folder:
/etc/rc.d/
so type /etc/rc.d/ into the location box (just above the red bar) and hit enter. the contents of the folder should be displayed. Scroll down until you see the file named
rc.S
Carefully right click this file, be sure not to accidentally double click it otherwise the file will run, all hell breaks loose and you will have to turn off your One and start again. Yes, that is the voice of experience :-( Click on "Open With" and "Open with "Mousepad"" The contents of the file will be displayed. You need to carefully edit this file as follows, if you get it wrong your One may become unusable so I suggest you print this bit or write it down, especially if reading this on your One.
First of all find the following line in the file
/usr/bin/xinit -- -br>/dev/null 2>&1 &
You need to comment out this line so it will be ignored by putting # at the start of it like this:
#/usr/bin/xinit -- -br>/dev/null 2>&1 &
Immediately below this line add a new line like this:
/usr/sbin/gdm
Now click File and Save, then File and Quit to close the window. Close all the other windows and restart the One.
When you reboot your Aspire One you will be presented with a login screen. The username is "user" and the password is whatever you set it to be when setting up your One.
You will also briefly see this screen when shutting down your One.
Some of the above I found on THIS SITE where there is more info, including a link to what to do if you forget to add the extra line and can't boot your One!
Although the Aspire One takes a little longer to start now I feel much happier with that little extra bit of security between my data and the bad guys. I hope this info is of use to others, feel free to spread it around.
Labels:
Acer Aspire One,
Linpus,
password protect,
security
Tuesday, 16 December 2008
Nothing found for Netbooks Asus-Eee-PC-900HA
How to make friends and influence people. Put up a sarcastic 404 page for people who follow links from your own homepage.
Nothing found for Netbooks Asus-Eee-PC-900HA
Nothing found for Netbooks Asus-Eee-PC-900HA
Thursday, 4 December 2008
Afternoon Stroll



Wildmoor HeathWildmoor Heath
Pylons across Wildmoor Heath
Footbridge across the railway, Little Sandhurst
Labels:
Bracknell Forest,
countryside,
december,
Sandhurst,
Wildmoor
Subscribe to:
Posts (Atom)

