-
Notifications
You must be signed in to change notification settings - Fork 228
New resources
Guille Paz edited this page Jul 14, 2013
·
11 revisions
Now, you can add and share new resources. First of all, you should fork the repository and configure your environment.
- Cool people to follow
- Blogs
- Weekly News
- Podcasts
- Conferences
- Your recommendations (mentions)
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,MobileorPerformance).
{
"name": "Addy Osmani",
"site": "http://addyosmani.com/",
"twitter": {
"user": "addyosmani",
"img": "http://twitter.com/api/users/profile_image/addyosmani?size=bigger"
},
"tags": ["JavaScript"]
}