Brandnoo

A blog by Ben Hindmarch

  • About Ben
  • Home
  • Brandnoo »
  • Web Development
  • Categories

    • Education
    • Funny
    • General
    • Interactivity
    • Out-and-About
    • Thoughts
    • Uncategorized
    • Web Development
  • My Youtube Favorites

  • Tags

    online degrees online learning
30 Sep 2009

S2U Cubed

I’ve just had a go at creating my second WordPress theme. It’s not quite as customisable as Marchie Candy (my first theme), but was an interesting exercise in CSS.

Web Development
No Comments »
14 Aug 2008

Technical Prowess & the Inability to Say Sorry

This is a rant. Just so you know.

At work it’s been a bad week for our hosting partner. We found out on Monday that they had been serving Webalizer on our server without telling us for a whole year. So that’s one year of confidential marketing reports freely available to anyone who stumbles on the URL (which was not hard to guess). After ignoring my first request (marked urgent) they replied with a snotty email telling me it stats are installed by default, but these days they don’t do that. Of course, I was overjoyed to hear that their new customers don’t suffer this embarrassing lapse in security.

No apology.

On Tuesday I chased a new account request with them that wasn’t done from the previous day. An equally unapologetic response.

On Wednesday we realised that after repeated requests to have somebody who has moved to another team in my company to be removed as a contact, it still wasn’t done. They told us to go through every individual domain registered with them and to change the contact name listed. We responded with a firm ‘hell no,’ as we’re the paying customer and will not spend hours going through our domains because of their inability to create an efficient management tool. They responded back with what was effectively flipping us the bird, saying they’re not willing to make the changes.

Today they told me that the Senior Developer at Host wasn’t an authorised contact onour account. I sent them email proof that I requested Werner has the same authorisation as I do back in January. Their response was to tell me that we’ve got two accounts, and Werner’s only authorised on one. No apology.

I understand how it can be hard to say sorry. When something goes wrong, putting a ’sorry’ in an email takes guts. Although when you don’t do it, it makes you look cowardly and a little pathetic. We don’t doubt they’re good at what they do, and an apology wouldn’t change that view but actually help us in that we’d know they understood something went wrong and will make sure it doesn’t happen again.

‘Sorry’ for the rant. See?

Thoughts, Web Development
No Comments »
27 Jan 2008

HTML 5. New Elements, Attributes, Problems

I’ve been reviewing the document at the w3c about the new elements in HTML 5. I won’t repeat what the document covers, so read it for yourself at http://www.w3.org/TR/html5-diff/. This article is aimed at discussing the new elements and attributes used in the new version. Looking at the additions from the perspective of a marketer rather than an academic I can see several issues I would have.

Just as a side note, I am aware that browsers released in the future will continue to support HTML 4 and other previous versions, so I’m not trying to encourage any kind of panic. I’m simply imagining using HTML 5 (based on the linked article, above) for the things my team and I do every day.

Tracking
There’s a new attribute for the a and area elements called ‘ping’. This is used for tracking, so when a link is clicked the URI is pinged at the same time. This is designed as a simpler alternative than the current method that involves sending the user to a page that tracks the click and redirects to the content page. This also gives the user the ability to switch tracking off. I know that absolutely none of my clients would appreciate this as a feature (why would they opt for profiling a fraction of their audience opposed to all of it?). Another aspect of this would mean that users would be made more aware of website user tracking. This is not necessarily a bad thing, but I could imagine plenty of confusion for a lot of users in determining the difference between regular audience trackers and snooping on an individual. How would you explain tracking to your aunt without her feeling as if her privacy was being invaded?

Forms
HTML forms are getting some fresh air. New input types support inserting time-related data, URLs and email addresses. Added to that is the attribute ‘required’ that’s been thrown into the mix. This is a step in the right direction given the number of bad JavaScript form validators in circulation, but the helpfulness of such an addition is limited to how browsers implement the changes.

If I were to create a simple form asking a user for a name, email and serial number I may run into some problems. For the ‘name’ field I would just add the required attribute on a normal text field as a name is going to be text: there’s nothing else to validate. The email field would use the new input type of ‘email’, and also the required attribute to ensure the data was indeed an email address. But what of the ’serialNumber’ field? There is no input type for my serial number, so in order to properly validate the data as being a valid serial number I’d have to use a regular expression within a JavaScript function to check that the field value follows the format I expect. I’d be mixing native browser data validation with supporting JavaScript functionality, which I think is potentially very messy!

