Skip to content

Instantly share code, notes, and snippets.

View ncrause's full-sized avatar
💭
Website project #3 underway ...

Nathan Crause ncrause

💭
Website project #3 underway ...
View GitHub Profile
@tomysmile
tomysmile / mac-setup-redis.md
Last active July 16, 2024 04:45
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@tobia
tobia / TryCatchTagLib.groovy
Created July 2, 2015 12:56
Simple try & catch taglib for Grails GSP views.
// Simple try & catch for GSP views.
//
// Usage:
//
// <g:try>
// view snippet that needs to be checked
// </g:try>
// <g:catch>
// alternative view code in case of errors;
// the exception is available as ${exception}