Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Commit

Permalink
Some stuff I forgot to push
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Mar 25, 2016
1 parent e15a576 commit 5077919
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 80 deletions.
94 changes: 17 additions & 77 deletions episodes/2016-03-23/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,39 @@ export default {
name: 'James Talmage',
twitter: 'jamestalmage',
links: [
`[Sindre’s AMA on small module philosophy](https://github.com/sindresorhus/ama/issues/10#issuecomment-117766328)`,
],
tips: [
`Small modules: [generator-nm](https://github.com/sindresorhus/generator-nm) (a minimalist Yeoman generator)`,
],
picks: [
`Check out [XO](https://github.com/sindresorhus/xo) (zero config linter)`,
`[thetruesize.com](http://thetruesize.com/) - if you like maps.`,
`Bob Sutton - [Strong Opinions Weekly Held](http://bobsutton.typepad.com/my_weblog/2006/07/strong_opinions.html)`,
],
},
{
name: 'Mark Wubben',
twitter: 'novemberborn',
links: [
`http://node.green/`,
],
tips: [
`Publish smaller packages using the "files" option, test with "npm pack" and that tar command you always forget`,
],
picks: [
`Node v6 soon!`,
],
},
{
name: 'Vadim Demedes',
twitter: 'vdemedes',
links: [
],
tips: [
`Don’t over-complicate and always look for a simpler solution instead.`,
],
picks: [
`All [essays](http://rauchg.com/essays/) by Guillermo Rauch`,
`[Give it five minutes](https://signalvnoise.com/posts/3124-give-it-five-minutes) by Jason Fried`,
],
},
],
Expand All @@ -37,90 +46,21 @@ export default {
`,
hangoutId: 'cjeb8ka1hu66uapqkrk40j5bjk4',
youTubeId: 'YRvrPkXBwdo',
podbeanId: '',
podbeanId: 'hc342-5dcdf6',
shortUrl: 'http://jsair.io/ava',
host: {
links: [
`[Healthy Open Source](https://medium.com/the-javascript-collection/healthy-open-source-967fa8be7951)`,
`[How to Contribute to an Open Source Library on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)`,
],
tips: [
`Use [bundledDependencies](https://docs.npmjs.com/files/package.json#bundleddependencies) see [my screencast on it](https://youtu.be/qOGRUfdSiaM)`,
],
picks: [
`[ghooks](https://www.npmjs.com/package/ghooks) + [opt-cli](https://npmjs.com/package/opt-cli) = ♥️`,
`[Hubot](https://hubot.github.com/)`,
],
},
panelists: [
{
twitter: 'dan_abramov',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'drboolean',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'getify',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'kwuchu',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'linclark',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'mzabriskie',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'pamasaur',
links: [
],
tips: [
],
picks: [
],
},
{
twitter: 'tylermcginnis33',
links: [
],
tips: [
],
picks: [
],
},
],
}


4 changes: 2 additions & 2 deletions src/pages/episode/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default EpisodePage

function EpisodePage({episode, sponsors}) {
const past = episode.past || isPastAndNotToday(episode.date)
const {numberDisplay, title, description} = episode
const {numberDisplay, title, description, podbeanId} = episode
const descriptionHTMLString = marked(deindent(description))
return (
<Page
Expand All @@ -33,7 +33,7 @@ function EpisodePage({episode, sponsors}) {
episode={episode}
/>
{
past ?
(past || podbeanId) ?
<PastEpisodeStuff episodeData={episode} sponsors={sponsors} /> :
<FutureEpisodeStuff episodeData={episode} sponsors={sponsors} />
}
Expand Down
4 changes: 3 additions & 1 deletion src/pages/home/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ function LatestShow({show}) {
<div className="latest-show__container">

<h2 className="latest-show__heading">Latest Show:</h2>
<a className="latest-show__link" href={show.page}>{show.title}</a>
<a className="latest-show__link" href={show.page} dangero>
<span dangerouslySetInnerHTML={show.titleHTML} />
</a>
<time className="latest-show__date" dateTime={show.dateDisplay}>
{`${show.dateDisplay} at ${show.time.replace(/\*/g, '')}`}
</time>
Expand Down

0 comments on commit 5077919

Please sign in to comment.