Hacker News new | ask | show | jobs
by RetroTechie 25 days ago
Upvoted. Did you compile that list just now, pulled it from bookmarks, or other source?
1 comments

In their github, they have json mapping. And I used some simple javascript.

``` console.log( Object.values(jsonObj) .map(v => `${v.title} - ${v.sourceUrl}`) .join('\n\n') ); ```