Just another bunch of stuff pouring out of some guy's head

Install Python module earthpy on Windows

I encountered numerous errors when I attempted to install the earthpy Python module and here’s how I eventually got it to work:

pip install wheel
pip install pipwin

pipwin install numpy
pipwin install pandas
pipwin install shapely
pipwin install gdal
pipwin install seaborn
pipwin install fiona
pipwin install pyproj
pipwin install rasterio

pip install earthpy

NOTE: both pip and pipwin are used.

(more…)

Word 2007, where’s the Organizer?

I occasionally develop macros in Word and having recently switched to Office 2007 (and a new computer) I initially found myself unable to move macros across from my old machine. Here’s how. (more…)

I’ve lost my Twittin’ mind

You may notice some fairly erratic behaviour from my Twitter sidebar at the moment. It’s because I’m in the process of developing my Twitter Widget further. (more…)

WordPress Twitter widget

I’ve been wanting to dip my foot into WordPress widgets for while so when I noticed Twitter didn’t have a WordPress widget I decided to write one. Of course, I’m not the first. (more…)

Using the Flash ‘Nested Ojects’ method in ASP pages

Occasionally I want to use Flash on a web page. Tragic, but true. I’ve been looking for an accessible, valid method for doing this. There are few candidates. I settled on the ‘Nested Objects’ method. It seemed quick, painless and didn’t require javascript. But there was a hitch…

Active Server Pages error 'ASP 0139' 
Nested Object 
An object tag cannot be placed inside another object tag.  

IIS’s ASP interpreter wouldn’t pass the page with nested <object> tags. (more…)

Switching views in VS2005

I use DreamWeaver. A lot. I also write ASP but have realised that it’s probably time to move to ASP.NET now that 2.0 is claiming to make a lot of things easier.

In making this move, I’m having to come to terms with the Visual Studio 2005 IDE. It’s formidable. The more I can get it to behave like DreamWeaver the happier I’ll be. (more…)

Can’t be RSS’ed

For ages I’ve had a page open in my browser and today I actually used it. The idea of doing something with RSS on our site has been hassling me for a while now and I must’ve been looking for code to implement (read: copy and paste) it on our site. (more…)

Nuke ‘Em!

Fixed my first bug last Thursday. Didn’t write about it then because I couldn’t be buggered (no pun intended).

Seems DNN3’s skin and container preview thumbnails weren’t displaying in its admin interface. Unbelievably the <img src= URL had back slashes in it. On my W2K -> W2K3 server URLScan was blocking this. (more…)