Skip to content

Instantly share code, notes, and snippets.

-module(scroogle_scrapper).
-compile(export_all).
-define(SCROOGLE_URL, "https://ssl.scroogle.org/cgi-bin/nbbw.cgi").
-define(SCROOGLE_PEM, "[PATH_TO_SSL_SCROOGLE_ORG_PEM_CERTIFICATE]").
start() ->
inets:start(),
ssl:start().
%% @author Daniel Kwiecinski <daniel@lambder.com>
%% @copyright Daniel Kwiecinski author.
%% @doc Example of redirect webmachine_resource.
-module(redirect_resource).
-export([init/1, resource_exists/2, moved_temporarily/2, previously_existed/2]).
-include_lib("webmachine/include/webmachine.hrl").
init([]) -> {ok, undefined}.
-module(strre).
-author("Daniel Kwiecinski: lambder.com").
-purpose("string replace functionality").
-export([sub/3,gsub/3,test/0]).
sub(Str,Old,New) ->
RegExp = "\\Q"++Old++"\\E",
re:replace(Str,RegExp,New,[multiline, {return, list}]).
gsub(Str,Old,New) ->
On Safari Online there is book available from Erlang O'Reilly Media, which will be released just tomorrow - June 26, 2009
Content of the book has a little bit of everything. Starting from the language basics and the introduction to its different applications, e.g. GUI programming, integration with Java, OTP and Mnesia.
I have read the whole book with a real pleasure.
So now we have two books, the first one was, published in 2007, Pragmatic Programming Erlang.