I think the addition of the time and date input types are really useful. It means users can select dates from a familiar interface. I think the email and URL field types are an attempt to bring data validation to the browser, and given the complexity and the range of data that often goes into forms I think that this could prove difficult.

The good bits
There are some really nice additions to this version of HTML. Making the embed tag a w3c recommendation will mean easier Flash implementation in the future.

Header and footer as elements will possibly confuse new web developers with both ‘head’ and ‘header’ being used in the same document but for different uses. They will probably be more useful for SEO reasons, as I don’t see why developers would stop using div tags with a ‘header’ or ‘footer’ id attribute.

The nav tag will be great for improving a web page’s accessibility offering, since it enables the developer to indicate where the site navigation sits.

I’m interested in the canvas element, and what that will mean. It is meant to provide a space for rendering media on the fly and spawning on-page games and graphs.

There aren’t many new features that I saw that are geared-up towards AJAX fans, however the ‘event-source’ and ‘output’ elements might prove to be useful.

Back with forms, there is now a ‘form’ attribute to be used within fields that means a single form field can belong to more than one form.

No more frames!
Framesets and frame elements have been shown the door in this version of HTML. The Iframe element still exists, but the w3c found that the standard frame elements were decremental to accessibility so therefore scrapped them. I haven’t seen frames used in quite a while, but I do remember them being an important part of my first few websites in the 90s. I’ve also seen framesets used by SEO companies (the SEO content would go within the ‘noframes’ tag). I think scrapping frames is a good move, but it could really help accessibility.

Problems with HTML emails and CMS content
One thing my agency do quite a lot is build HTML emails for subscribers to our clients’ brands. With the end of the width and height, background, and most importantly the style attributes it’s going to be hard to build HTML emails for applications that have poor HTML parsers. This includes Hotmail, Gmail and Yahoo! online email readers that all parse HTML email content on the server before it’s displayed in the browser to prevent the content impacting the application interface. I agree that in principle, all style information should be kept out of the HTML template – this is the job of CSS. Although building emails is a big part of my team’s responsibilities and the abandonment of the inline style information is going to either force the email applications to be more compliant or is going to make life a living hell for the guy in my office who builds these emails!

Also I’m writing this in Wordpress: one of many CMS’s available for free or commercial license and one of millions when counting the bespoke CMS solutions created all the time. To allow authors using these CMS’s to control how their information is displayed (such as alignment, colour etc.) the style attribute would have to be used. I cannot see how a CMS could be efficient in managing style information as a separate entity to the content being written given that the style attribute is to be pulled as an HTML standard.

My thoughts
I think the w3c have been careful in analysing popular use of HTML and how they can improve it. Although I think the developments of HTML in this version may be trying to become too involved directly with the user that might create a lot of poorly implemented web pages. I also think that dynamic content created with CMS applications and such have not been considered properly.

I definitely agree with attempts to improve accessibility, and the inclusion of better data descriptors will no doubt help that effort. However, I doubt that the ping attribute will prove popular with developers unless users come to expect to be able to choose whether they’re tracked or not; I question the need for browser-based form data validation; I’m also unsure about the decision to rely more heavily on CSS over inline style information.

Web Development
No Comments »
12 Oct 2007

Web Developing for Creative Agencies: a Different Animal?

The other week I met up with my old Technical Director whilst I was in London and spent a short while reflecting on how hard it seems to be to find developers, and then further to that how hard it is to find developers suited to agency work.

Now I’m in an agency where I’m the only Web Developer, I’m on the interview panel when it comes to finding other developers. This process has meant I’ve realised how hard it is to find people suitable for the job. There seems to be a mix of designers wanting to try their hand at developing and semi-skilled developers trying to go for a senior position before their time. The creative industry doesn’t seem to attract the talented developers it requires.

I’ve met a few other developers who are skilled but wouldn’t like working in a creative agency. They’re application developers, not web developers. When I asked, they said they actually make an effort to stay clear of jobs like mine. I was not going to be able to convince them to send me their CV. Finding Web Developers for our agency isn’t going to be so easy.

