Microsoft Security Essentials in schools

Can I use Microsoft Security Essentials on my school devices? Yes, but you will be breaking Microsoft’s EULA

Is this scenario supported? No

Does Microsoft want you to? No

Do I recommend it from a technical point of view? Yes, if the devices spend more than 10% of their lives away from the school premises and you have taught pupils to manage the anti-virus updates.

ipod nano 5th generation instructions video camera (PC)

Importing Recorded Videos to Your Computer
You can import your recorded videos to your computer. If you have a Mac with iPhoto,
you can easily share your recorded videos and add background music to them.
iPod nano formats recorded videos as VGA video H.264 w/AAC 30 fps files.
To import your recorded videos to your computer, iPod nano must be enabled for
disk use.
To enable iPod nano for disk use:
1 Connect iPod nano to your computer.
2 In iTunes, click iPod nano in the device list and click the Summary tab.
3 Select “Enable disk use.”
In addition to appearing in iTunes, iPod nano also appears on your computer as an
external disk, with the same name you gave it during initial setup. On a Mac, iPod nano
appears in the Finder and on the Desktop. On a PC, iPod nano appears in Windows
Explorer and My Computer.

Importing Recorded Videos to Your Computer

To import your recorded videos to your computer, iPod nano must be enabled for disk use.

To enable iPod nano for disk use:

1 Connect iPod nano to your computer.

2 In iTunes, click iPod nano in the device list and click the Summary tab.

3 Select “Enable disk use.”

4 Click Apply

5 Go to “My Computer” and click on your ipod nano device

6 click DCIM

7 click Apple000

8 Find your video and drag it onto your PC

No software is supplied by Apple for this task.  #fail

Bradford summer school – 5 days of fun for kids

shapeimage_1[1]Between the 2nd and 6th of August Bradford children have the opportunity to participate in a fantastic summer school. The summer school teaches music, drama and dance.

Students spend the week working towards a show which is performed on the Friday afternoon for families and friends to come and watch.

The school is run at Buttershaw Business and Enterprise College. At just £80 for the week it is great value!

Find out more at the PJC summer school website

Does anyone know if there is a Summer school in Bradford to do ICT stuff?  There should be one!

I’m taking a stand

veho
As you may know I’m reviewing 13 digital cameras with local Primary Schools, I’m about 1/2 way through capturing all the software procedures and decent shots of the cameras but the last 2 cameras have made me lose the will to live.

Stupidly I played with the Kodak, Creative and Flip cameras first and had a reasonably good software experience.

Then I got out the two Veho Kuzo cameras and it’s like going back 10 years in camera technology.  The software is on a CD instead of on the SD card in the camera, the software sucks and requires a restart also these cameras DO NOT actually record HD or if it is HD then it is probably the worst HD footage ever shot.  With that in mind I’m dropping the Veho cameras from the set and excluding them from further tests.  They receive a score of F for #fail.  I wouldn’t recommend either of the Veho cameras to schools.

Turns out the Toshiba Camileo P30 is in exactly the same boat. What a conundrum, at this rate I will only have 9 cameras left to give out to schools!

Installing Etherpad on Debian

IMPORTANT NOTE: ETHERPAD HAS BEEN REPLACED BY ETHERPAD LITE. YOU SHOULD FOLLOW THIS GUIDE.

IMPORTANT NOTE: THIS DOCUMENTATION IS NOW DATED.  You can now install Etherpad from apt.

Installing Etherpad 1.0.1 with APT

Add the following line as a source in your graphical package manager (In Ubuntu: System->Administration->Synaptic package manager; then Settings->Repositories and then finally Third party software), or edit the file /etc/apt/sources.list and add it there.

deb http://apt.etherpad.org all .
apt-get update
apt-get install etherpad

Answer the questions (if any, depends on your system settings)

/etc/init.d/etherpad start

Other Linux distributions
Download the .tgz and unpack it
Follow instructions in README 🙂

BELOW IS THE OLD GUIDE for Etherpad V1 released by Google

Install prereqs

echo "deb http://ftp.de.debian.org/debian sid main non-free" >> /etc/apt/sources.list
apt-get update
apt-get install sun-java6-jdk

If the above fails then do not continue.  The output of

java -version

Should read..

java version "1.6.0_17"
Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)
apt-get install scala mysql-server libmysql-java mercurial

Paste the below to /etc/profile

export PATH
export JAVA_HOME="/usr/lib/jvm/java-6-sun"
export SCALA_HOME="/usr/share/java"
export JAVA="/usr/bin/java"
export SCALA="/usr/bin/scala"
export PATH="/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH"
export MYSQL_CONNECTOR_JAR="/usr/share/java/mysql-connector-java-5.1.10.jar"
export JAVA_HOME SCALA_HOME JAVA SCALA MYSQL_CONNECTOR_JAR PATH
umask 022

Download the etherpad source to /usr/local/etherpad

hg clone https://etherpad.googlecode.com/hg/ /usr/local/etherpad

Set the environment variables

export JAVA_HOME="/usr/lib/jvm/java-6-sun"
export SCALA_HOME="/usr/share/java"
export JAVA="/usr/bin/java"
export SCALA="/usr/bin/scala"
export PATH="/usr/bin:/usr/bin:/usr/local/mysql/bin:$PATH"
export MYSQL_CONNECTOR_JAR="/usr/share/java/mysql-connector-java-5.1.10.jar"

Add your domain to the superdomain section


nano /usr/local/etherpad/trunk/etherpad/src/etherpad/globals.js

Search for etherpad.com and replace it with your domain (confused? You will figure it out)

Create the etherpad mysql db and privelidges

mysql -u root -p

Enter your password when prompted

create database etherpad;
grant all privileges on etherpad.* to 'etherpad'@'localhost' identified by 'password';
quit
cd /usr/local/etherpad/trunk/etherpad/
ln -s /usr/share/java /usr/share/java/lib
bin/rebuildjar.sh
bin/run-local.sh

Wait quite a while while it builds.

Test by browsing to your server at http://hostnameofserver:9000

Making pro work…

Make sure it doesn’t redirect to etherpad.com for pro

Edit /usr/local/etherpad/trunk/etherpad/src/main.js

Replace all instances of Etherpad.com with yourdomain.com

Edit /usr/local/etherpad/trunk/etherpad/src/static/crossdomain.xml

Add to the obvious section


<allow-access-from domain="yourdomain.com" to-ports="*"/>

<allow-access-from domain="*.yourdomain.com" to-ports="*"/>

Edit /usr/local/etherpad/trunk/etherpad/src/etherpad/pro/pro_utils.js

Replace

var fromDomain = 'etherpad.com';

with

var fromDomain = 'yourdomain.com';

Note: Originally published on the 19th of Dec 2009, Revised on the 10th of March 2010