Skip to content
Guille Paz edited this page Jul 14, 2013 · 11 revisions

How can I add new resources?

Now, you can add and share new resources. First of all, you should fork the repository and configure your environment.

What resources can I share?

  • Cool people to follow
  • Blogs
  • Weekly News
  • Podcasts
  • Conferences
  • Your recommendations (mentions)

New people, blogs, weekly news, podcasts or conferences

If you want to add one of those resources, you can find them into data folder:

.
|-- data/
|   |-- blogs.json
|   |-- conferences.json
|   |-- cool-people.json
|   |-- podcasts.json
|   |-- weekly.json

You should add a new entry with the following members:

  • name: The name of the resource.
  • permalink: URL to the resource.
  • img: Image URL of the resource (twitter image).
  • description: A little description of the resource.
{
    "name": "DailyJS",
    "permalink": "http://dailyjs.com/",
    "img": "http://twitter.com/api/users/profile_image/dailyjs?size=bigger",
    "description": {
        "en": "A JavaScript Blog.",
        "es": "Un blog de JavaScript.",
        "pt": "Um blog de JavaScript.",
        "de": "Ein JavaScript Blog."
    }
}

If you want to share new cool people, you should add an entry with the following members:

  • name: Full name of the person to follow.
  • site: URL to personal site of the person.
  • twitter
    • user: Twitter username (without @).
    • img: Twitter image.
  • tags: Adds tags to the person (HTML, CSS, JavaScript, Mobile or Performance).
{
    "name": "Addy Osmani",
    "site": "http://addyosmani.com/",
    "twitter": {
        "user": "addyosmani",
        "img": "http://twitter.com/api/users/profile_image/addyosmani?size=bigger"
    },
    "tags": ["JavaScript"]
}