There are characteristics I think developers in creative agencies need to be born with or quickly acquire in order to survive:

  1. Social skills. Geeks notoriously don’t have the best people skills, and when it comes to working in a creative agency where sitting in the corner keeping to yourself isn’t going to work, you’re going to have to face up to the fact there’s no getting out of going to lunch with the chatty project manager who thinks as a web developer you should be able to fix his X-Box. I’ve also had to feign an interest in sports a number of times, just to keep up.
  2. Ability to work with computer illiterates. Being able to resist self-harm when I’m politely asked to download files and burn them onto a DVD as that is, apparently, what I do for a living. Oh, and I can also offer lots of advice about PowerPoint transitions.
  3. Put a project down, picking it up again; repeat. This is more about developing in a way that allows the project to be continued after being put on hold for x amount of time. For example, I’d stop working on Project A because a more urgent Project B needs kicking off, then a number of weeks later I’d be asked to carry on with Project A from where I left off for a couple of days until Project C gets signed off. And no, I can’t get more time for Project A as it’s already over-budget and we don’t want the client back in for another meeting about timings as he eats all the best cookies and hits on the receptionist.
  4. Explain yourself in small short words. Bearing in mind that some people in the office still think that a hyperlink is a new type of Japanese train, they’re not going to understand DNS propegation is the reason we can’t launch the website right now, after lunch on a Friday afternoon. Explaining technical concepts to non-technical people take a long patience and short words.
  5. Fight for testing. Or test post-launch. Testing is something expected by everyone to be in the project plan, it even makes it into the Gantt charts the producer writes up, but it will be the first thing to go if the deadline looms a little too close for comfort. Or there may be a testing phase, but this is soon followed by changes to the creative that nullifies all testing done so far. Or there will be a testing phase, but only after the site has launched. I can’t point the finger of blame at anyone in particular, as it’s the way things work when you’ve got a small project with a tough deadline. The client asks for changes but the deadline won’t move. Proper testing seems to be a luxury reserved for those clients lacking extensive change requests and a clear understanding of what ’signing off’ really means.
  6. See the design as the designer sees it. I’m anal about my work, so quite rightfully the designer will be anal about hers. A bad designer will never say when I’ve messed up a design because she’s scared of me, a good designer will tell me about a mistake I made, a great designer will tell me that I messed up and then tell me why it needs to be fixed. If I can understand the thinking behind the design, I can build it better.

I don’t think that working for a creative agency makes me a better developer, or a worse one. I do think it means I have to approach projects differently. I think working for an agency means you So there are quite specific skills that I think are needed to work in a creative agency as a developer. A lot of these skills are a little different from the stereotypical developer skillset. However, a lot of very talented developers do prefer the creative environment (I just need to find them). I like the small and exciting projects I do in a creative agency. I don’t have the attention span to stay put on one application for months on end. I’d rather download files and burn them obediently to a DVD for the TV producer who doesn’t know what a codec is, whilst performing self-harm here at my desk with a soggy cocktail stick.

Thoughts, Web Development
No Comments »
10 Sep 2007

How Not To Hire A Web Developer

I recently interviewed a contract developer for a project we’re short of people on. I was going to be on vacation during the project, so the developer needed to be self-sufficient and able to fully understand the task at hand so I could brief him before I left. I hired a freelancer I thought was best for the job. He wasn’t.

Things I’ll now see as hints I shouldn’t hire a developer:

1. Boasting that he can touch-type as one of the leading items in his skillset
2. Claiming his previous employer ‘didn’t understand him’ and spends 10 minutes ranting about them during the interview
3. He has a law degree and claims that he’ll rip any contract apart
4. He can’t talk plain English to plain English speaking people. Types on an imaginary keyboard as he speaks.
5. He’s 42 and lives in the mountains with his mother. Probably
6. Says something ridiculous and possibly inappropriate in a meeting, then claims it was a ‘brain fart’.
7. Tells my junior behind my back that he’ll learn nothing from me. Tells him that indenting code is a waste of time.
8. Keeps saying ‘crunch crunch crunch’ really loudly when explaining how his code parses data
9. Seems to think a brief is below him, but doesn’t seem to have fully understood it 4 days later
10. Won’t give a time estimate after reading the brief; technical spec; and after several meetings. Has to wait until he’s spent several days working on a script for which you have no use, and then finally saying that he’ll need 8 weeks for a 3 week project without offering any formal breakdown of timings.

