Wondering about something related to Ember, Ember Data, Glimmer, or addons in the Ember ecosystem, but don't know where to ask? Readersβ Questions are just for you!
+
+
Submit your own short and sweet question under bit.ly/ask-ember-core. And donβt worry, there are no silly questions, we appreciate them all - promise! π€
+
+
+
+---
+
+Want to write for the Ember Times? Have a suggestion for next week's issue? Join us at #support-ember-times on the [Ember Community Discord](https://discordapp.com/invite/zT3asNS) or ping us [@embertimes](https://twitter.com/embertimes) on Twitter.
+
+---
+
+
+That's another wrap! β¨
+
+Be kind,
+
+the crowd and the Learning Team
From ce74e9ecbe72a072e53482ed5b39a4512c796913 Mon Sep 17 00:00:00 2001
From: Jessica Jordan
Date: Thu, 13 Sep 2018 18:09:24 +0200
Subject: [PATCH 02/11] For Ember Times No. 64: Ember Data RFC, Discord,
Contributors' Corner (#3559)
## What it does
## Related Issue(s)
## Sources
---
.../2018-09-14-the-ember-times-issue-64.md | 20 ++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 66b82f47b6..d5530b23fb 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -1,8 +1,8 @@
---
-title: The Ember Times - Issue No. XX
+title: The Ember Times - Issue No. 64
author: the crowd
tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018
-alias : "blog/xxxx/xx/xx-the-ember-times-issue-XX.html"
+alias : "blog/2018/09/14-the-ember-times-issue-64.html"
responsive: true
---
@@ -12,13 +12,22 @@ responsive: true
---
-## [SECTION TITLE](#section-url)
+## [Everyone's Moved! π¦ Meet Your Ember πΉ Friends On Discord π£](https://discord.gg/zT3asNS)
+
+It's done! π The **community chat has** finally **moved** over to [Discord](https://discordapp.com/)!
+Even more **modern** than _IRC_ and _ICQ_ combined, you can now chat with other Emberistas from all around the globe in many different topic channels with **unlimited message history** πβ¨.
+[Join today](https://discord.gg/zT3asNS)) and be sure to get setup as described in the `#setup-profile` channel. To start chatting, request the _community-member_ role in `#discord-server-admin`, so the undaunted org admins can make sure THAT YOU ARE NOT A BOT BUT A REAL HUMAN JUST LIKE US HA-HA π€.
---
-## [SECTION TITLE](#section-url)
+## [A Public Factory π For Your Models ](https://github.com/emberjs/rfcs/pull/372)
+
+A brand-new π₯ **Request For Comments (RFC)** makes addon authors' and Ember power users' πͺ hearts β‘ leap for joy:
+The previously [deprecated Ember Data `store` method `modelFactoryFor`](https://github.com/emberjs/data/blob/v3.3.1/addon/-private/system/store.js#L2083) is making its comeback as an official, **public API**.
+This new public method will allow users to provide any kind of `ModelClass` (and not only the default `DS.Model` provided by Ember Data) to applications if needed.
+Curious? [**Read the full proposal**](https://github.com/emberjs/rfcs/pull/372) and leave your questions and suggestions in the comments below!
---
@@ -60,7 +69,8 @@ responsive: true
## [Contributors' Corner](https://guides.emberjs.com/release/contributing/repositories/)
-
This week we'd like to thank our siblings for their contributions to Ember and related repositories π!
---
From d5f7327dcd0c35a4136ca8a08840086db2b8ea1b Mon Sep 17 00:00:00 2001
From: Chris Ng
Date: Thu, 13 Sep 2018 16:57:49 -0400
Subject: [PATCH 03/11] blog(embertimes64): Element Modifier RFCs (#3560)
* blog(embertimes64): Element Modifier
* blog(embertimes64): update title to RFCs
* blog(embertimes64): Modifier not modifiers
* blog(embertimes64): Update Chad's feedback
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index d5530b23fb..8c2600743e 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -36,8 +36,20 @@ Curious? [**Read the full proposal**](https://github.com/emberjs/rfcs/pull/372)
---
-## [SECTION TITLE](#section-url)
+## [Element Modifier RFCs βοΈ](https://github.com/emberjs/rfcs/pull/373)
+
+Ember Core Team member [@chadhietala](https://github.com/chadhietala) proposed 2 RFCs around Element Modifiers β one for the [Modifier Manager](https://github.com/emberjs/rfcs/pull/373) and the other for the [Element Modifier](https://github.com/emberjs/rfcs/pull/353) itself.
+
+Element Modifiers provide stable access of the DOM node they are installed on. Unlike a component, there is no template/layout for an element modifier. Unlike a helper, an element modifier does not return a value. An element modifier is invoked in "element space". This is the space between `<` and `>` opening an HTML tag.
+
+Here is an example of the element modifier syntax in action:
+```
+
+```
+
+The [Modifier Manager RFC](https://github.com/emberjs/rfcs/pull/373) proposes to add a low level primitive for defining an element modifier which is responsible for coordinating the lifecycle events that occurs when invoking, installing and updating an element modifier. Most app developers would not need interact with the manager but it would allow the community to experiment with and iterate on this API outside of the core framework.
+See more in the respective RFCs for [Element Modifier](https://github.com/emberjs/rfcs/pull/353) and [Modifier Manager](https://github.com/emberjs/rfcs/pull/373).
---
From f8b3b1951b278d616df88bde07d9df9aec1609d9 Mon Sep 17 00:00:00 2001
From: Alon Bukai
Date: Fri, 14 Sep 2018 08:17:12 +0300
Subject: [PATCH 04/11] Add section on State of JavaScript Survey 2018
Also fixed a runaway `)` in Discord section :)
---
.../blog/2018-09-14-the-ember-times-issue-64.md | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 8c2600743e..a69384a5b1 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -17,7 +17,7 @@ responsive: true
It's done! π The **community chat has** finally **moved** over to [Discord](https://discordapp.com/)!
Even more **modern** than _IRC_ and _ICQ_ combined, you can now chat with other Emberistas from all around the globe in many different topic channels with **unlimited message history** πβ¨.
-[Join today](https://discord.gg/zT3asNS)) and be sure to get setup as described in the `#setup-profile` channel. To start chatting, request the _community-member_ role in `#discord-server-admin`, so the undaunted org admins can make sure THAT YOU ARE NOT A BOT BUT A REAL HUMAN JUST LIKE US HA-HA π€.
+[Join today](https://discord.gg/zT3asNS) and be sure to get setup as described in the `#setup-profile` channel. To start chatting, request the _community-member_ role in `#discord-server-admin`, so the undaunted org admins can make sure THAT YOU ARE NOT A BOT BUT A REAL HUMAN JUST LIKE US HA-HA π€.
---
@@ -31,8 +31,19 @@ Curious? [**Read the full proposal**](https://github.com/emberjs/rfcs/pull/372)
---
-## [SECTION TITLE](#section-url)
+## [State of JavaScript 2018 Survey Is Here Again π³οΈ](https://medium.freecodecamp.org/take-the-state-of-javascript-2018-survey-c43be2fcaa9)
+
+"Just like Christmas or the flu, the **State of JavaScript** survey comes back around every year. But unlike these, itβs something to actually look forward to!" - [Sacha Greif](https://twitter.com/SachaGreif/status/1037603748917403648)
+
+[State of JavaScript](https://stateofjs.com/) is **the** yearly JavaScript survey that aims to gauge the whole JavaScript community across all frameworks, libraries, regional location and more. It tries to find out with which technologies developers are **most happy** with as well as which technologies are coming up and becoming popular in JavaScript.
+
+Last year there were over **20,000 entries** and while Ember was known by most, many either didn't want to learn it or had used it in the past and didn't want to again. With all of the **improvements to Ember** these past few years, **we can do better**!
+
+So go and [fill out the survey](https://stateofjs.com/) and **show your support for Ember** in 2018! Make your **voice heard**! π£
+
+Check out the [Twitter](https://twitter.com/SachaGreif/status/1037603748917403648) or [Medium](https://medium.freecodecamp.org/take-the-state-of-javascript-2018-survey-c43be2fcaa9) post to learn more.
+π [Take the survey!](https://stateofjs.com/) π
---
From 3b193616ad2d3a74462abaf1697831704f82d67d Mon Sep 17 00:00:00 2001
From: Amy Lam
Date: Thu, 13 Sep 2018 22:15:59 -0700
Subject: [PATCH 05/11] copy edits
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 8c2600743e..48f1fd2db6 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -12,16 +12,16 @@ responsive: true
---
-## [Everyone's Moved! π¦ Meet Your Ember πΉ Friends On Discord π£](https://discord.gg/zT3asNS)
+## [Everyone's Moved! π¦ Meet Your Ember πΉ Friends on Discord π£](https://discord.gg/zT3asNS)
It's done! π The **community chat has** finally **moved** over to [Discord](https://discordapp.com/)!
Even more **modern** than _IRC_ and _ICQ_ combined, you can now chat with other Emberistas from all around the globe in many different topic channels with **unlimited message history** πβ¨.
-[Join today](https://discord.gg/zT3asNS)) and be sure to get setup as described in the `#setup-profile` channel. To start chatting, request the _community-member_ role in `#discord-server-admin`, so the undaunted org admins can make sure THAT YOU ARE NOT A BOT BUT A REAL HUMAN JUST LIKE US HA-HA π€.
+[Join today](https://discord.gg/zT3asNS) and be sure to get setup as described in the `#setup-profile` channel. To start chatting, request the _community-member_ role in `#discord-server-admin`, so the undaunted org admins can make sure THAT YOU ARE NOT A BOT BUT A REAL HUMAN JUST LIKE US HA-HA π€.
---
-## [A Public Factory π For Your Models ](https://github.com/emberjs/rfcs/pull/372)
+## [A Public Factory π for Your Models ](https://github.com/emberjs/rfcs/pull/372)
A brand-new π₯ **Request For Comments (RFC)** makes addon authors' and Ember power users' πͺ hearts β‘ leap for joy:
The previously [deprecated Ember Data `store` method `modelFactoryFor`](https://github.com/emberjs/data/blob/v3.3.1/addon/-private/system/store.js#L2083) is making its comeback as an official, **public API**.
@@ -29,11 +29,6 @@ This new public method will allow users to provide any kind of `ModelClass` (and
Curious? [**Read the full proposal**](https://github.com/emberjs/rfcs/pull/372) and leave your questions and suggestions in the comments below!
----
-
-## [SECTION TITLE](#section-url)
-
-
---
## [Element Modifier RFCs βοΈ](https://github.com/emberjs/rfcs/pull/373)
@@ -86,7 +81,7 @@ for their contributions to Ember and related repositories π!
---
-## [Got a question? Ask Readers' Questions! π€](https://docs.google.com/forms/d/e/1FAIpQLScqu7Lw_9cIkRtAiXKitgkAo4xX_pV1pdCfMJgIr6Py1V-9Og/viewform)
+## [Got a Question? Ask Readers' Questions! π€](https://docs.google.com/forms/d/e/1FAIpQLScqu7Lw_9cIkRtAiXKitgkAo4xX_pV1pdCfMJgIr6Py1V-9Og/viewform)
From 59d64be04d157e7f84c73b9a4448ec47ed96411c Mon Sep 17 00:00:00 2001
From: Amy Lam
Date: Thu, 13 Sep 2018 22:41:31 -0700
Subject: [PATCH 06/11] Ember Data writeup
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 48f1fd2db6..5e78ddf3d5 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -48,8 +48,9 @@ See more in the respective RFCs for [Element Modifier](https://github.com/emberj
---
-## [SECTION TITLE](#section-url)
+## [Even More Help Wanted π§ on Ember Data](https://twitter.com/Runspired/status/1038659570401337345)
+We talked about contributing to Ember Data last week. This week there are even more ways to get involved! Help [@runspired](https://github.com/runspired) ship [ember-data/json-api-validator](https://github.com/ember-data/json-api-validator). He writes that this addon will enable you to write clearer normalization tests, catch those pesky and usually silent formatting issues, and leave you with actionable errors instead of head-scratching ones! Run the test suite or check out some of the repo issues [here](https://github.com/ember-data/json-api-validator/issues/).
---
From ca528f2a44b6a72b3c093aace01dbd8cbcc731a7 Mon Sep 17 00:00:00 2001
From: Amy Lam
Date: Thu, 13 Sep 2018 22:46:30 -0700
Subject: [PATCH 07/11] learning team adds
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 5e78ddf3d5..3b32e0fbfc 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -54,8 +54,9 @@ We talked about contributing to Ember Data last week. This week there are even m
---
-## [SECTION TITLE](#section-url)
+## [New Learning Team Members π](https://twitter.com/emberjs/status/1039542375234789377)
+The Ember Learning Core Team is pleased to announce two new members. [@mansona](https://github.com/mansona) and [@amyrlam](https://github.com/amyrlam) have both been working for over a year to make Ember more accessible to contributors. Canβt wait to see what they get up to next!
---
From 1985af971d4240b02337efcbf8d927edbe277f98 Mon Sep 17 00:00:00 2001
From: Alon Bukai
Date: Fri, 14 Sep 2018 17:15:31 +0300
Subject: [PATCH 08/11] Updated Christmas -> Holidays
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index a69384a5b1..9e1d5904a0 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -33,7 +33,7 @@ Curious? [**Read the full proposal**](https://github.com/emberjs/rfcs/pull/372)
## [State of JavaScript 2018 Survey Is Here Again π³οΈ](https://medium.freecodecamp.org/take-the-state-of-javascript-2018-survey-c43be2fcaa9)
-"Just like Christmas or the flu, the **State of JavaScript** survey comes back around every year. But unlike these, itβs something to actually look forward to!" - [Sacha Greif](https://twitter.com/SachaGreif/status/1037603748917403648)
+"Just like [the holidays] or the flu, the **State of JavaScript** survey comes back around every year. But unlike these, itβs something to actually look forward to!" - [Sacha Greif](https://twitter.com/SachaGreif/status/1037603748917403648)
[State of JavaScript](https://stateofjs.com/) is **the** yearly JavaScript survey that aims to gauge the whole JavaScript community across all frameworks, libraries, regional location and more. It tries to find out with which technologies developers are **most happy** with as well as which technologies are coming up and becoming popular in JavaScript.
From 1fc3d2ed38a06c76409ee6891530138ad25df7c8 Mon Sep 17 00:00:00 2001
From: Amy Lam
Date: Fri, 14 Sep 2018 11:16:30 -0700
Subject: [PATCH 09/11] update issue
---
.../2018-09-14-the-ember-times-issue-64.md | 19 ++-----------------
1 file changed, 2 insertions(+), 17 deletions(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 2a695e014d..c16b60fc8b 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -6,9 +6,9 @@ alias : "blog/2018/09/14-the-ember-times-issue-64.html"
responsive: true
---
- Emberistas! πΉ
+OlΓ‘ Emberistas! πΉ
-
+This week we're sharing news about the π Ember community Discord chat π¬, some fresh π₯ RFCs, the State of JavaScript 2018 Survey π, Ember Data Help Wanted π, and welcoming new Learning Team members π!
---
@@ -74,21 +74,6 @@ We talked about contributing to Ember Data last week. This week there are even m
The Ember Learning Core Team is pleased to announce two new members. [@mansona](https://github.com/mansona) and [@amyrlam](https://github.com/amyrlam) have both been working for over a year to make Ember more accessible to contributors. Canβt wait to see what they get up to next!
----
-
-## [SECTION TITLE](#section-url)
-
-
----
-
-## [SECTION TITLE](#section-url)
-
-
----
-
-## [SECTION TITLE](#section-url)
-
-
---
From aa800ca5fe866548da34186f517b8f65c277157a Mon Sep 17 00:00:00 2001
From: Jessica Jordan
Date: Fri, 14 Sep 2018 20:23:01 +0200
Subject: [PATCH 10/11] blog(embertimes#64): add editors
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index c16b60fc8b..0b01860564 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -1,6 +1,6 @@
---
title: The Ember Times - Issue No. 64
-author: the crowd
+author: Alon Bukai, Chris Ng, Amy Lam, Ryan Mark, Jessica Jordan
tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018
alias : "blog/2018/09/14-the-ember-times-issue-64.html"
responsive: true
@@ -106,4 +106,4 @@ That's another wrap! β¨
Be kind,
-the crowd and the Learning Team
+Alon Bukai, Chris Ng, Amy Lam, Ryan Mark, Jessica Jordan and the Learning Team
From fb16526bd28ba50f1ae6ada461196ff85d815dcf Mon Sep 17 00:00:00 2001
From: Jessica Jordan
Date: Fri, 14 Sep 2018 20:27:16 +0200
Subject: [PATCH 11/11] blog(embertimes#64): code example edits
---
source/blog/2018-09-14-the-ember-times-issue-64.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/source/blog/2018-09-14-the-ember-times-issue-64.md b/source/blog/2018-09-14-the-ember-times-issue-64.md
index 0b01860564..982aa945ed 100644
--- a/source/blog/2018-09-14-the-ember-times-issue-64.md
+++ b/source/blog/2018-09-14-the-ember-times-issue-64.md
@@ -54,7 +54,8 @@ Ember Core Team member [@chadhietala](https://github.com/chadhietala) proposed 2
Element Modifiers provide stable access of the DOM node they are installed on. Unlike a component, there is no template/layout for an element modifier. Unlike a helper, an element modifier does not return a value. An element modifier is invoked in "element space". This is the space between `<` and `>` opening an HTML tag.
Here is an example of the element modifier syntax in action:
-```
+
+```handlebars
```