Skip to content

Commit

Permalink
add jsonfeed agenda
Browse files Browse the repository at this point in the history
  • Loading branch information
geraldb committed May 31, 2017
1 parent 97aa8e0 commit cfcf049
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions jsonfeed.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@

title: Meet Jason Feed - The New Web Feed & Syndication Guy


# Agenda

- The Future of Online News - The Future of Facebook & Co
- Triva Quiz - What's RSS?
- Content Modeling is Easy
- Jason Fried? I know that guy.
- League Quick Starter Sample - Mauritius Premier League
- Content Modeling is Hard
- Meet Jason Feed - A New Feed Format in JSON - feed.json
- Rules for Standard Makers - Evolve or Die ;-) - Break Things - Many Worlds Possible
- Why (another) feed format? - JSON is the new XML ;-)
- Add JSON Feed to Your Site
- JSON Feed in Action
- JSON Feed Viewer
- RSS or Atom to JSON Feed
- Build Your Own News Web Component w/ React
- Bonus
- JSON Feed Podcast Example
- JSON Feed - Who's Who - Meet Brent Simmons n Manton Reece
- Let's "fix" JSON - What's wrong or missing in JSON 1.0?
- SON Feed? JSON5 Feed? HJSON Feed?


# The Future of Online News - The Future of Facebook & Co

- How do you read your news?
Expand All @@ -19,9 +41,11 @@ title: Meet Jason Feed - The New Web Feed & Syndication Guy

# Triva Quiz - What's RSS?

- [ A ] RDF Site Summary
- [ B ] Rich Site Summary
- [ C ] Really Simple Syndication
Q: What's RSS?

- (A) RDF Site Summary
- (B) Rich Site Summary
- (C) Really Simple Syndication

RDF = Resource Description Framework

Expand Down Expand Up @@ -354,7 +378,7 @@ render() {
return(
<div className="list">
{ feed.items.map( item => (
<div style={{
<div style={{{
padding: 10,
margin: 10,
background: 'white',
Expand All @@ -364,7 +388,7 @@ render() {
<h3>
<a href="{item._url}">{item.title}</a>
</h3>
<div dangerouslySetInnerHTML={{__html: item.content_html}} />
<div dangerouslySetInnerHTML={{{__html: item.content_html}} />
</div>
</div>
)) }
Expand Down

0 comments on commit cfcf049

Please sign in to comment.