Fork me on GitHub
  1. Erlang Logging Libraries

    чт 07 мая 2020, tags: ErlangLoggingLibraries

    Re-posting from 2015-01-07

    Erlang has many logging libraries for any taste. We want to collect all of them to a single list and help you select the best one for your next or current project.

    error_logger

    error_logger is a built in Erlang/OTP event manager which is can be used …

    read more

    There are comments.

  2. N2O Logging

    вт 05 мая 2020, tags: ErlangN2OTutorialloggingerlang logging

    Re-posting from 2014-10-08

    Logging and Error tracking are very important things for every project. Let's learn how to write logs in N2O.

    Note: For this example, we will use the code we created in previous articles about templates.

    Implementation

    N2O provides a basic interface for writing logs:

    • wf:warning/1 …
    read more

    There are comments.

  3. N2O templates. Erlydtl

    пн 04 мая 2020, tags: ErlangN2OTutorial

    Re-posting from 2014-09-26

    If you do use Django, ROR or any other modern framework, you should be familiar with templates. In N2O you can use Erlydtl templates. In this part we will show how to create a view that will be rendering a simple Erlydtl template.

    For this step we …

    read more

    There are comments.

  4. N2O templates. Static HTML

    сб 02 мая 2020, tags: ErlangN2OTutorial

    Re-posting from 2014-09-24

    It's a time to learn more N2O. In this article we will show how to render templates using different techniques:

    • Static html template
    • N2O record-based templates
    • Erlydtl templates

    Environment

    For this example, we will use a project we have created in the previous tutorial. A directory structure …

    read more

    There are comments.

  5. Hello N2O!

    пт 01 мая 2020, tags: ErlangN2OTutorial

    Re-posting from 2014-09-16

    "N2O — The Most Powerful Erlang Web Framework"

    As a first step, we will show how to install N2O and create a simple application.

    Environment

    N2O is an Erlang framework so let's install Erlang first (if you haven't done it yet).

    In Linux, we will use Erlang Solutions …

    read more

    There are comments.

  6. crashkeeper

    пт 21 февраля 2014, tags: erlangprojectsdev

    CrashKeeper is a web service for collecting exceptions, logs and other things happened in your application.

    The main point of the CrashKeeper - deep understanding of your information, such like logs with custom user-based parsers for their logs, better understanding language dependents (WOW ERLANG, SUCH CLOJURE) exceptions and messages (hello Sentry …

    read more

    There are comments.

  7. 10 Erlang one liners to impress your friends

    пн 28 мая 2012, tags: erlang

    1. Multiple Each Item in a List by 2

    [X * 2 || X <- lists:seq(1, 11)].
    

    2. Sum a List of Numbers

    lists:sum(lists:seq(1, 1001)).
    

    3.Verify if Exists in a String

    Wordslist = ["scala", "akka", "play framework", "sbt", "typesafe"].
    Tweet = "This is an example tweet talking about …
    read more

    There are comments.

Page 1 / 1

social