Use Anchors in html

Posted by Mike Caisey on 25th November 2011
My personal gripe with some web sites is the lack of target anchors for hypertext links using the id or name attribute. They are very useful for providing a quick jump/scroll to relevant information, more so when you paste a link into an instant messenger for someone else.

Read more... [Post Comment]

Keeping Track

Posted by Nathan Wong on 18th November 2011

There are a lot of solutions available online to help with making notes and organising, and I've been trying out several over the last few months.

Catch

Allows multimedia notes to easily include pictures or audio, Catch also has a fully featured mobile and well designed tablet app which sync immediately with their website. Notes are can be put into separate "streams" which can be shared amongst other users or used to categorise your own notes.

Read more... [Post Comment]

Quick and easy comparison for apps or anything

Posted by Mike Caisey on 16th November 2011

If you need a quick comparison of almost anything you can just type the name of it into Google and it with "vs".

Blog vs google image

This will make google fill the rest of the sentence which will be full of alternatives for the thing you're searching for.

 

I use it with linux commands like sed and awk and another side effect is that it quickly defines the thing you're searching for.

Read more... [Post Comment]

Sugar Coated Cupcake Ipsum

Posted by Stuart Forster on 15th November 2011

Another Lorem ipsum, this time with extra flavour! Just came accross this: "Cupcake Ipsum".

Give your placeholder text some extra love!

http://cupcakeipsum.com

Read more... [Post Comment]

How to avoid EXC_BAD_ACCESS when using pass by reference NSError objects

Posted by Mike Caisey on 10th November 2011
Sometimes people set the error instance to nil initially. It's better to test what you expected to receive over the error object itself. For example if you call a method to load an object with data from disk you'd test the object being set not the error object. You'd check the error object after you asserted the file data load failed.

Read more... [Post Comment]

Tips for Android Tablet Development

Posted by Nathan Wong on 5th November 2011

Last month the British Android community gathered together (with a sizable international presence, including the Bangalore Android Group) for Droidcon UK, a huge conference in the Islington Design Centre to discuss all things Android.

Whilst a full breakdown of the two days of talks, barcamp and democamp is still forthcoming, I thought that one thread that ran through the whole conference, as well as the Labs hosted by Google the day before, was worth exploring separately.

Read more... [Post Comment]

Howto: Stop Postfix from HELOING as localhost.localdomain

Posted by Stuart Forster on 4th November 2011

Recently, one of our newly setup mail servers was being added to Spamhaus XBL blacklist because it was HELOING as localhost.localdomain. This would prevent emails from reaching alot of addresses if not fixed (We found this issue during site testing!)

The quickest way to address this (since our /etc/hosts file was correct) was to edit the main.cf postfix configuration file.

You can find the file at /etc/postfix/main.cf.

Open up this file, find the line that says myhostname and change to what you want it heloing as. Now all you need to do is request removal from the blacklist (should take no more than 15/20 minutes).

You're done!

Read more... [Post Comment]

Useful .gitignore file for xcode explained

Posted by Mike Caisey on 4th November 2011
This is a useful .gitignore file I've found from the web and use in my projects. It makes my projects more portable.

Read more... [Post Comment]