Skip to content

Commit b2a00a9

Browse files
committed
March 23
1 parent b3cfe44 commit b2a00a9

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

‎_posts/2018-03-23-mar-23.md‎

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "This Week In Erlang -- March 23"
4+
description: ""
5+
date: 2018-03-23
6+
tags: [erlang, news]
7+
comments: false
8+
share: true
9+
---
10+
11+
Welcome to another long over-due “This week in Erlang” newsletter.
12+
We will keep it short this week and slowly build on the momentom :D I had the pleasure of attending CodeBEAM SF and meeting everyone. If you couldn't attend, CodeSync is planning many more gatherings so be sure to check out their website.
13+
14+
### Announcements
15+
16+
- *Code BEAM* ([@CodeBEAMio](https://twitter/CodeBEAMio)): CodeBEAM has uploaded all talk videos from CodeBEAMSF 2018 on youtube! - <https://www.youtube.com/channel/UC47eUBNO8KBH_V8AfowOWOw/videos>
17+
18+
### Articles and Blog posts
19+
- *Mariano Guerra* ([@warianoguerra](https://twitter/warianoguerra)): A little article/tutorial showing how to work with leveled (a LevelDB library). - <http://marianoguerra.org/posts/how-to-use-leveled-a-pure-erlang-leveldb-implementation/>
20+
21+
- *Krishna Kumar Thokala* ([@krishnakumart36](https://twitter/krishnakumart36)): An article comparing Erlang and Rust. The article goes in depth comparing many aspects of both languages. - <https://www.infoq.com/articles/rust-erlang-comparison>
22+
23+
- *A. Jesse Jiryu Davis* ([@jessejiryudavis](https://twitter/jessejiryudavis)): A really good article about how more experienced developers sometimes (unwittingly) shutdown and turn away less experienced developers was published last week at [opensource.com](opensource.com). It's worth a read; food for thought. - <https://opensource.com/article/18/3/avoid-humiliating-newcomers>
24+
25+
### Announcements
26+
- There is an Atom feed of this newsletter here:
27+
<https://gootik.github.io/this-week-in-erlang/feed.xml>
28+
29+
- You can also signup for the mailing list here: <http://eepurl.com/c2xmWr>

‎bin/formatter.py‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ def get_value_from_issue_list(l, section):
8383

8484

8585
def create_post(date, items):
86-
file = open('../_posts/' + date.replace('/', '-') + '.md', 'w+')
86+
dashed_date = date.replace('/', '-')
87+
file = open('../_posts/' + dashed_date + '.md', 'w+')
8788

88-
file.write(POST_HEADER_TEMPLATE.format(date, date))
89+
file.write(POST_HEADER_TEMPLATE.format(date, dashed_date))
8990
file.write(POST_INTRO_TEMPLATE)
9091

9192
item_by_cat = {

0 commit comments

Comments
 (0)