The end of Unit 3/Melt/The Attic/Club X
Jan 16th
These photos were taken in the summer of 2009 before the main part of J. Needhams complex was pulled down. The snooker hall and bingo hall were attached to the rear of the club. You can still see the rear of the club from the main road, but it will soon be a Lidl store.
I spent many years as a punter and working in this famous club. My first experience of it was when I was at Bucks Uni in 91/93. It was called The Attic then, and was very strange.
When I returned from Derby Uni in 95 it became my usual weekend haunt. At some point I got a job in the cloakroom, and then on the door, not as security, just taking the door tax. I had many great nights in there, and put on my first party there. An eclectic night called Garble.
The Attic closed down late in the 90’s but was soon reopened as Melt. It had a refit and was popular once again. This lasted a year or two before it closed. I am not sure why it closed, but when it reopened at Unit 3 it received a major refit.
I was asked to bring Magic in as one of the main nights. We had reasonable success, but it was never a major crowd puller. Eventually after a year or two the club closed due to not being able to get insurance. It was sad to see it close, and hoped it would eventually come back. This was not to happen, and we now know its going to be pulled down.
I have many good memories from this club, its where I met my wife, and made some great friends. If you too have some special memories, please post them below as a comment.
If you also have some photos that you would like to share, get in contact with me and I will post them.
Just Rite Presents Globule and Just Add Techno
Jan 12th
I have been asked to provide lighting at another party at Play (was Plug N Play) in Reading on Friday 5th March. Its Just Rite’s first venture in club land, with two rooms of banging music featuring local and home grown talent. If there are enough people in attendance then it will go on till 6.
Psy Room:
PSYFI (LIVE SET)
BERGER – Ninja Hippies
12MANY – Just Rite
Techno Room:
KICK TOM SNARE – Just Rite
CAPTAIN ACID SCOTTISH – Just Rite
MR PICKLESON – Just Rite
Sound Provided by Just Rite Sound System
Lighting Provided by Dooza Lighting
Decor By Spectrum Decor
Door tax £5 b4 11 £7 After
Play (Plug n Play Studios)
35 Milford Road
Reading
RG1 8LG
Spry External Link Icon
Dec 8th
This is the first bit of code that I have created that I think is good enough to share. I didn’t come up with this on my own, I drew inspiration from this blog post, and had some help from V1 over at the Adobe Spry Forum.
This simple bit of JavaScript will give your external links on your page an icon to indicate that you will be leaving the site. I previously would have done this using a CSS selector that targeted all links in a paragraph that had the target attribute set to “_blank”, but I wanted a fool-proof way of doing this without having to remember to set the target.
How does it work?
It works by manipulating the DOM using the Spry Dom Utils JS. It creates an observer that on page load adds the class called “external” to all links that are on a different domain.
To use it, just put this in your head section:
<script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script> <script src="SpryAssets/SpryExternalLinkIcon.js" type="text/javascript"></script> <link href="SpryAssets/SpryExternalLinkIcon.css" rel="stylesheet" type="text/css" />
The first file is from the current Spry library.
The second is my custom code, and the third is a small bit of CSS.
This is SpryExternalLinkIcon.js:
function externalLinkIcon(){
Spry.$$("a").forEach(function(href) {
if( href.hostname != window.location.host ){
Spry.Utils.addClassName( href, 'external');}
});
}
Spry.Utils.addLoadListener(externalLinkIcon);
This is SpryExternalLinkIcon.css
.external {
background: url('external.png') 100% 60% no-repeat;
padding: 0 15px 0 0;
}
Now any link that is on a different domain will get assigned the class “external”, which in turns puts an external link icon at the end of it.
Demo
You can see what I have been talking about here: http://www.dooza.tv/spry/SpryExternalLinkIcon.html
Download
You can download the files here: http://www.dooza.tv/spry/SpryExternalLinkIcon.zip
Conclusion
Using JavaScript to add this icon is progressive enhancement, the page doesn’t break, the link still works, but in browsers with JavaScript support you get the added functionality of an icon that helps the visitor recognise an external link. The visitor might want to open the link in another tab or window, knowing its an external link before having to click it will save time.
I would love to hear your opinions on this little bit of code that I have presented here. There aren’t many Spry tutorials or blogs about, which is a shame, its got potential.
The Final Mo
Dec 6th
A little bit late posting this (whats new!) but this was my Mo for Movember on the last day of November. I raised £190 online, with another £15 collected in cash. I want to thank everyone for helping me raise this money for Prostate Cancer Charity, but mostly I want to thank my wife Louise for the support, and putting up with my Mo.
You can still donate to the cause, its not too late. Just pop along to my page over at Movember and give as much as you like.
Powered by Wordpress, one year on
Nov 22nd
Its now been a year since I replaced my Blogger powered blog with one powered by Wordpress. The transition was very easy, I didn’t lose any Google Juice and have now seen my traffic increase.
Wordpress as a platform is very easy to learn, and was much more flexible that Blogger. It has jumped in functionality with numerous new releases, more than I ever counted on. I had previously toyed with Joomla but it never worked the way I wanted it too, and was very frustrating.
To celebrate the year of use, I have changed template, and will be fine tuning it to my liking. One day I will make my own from scratch, but need more time to get my head around what is possible.





