April 20th, 2008
As a follow on from Django on OS X - getting started here’s what happened after I took Stuart’s advice, installed Xcode and atempted to add mod_wsgi to apache. Before I start let’s just clarify that I’m using MAMP Pro 1.7 on my MacBook Pro running OS X 10.4. This provides me with Apache/2.0.59 (Unix) PHP/5.2.3 DAV/2. Read the rest of this entry »
Tags: Apache, Django, error, Mac, MAMP, OS X, Python
Posted in Geeky, Mac | 5 Comments »
April 8th, 2008
As I’m somewhat picky about the code produced on my sites I was really keen to remove the comments describing each TYPO3 content element. This is the sort of thing I mean:
<!-- CONTENT ELEMENT, uid:122/textpic [begin] -->
<a id="c122"></a>
<!-- Header: [begin] -->
<div class="csc-header csc-header-n1">
<h2 class="csc-firstHeader">
Time-served Designer & Webmaster available for challenging permanent positions and short-term contracts.
</h2>
</div>
<!-- Header: [end] -->
<!-- Image block: [begin] -->
<div class="csc-textpic-text">
<!-- Text: [begin] -->...
Read the rest of this entry »
Tags: meta, SEO, TYPO3
Posted in Geeky, TYPO3 | No Comments »
April 7th, 2008
Wanting to publish an RSS feed on a TYPO3 site recently I ran into errors relating to the php configuration of Dreamhost. To solve this I followed the instruction for using your own modified version of php.ini on the wiki which essentially copies the latest Dreamhost version of php.cgi and php.ini into a newly created cgi-bin directory.
Read the rest of this entry »
Tags: Dreamhost, error, TYPO3, web
Posted in Dreamhost, Geeky, Linux, TYPO3 | No Comments »
April 3rd, 2008
I’d decided a while ago to invest some time learning Python, already had MAMP Pro happily running on my MacBook Pro running OS X 10.4 so it made sense to push further and have a look at Django - the Python Web Framework. I’m following the beautifully written Django Book and an amalgam of google results. Read the rest of this entry »
Tags: Django, error, Mac, MAMP, OS X, web
Posted in Geeky, Mac | 3 Comments »
March 28th, 2008
As I find myself rarely needing to network my MacBook Pro with anything nowadays I inevitably find myself having to trawl a noise of Google results to obtain the desired effect.
Should be straightforward enough. I’ve enabled file sharing on the mac and been networking most flavours of Windows over the years. The problem is that on authenticating as the appropriate mac user from the Vista end the expected mac user-name format of macmachinename\user-name isn’t accepted. Read the rest of this entry »
Tags: error, Mac, Vista, Windows
Posted in Geeky, Mac | 4 Comments »
October 5th, 2007
Following the proliferation of available ubuntu flavours, I dreamt with interest that the worlds most popular Linux distribution is no longer content to constrain their target user.
Gentle reader, I present to you mewbuntu 
Tags: Humour, Linux, Ubuntu
Posted in Geeky, Laughable, Linux | No Comments »
September 19th, 2007
Nokia’s support for the Mac platform is paltry - everything seems to rely on an installation of Nokia Suite which is PC only. Apple’s iSync steps in to synchronise contacts and calendar entries between the two but sms messages are seemingly stored on the phone forever.
Read the rest of this entry »
Tags: Mac, mobile, Nokia
Posted in Geeky, Mac | No Comments »
September 14th, 2007
On a FullXML site running on some HELM shared hosting (Windows) I suddenly got this front-end error on all pages and no content:
msxml3.dll error '80004005'
A reference to variable or parameter 'gateway' cannot be resolved.
The variable or parameter may not be defined, or it may not be in scope.
/Engine/CFullXMLEngine.asp, line 819
Read the rest of this entry »
Tags: error, web, Windows
Posted in Geeky | No Comments »
December 31st, 2006
Step 1
Create the following script somewhere. I choose ~/bin.
#!/bin/bash
src=/insert/path/to/mounted/camera
DST=/home/shared/Photos/camera_sync/
rsync -rtv --modify-window=1 --progress --ignore-existing $SRC $DST
xmessage "Camera Sync Complete!"
Step 2
Find the gnome removable media preferences application. (On Ubuntu it’s at System->Preferences->Removable Drives and Media).
Under the Multimedia tab change the Digital Camera command to:
gnome-terminal -e "/path/to/your/script"
Tags: Linux, Ubuntu
Posted in Geeky, Linux | Comments Off
December 30th, 2006
Matt’s music player of choice under ubuntu. Essentially does the same job as iTunes without the online sales bit. Playlists, external media, rating, album art, id3 tags etc
http://www.exaile.org/
Can I upgrade my version after having apt-get install(ed) it?
A quick visit to getdeb revealed a newer SoftwarePackage exaile_0.2.5b-1getdeb1_i386.deb so I downloaded that and installed it using the GUI(gdebi 0.1.4ubuntu13), clicked my desktop icon and … nothing! Invoking the app from the command line gave me this error
matt@precuntu:~$ exaile
Traceback (most recent call last):
File "/usr/bin/exaile", line 65, in ?
from xl import *
File "/usr/share/exaile/xl/tracks.py", line 18, in ?
import common, media, db, config, trackslist
File "/usr/share/exaile/xl/media.py", line 18, in ?
import mutagen, mutagen.id3, mutagen.flac, mutagen.oggvorbis
ImportError: No module named oggvorbis
This ubuntu forum link provided a source for the missing python-mutagen package so I was able to download, build and install as per the instructions there.
Tags: Linux, music, Ubuntu
Posted in Geeky, Linux, music | No Comments »