diff options
Diffstat (limited to 'articles/index.html')
-rw-r--r-- | articles/index.html | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/articles/index.html b/articles/index.html index 527f36d9..a8427b2c 100644 --- a/articles/index.html +++ b/articles/index.html @@ -72,6 +72,24 @@ <article class="blog_item"> <header> + <h2><a href="https://ninenines.eu/articles/cowboy-2.0.0-rc.1/">Cowboy 2.0 release candidate 1</a></h2> + <p class="date"> + <span class="day">24</span> + <span class="month">Jul</span> + </p> + </header> + + <p>Cowboy 2.0.0-rc.1 has been released! +
This is the new recommended version of Cowboy.
Its API should not change before release. While
you probably should not use it in production yet,
many do successfully. Use at your own risk. +
The plan is to have a new RC version every couple
weeks until the summer ends or later if there are
still blocking issues open. Only issues that can’t
be fixed without making breaking changes to the
interface may block the release.</p> + + <p style="text-align:right"> + <a class="read_more" href="https://ninenines.eu/articles/cowboy-2.0.0-rc.1/">Read More</a> + </p> + </article> + + <article class="blog_item"> + <header> <h2><a href="https://ninenines.eu/articles/the-elephant-in-the-room/">The elephant in the room</a></h2> <p class="date"> <span class="day">26</span> @@ -409,26 +427,6 @@ </p> </article> - <article class="blog_item"> - <header> - <h2><a href="https://ninenines.eu/articles/xerl-0.2-two-modules/">Xerl: two modules</a></h2> - <p class="date"> - <span class="day">03</span> - <span class="month">Feb</span> - </p> - </header> - - <p>Everything is an expression. -
This sentence carries profound meaning. We will invoke it many
times over the course of these articles. -
If everything is an expression, then the language shouldn’t have
any problem with me defining two modules in the same source file. -
mod first_module
begin
end
mod second_module
begin
end
Likewise, it shouldn’t have any problem with me defining a
module inside another module. -
mod out_module
begin
mod in_module
begin
end
end
Of course, in the context of the Erlang VM, these two snippets
are equivalent; there is nothing preventing you from calling the
in_module module from any other module.</p> - - <p style="text-align:right"> - <a class="read_more" href="https://ninenines.eu/articles/xerl-0.2-two-modules/">Read More</a> - </p> - </article> - <nav class="pagination" role="pagination"> |