This is someone who claims to have 10 years of experience, which is twice what I have. Of course, I’m taking responsibility for hiring the muppet and I thought that with 10 years under his rather long belt he’d find this project easy. Lesson learnt. Next time I’m definitely checking references, asking for sample code and disregarding the claims of grandiose experience and perfect development skills.

If anybody knows of a good PHP developer in Sydney with agency experience please get in touch.

Web Development
2 Comments »
22 Aug 2007

Social Network Aggregators: Automatically Measuring The Importance Of Events

Here’s an idea I’ve had and will never do anything about so I thought I’d put it out there and see what people think.

My problem is that on my Facebook (this idea could apply to other sites but in this post I’m just going to use Facebook) I have lots of people listed as friends. I have a few close friends, then I have friends who I know but who aren’t close – workmates, friends of friends and so on. Then the bulk is made up of the people who I haven’t seen in years, but for some reason are still my friend. The result is too much information for me to manage that isn’t effectively organised. Sure, Facebook lets me define who I want to hear more about and who I want to hear less about, but this is a manual control and I think it should be able to work this out by itself.

How can a system like Facebook work out which is more important to me: wedding photos from someone I went to school with; knowing that my flatmate ‘is bored at work’; or photos of my workmate’s new dog?
Read the rest of this entry »

Interactivity, Thoughts, Web Development
No Comments »
26 Jun 2007

Image Color Analysis (PHP)

I’m working on a project at the moment where part of the brief is to allow categories of images to be analysed for the main colours they use so we’ll end up with a colour chart for the category.

I tried to find some code I could adapt for this function, but came up short. So I wrote my own. I’m putting it here in the hope that someone else might find it useful. Sorry it’s not so elegant, but I hope the method is easy enough to follow:

Read the rest of this entry »

Web Development
No Comments »
20 Jun 2007

Some Ideas for Securing Your Users’ Passwords in a Database

I’m not an web-application developer and I certainly don’t have any experience at creating websites where security is mission critical. I work as a web developer in an advertising agency and every now and again need to create websites that have above-normal security for some of our clients. This article describes a method and I welcome any ideas to improve this method.

Overview
What if someone wanted to log into your website using someone else’s account? What if they managed to get a copy of your database?

Read the rest of this entry »

Web Development
1 Comment »
19 Jun 2007

All Those ‘Do This And Don’t Do That’ and Every ‘Top 5 Tips for Web Development’ Ever

Recently I joined the StumbleUpon community and I think it’s great. At lunch when I’m at my desk or when my brain feels fried I’ll press the little green and blue button and find a page I’m going to like because of the profile I set up when I registered.

Because I’m a web developer, a lot of the time I get to these pages which offer tips about what to do and what not to do when it comes to web development and design.

It’s annoying, because a lot of the time the tips are written by an arrogant upstart with a couple of year’s experience under his/her belt. They’re written with such authority the tips are given more gravitas than they deserve.

Read the rest of this entry »

Web Development
3 Comments »
08 Jun 2007

Email is Dead. Long Live RSS. Skim the Internet.

Yesterday, Ben Cooper, one of the other guys on the digital team here at Host gave a presentation about RSS to the company. My company is in advertising, and despite the people I work with all being very bright it doesn’t mean they’re familiar with any Internet technologies other than email, HTML and Flash.

To be honest I don’t have much user experience with RSS. I’ve created RSS XML pages that are dynamically created through a CMS and I’ve got the Happiness and Cyanide comic feeding through to my iGoogle page. So it was also an education for me too. I don’t know much about FeedBurner or Aggregators. I admit, I’m a bit behind.

Ben explained everything very well, and actually got me on-side: I went into the talk with the idea that email is the standard way a website reaches out to its audience, and will continue to be the standard for a long time. Back in the UK I received my Amazon newsletter that was completely customised to the things Amazon told me I needed to buy because I’d like them. In a nutshell, I felt that you can customise an email right down to the individual preferences of the recipient, and then push it out to your users. What I found out is that as a user, once you’re familiar with RSS you educate yourself to control the information you read.

Read the rest of this entry »

Web Development
No Comments »
All content © Brandnoo
MarchieCubed theme © Dublin Web Design