We’ve just finished some updates to the Primary Blogger servers which should increase access speed and fix any issues with image uploads experienced over the last few days.
PrimaryPad Chrome extension keeps track of the pads you used
Ever forgotten the URL of a Primary Pad you have been working on? Well now this very simple Chrome extension will help you remember by providing a really simple click link.
How to change the Welcome pad text on Etherpad Lite
To change the welcome text in Etherpad Lite open up /local/node-v0.4.10/etherpad-lite/settings.json
Scroll to the defaultPadText value and edit it there.
You will need restart the Etherpad Lite service to make the new text appear.
Install Etherpad Lite on Ubuntu and Debian
UPDATE: These docs are now out of date, you should use the official install documents provided by the Etherpad Foundation.
Installing Etherpad Lite on Debian/Ubuntu clean.
Part 1 – Installing prerequisites
apt-get install build-essential python libssl-dev git-core git libsqlite3-dev gzip curl # you will be prompted to press Y
Part 2 – Installing nodeJS and NPM
mkdir ~/local cd ~/local wget http://nodejs.org/dist/v0.6.12/node-v0.6.12.tar.gz tar -zxvf node-v0.6.11.tar.gz cd node-v0.6.11 ./configure --prefix=$HOME/local/node make make install echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.profile echo 'export NODE_PATH=$HOME/local/node:$HOME/local/node/lib/node_modules' >> ~/.profile source ~/.profile
Part 3 – Installing Etherpad Lite and running it
git clone git://github.com/Pita/etherpad-lite.git etherpad-lite/bin/run.sh # You will be prompted to type Etherpad Lite rocks my socks.
You are now finished installing and Etherpad Lite should be running, you should be able to access it on http://localhost:9001
Only if you have an old version of Debian (Lenny) or Ubuntu then you will need to install sqllite from backports. To do open /etc/apt/sources.list and add:
deb http://backports.debian.org/debian-backports lenny-backports main
Save and close the file then type
apt-get update apt-get -t lenny-backports install libsqlite3-dev
You may need to rebuild your modules if you have an error, to do this do an rm -Rf node_modules and run the startup script (run.sh) again!
Want to run Etherpad Lite as a service? Follow this guide. Make sure you do a chown -R etherpad-lite on the etherpad-lite folder if you have run it as root or any other user before hand..
Change default URL in webian
Webian is a custom, leight weight build of chromium. I’m looking at using it to create a custom browser.
I’m playing with webian at the moment and will be documenting part of my learning process.
The first thing I needed to do was change the default start page, to do this:
Browse to the browser code folder
Open main.js
Find the line that begins with newTab and change it to read the URL you want it to read.