A PHOTO

photoshopaphonethief:

Fonejacker Man

My input on trying to help a buddy find his mobile phone.

Reblogged from Photoshopaphonethief
A TEXT POST

Compiling a PHP Memcache extension with MAMP 2.0.3

After wasting quite a few hours today, finally stumbling across this post solved my annoying issue with getting the memcache PHP extension up and running on my MAMP PRO localhost. I had to share it!

Follow the Lullabot article and then finally replace the memcache.so PHP extension with the updated version from steindom.com.

http://www.lullabot.com/articles/setup-memcached-mamp-sandbox-environment

Also be warned the path for the php.ini in Mamp Pro is inside the Applications content wrapper. Very annoying!

/Applications/MAMP PRO 1.9.6.1/MAMP PRO.app/Contents/Resources

A VIDEO

My Bristol SkillSwap talk on HTML5 video. How we start using it, why we need to start using it and the future of video in our multi-platform landscape.

For a PDF version click me.

A QUOTE

Re: responsive design. You know we’ll end up developing on mobiles for big screens.

A TEXT POST

Frontend Development Bristol Skillswap

Bristol SkillSwap

Just looking through the attendance list for the Bristol SkillSwap - there’s some top bristol bods going!
Starting to panic about a) what to talk about and b) if it’s going to be any good ;)

We’ll be talking all about the HTMLs, Javascripts and CSSes. Progressive enhancement, performance, typography, responsive design and show-jumping unicorns.
A TEXT POST

Block websites from your google search results

If you have a Google account you can permanently filter w3schools out of your search results by visting http://www.google.com/reviews/t and blocking w3schools.com (leaving out “www” in order to cover all its subdomains). This can be undone at any time by revisiting the same page. Google reportedly analyses the blocking statstics from this extension and may act upon it if they see a pattern forming. (If you are using Google’s Chrome browser, you can achieve the same effect by installing the official Personal Blocklist extension).

Just stubbled on this very useful tip for ignoring certain sites from your search results.

Bye w3schools!

A TEXT POST

How to upgrade Apache ANT to 1.8.2 on OSX using homebrew

After rebuilding my mac and losing all those useful bits you install over the years, I was tasked with upgrading my version Apache Ant from 1.7.1 to 1.8.2. We now use the excellent HTML5 Boilerplate build script for all our production releases at Coull, so I could no longer ignore the problem. You’re going to have to crank open the Terminal window and get bashing. Don’t panic!

To see what version you currently have installed run this:

$ ant -version
Apache Ant version 1.7.1 compiled on February 11 2010
I was advised to use the simple OSX package installer homebrew. I’m not going to discuss how to install this, as they have a really simple guide. However, it’s not obvious how to install Apache Ant as it’s not one of the packages they list. So here is the brew to get started: Beware, you might need to install Apple’s XCode, which if you’re still running OS X 10.6 or lower (like me) you can’t install the latest version (4) via the wonderful (?) AppStore. Ha! fun and games! Luckily, I have an Apple Developer account which allows you to download archived releases of Apple’s software. I created this ages ago and assume they’re still free to do… Once installed it puts the package here:
/usr/local/Cellar/ant/1.8.2
I then scratched my head for a while as to how to get OSX to use the newly installed version. It seems the easiest option is to remove the symlink currently set for the system. Run this to see where this is:
$ whereis ant
/usr/bin/ant       //returned message
So we need to remove the symlink and set it to our new installed copy. I found this article which got me started. Useful, but not perfect for a homebrew package install. So here is the final commands to change the symlink to the homebrew version:
$ sudo rm /usr/share/ant
Password:
************
$ ln -s /usr/local/Cellar/ant/1.8.2 ant
You now need to close your current terminal session and open a new one. In theory you should be able to run ‘ant -version’ to get the latest version…
$ ant -version
Apache Ant(TM) version 1.8.2 compiled on December 20 2010
I’m not sure if it’s best way to do it. But it’s a simple technique which can easily be updated if needed. At least you haven’t removed the base Java install of Ant from your system!