I chalk this down as the most inspiring speeches I’ve ever watched/listened too.
Twitter Updates
-
2010-01-26
-
2010-01-25
-
→
Secure Google Apps Email Using SPF
Almost every domain I get my hands on I end up adding Google Apps as the email server/software. The other day I was setting up yet another installation when I stumbled across this helpful slicehost article about preventing email from your domain being forged and being treated as spam by other clients.
Googles own support page outlines that all you have to do is:
- Add a new TXT record in your DNS settings
- Set the value of the record to: v=spf1 include:aspmx.googlemail.com ~all

Screenshot of an example Slicehost record. -
2010-01-23
As we are currently going through testing our latest web app at work, I was comforted to see that somethings slip through even the biggest players in the industry.
-
2010-01-22
jQuery Cookie Plugin
Very easy implementation for interacting with browser cookies using jquery
$.cookie('the_cookie'); // get cookie $.cookie('the_cookie', 'the_value'); // set cookie $.cookie('the_cookie', 'the_value', { expires: 7 }); // set cookie with an expiration date seven days in the future $.cookie('the_cookie', null); // delete cookie- Download
- Demo (view the source to see example js code)
- Associated blog post
-
→
Nginx Access Restriction
A detailed article about how to add basic access restriction on a website using an nginx web server. Use either the perl or ruby script mentioned here to generate an encrypted password.
-
→
CakePHP Flash Messages
A method you can use to check whether there are flash messages to show:
$session->check('Message.flash')An example of how you can use it to add custom DOM elements and JavaScript animation:
<?php if($session->check('Message.flash')) { ?> <div id="flash-messages"> <?php $session->flash(); ?> </div> <script type="text/javascript" charset="utf-8"> setTimeout(function () { $('#flash-messages').fadeOut('slow'); }, 4000); </script> <?php } ?>Source: Iamkoa Labs
