Skip to content

Instantly share code, notes, and snippets.

View etrepum's full-sized avatar
😎
Currently retired

Bob Ippolito etrepum

😎
Currently retired
View GitHub Profile
@etrepum
etrepum / README.md
Last active August 29, 2015 14:02 — forked from mbostock/.block
-module(gist).
-export([authenticate/3]).
authenticate(UserName, Pass, IPAddress) ->
Checks = [fun user_ok/1,
fun password_ok/1,
fun ipaddr_ok/1
],
{Result, _} = lists:foldl(
fun(_CheckFun, {{error, Reason}, _}) ->