Grails

Mapping multiple Route53 record sets to a record set

Lets take an example where we need to point somedns.com, www.somedns.com to anotherdns.com using AWS' Route53. Creating a record set to point www.somedns.com to anotherdns.com is easy, where www.somedns.com would be a CNAME type record with value "anotherdns.com". But mapping somedns.com to anotherdns.com is not that trivial as R53 does...

by Hitesh Bhatia
Tag: alias
29-Jan-2014

Grails

Creating GIT Alias

Since Git is awesome. It also provides functionality of making aliases. Example [shell]git config --global alias.co checkout [/shell] Here we created co as an alias for checkout (All the aliases that are created goes into .gitconfig file under home folder). Now to checkout a branch named testBranch, We can also write [shell]git...

by Hitesh Bhatia
Tag: alias
30-Dec-2011