-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed-data.js
187 lines (181 loc) · 13.1 KB
/
seed-data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
var data = {
myProjects: [
{
name: "Number Guessing Game",
alias: "number-guessing-game",
image: "/images/Me.jpeg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tags: [{name:"JavaScript",class:"primary"},{name:"Math",class:"info"},{name:"Random",class:"danger"}],
imageSliders: ['slide1.png','slide2.png','slide3.png','slide4.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "JS Console",
alias: "js-console",
image: "/images/Me.jpeg",
description: "In this project you will build a JavaScript console. In this console you will be able to run any JavaScript statements and expressions. Let's try to evaluate JavaScript expressions using your own code.",
githubUrl: "https://www.github.com/mnegi/js-console",
tags: [{name:"JavaScript",class:"primary"},{name:"Console",class:"warning"},{name:"geval",class:"success"}],
imageSliders: ['slide1.png','slide2.png','slide3.png','slide4.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Image Changer",
alias: "image-changer",
image: "/images/Me.jpeg",
description: "This is a very simple JavaScript project which will toggle the images on click of it. In this project you will learn how to handle the events in JavaScript. Learn different ways you can attach event handlers.",
githubUrl: "https://www.github.com/mnegi/images-changer",
tags: [{name:"JavaScript",class:"success"},{name:"Events",class:"primary"},{name:"Image",class:"secondary"}],
imageSliders: ['slide1.png','slide2.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Silly Story Generator",
alias: "silly-story-generator",
image: "/images/Me.jpeg",
description: "In this project you will generates a silly story. We will have a variable username and converts the default US weight and temperature quantities and units in the story into UK equivalents and generate a random silly story.",
githubUrl: "https://www.github.com/mnegi/silly-story-generator",
tags: [{name:"JavaScript",class:"primary"},{name:"String",class:"info"},{name:"Array",class:"warning"},{name:"Math.round",class:"danger"},],
imageSliders: ['slide1.png','slide2.png','slide3.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Image Gallery",
alias: "image-gallery",
image: "/images/Me.jpeg",
description: "In this project you will learn how to create an image gallery just by using plain JavaScript. You will see a main image box and few thumbnail images at the bottom. On click of the thumbnail images it will open in the main image box.",
githubUrl: "https://www.github.com/mnegi/images-gallery",
tags: [{name:"JavaScript",class:"primary"},{name:"Images",class:"secondary"},{name:"Events",class:"danger"}],
imageSliders: ['slide1.png','slide2.png','slide3.png','slide4.png', 'slide5.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Bouncing Balls",
alias: "bouncing-balls",
image: "/images/Me.jpeg",
description: "In this project we will build a bouncing balls demo, to show you how useful objects can be in JavaScript. Little balls will bounce around on the screen, and change color when they touch each other using the Canvas API.",
githubUrl: "https://www.github.com/mnegi/bouncing-balls",
tags: [{name:"JavaScript",class:"primary"},{name:"Canvas",class:"success"},{name:"Animation",class:"warning"},{name:"Random",class:"info"}],
imageSliders: ['slide1.png','slide2.png','slide3.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Matrix Effect",
alias: "matrix-effect",
image: "/images/Me.jpeg",
description: "In this project your will build Matrix rain animation effect using HTML5 canvas and JavaScript. Learn multiple JavaScript features that has been used to create this project including String, Math and Canvas API.",
githubUrl: "https://www.github.com/mnegi/matrix-effect",
tags: [{name:"JavaScript",class:"primary"},{name:"Canvas",class:"secondary"},{name:"String",class:"info"}],
imageSliders: ['slide1.png','slide2.png','slide3.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Top 5 Searches",
alias: "top-5-searches",
image: "/images/Me.jpeg",
description: "In this project you will build a fake search site, with a search box. The idea is that when terms are entered in the search box, the top 5 previous search terms are displayed in the list. It always shows last 5 searches. ",
githubUrl: "https://www.github.com/mnegi/top-5-searches",
tags: [{name:"JavaScript",class:"primary"},{name:"Array",class:"secondary"},{name:"Events",class:"info"}],
imageSliders: ['slide1.png','slide2.png','slide3.png','slide4.png','slide5.png'],
relatedProjects: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
}
],
projectIndex: {
"number-guessing-game":0,
"js-console":1,
"image-changer":2,
"silly-story-generator":3,
"image-gallery":4,
"bouncing-balls":5,
"matrix-effect":6,
"top-5-searches":7
},
blogCategories: ["HTML","CSS","JavaScript","Node.js","Express","MongoDB","REST API","Angular","Bootsrap"],
myBlog: [
{
name: "Building a static portfolio site using Bootstrap 4",
alias: "building-a-static-portfolio-site-using-bootstrap-4",
image: "/images/blog/building-a-static-portfolio-site-using-bootstrap-4.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"Bootstrap",class:"primary"},
imageSliders: ['building-a-static-portfolio-site-using-bootstrap-4.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Rewrite the static site using Node, Express & Handlebars",
alias: "rewrite-the-static-site-using-node-express-handlebars",
image: "/images/blog/rewrite-the-static-site-using-node-express-handlebars.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"Express",class:"info"},
imageSliders: ['rewrite-the-static-site-using-node-express-handlebars.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Build all the pages and layouts",
alias: "build-all-the-pages-and-layouts",
image: "/images/blog/build-all-the-pages-and-layouts.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"Express",class:"info"},
imageSliders: ['build-all-the-pages-and-layouts.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Design the database using MongoDB",
alias: "design-the-database-using-mongodb",
image: "/images/blog/design-the-database-using-mongodb.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"MongoDB",class:"success"},
imageSliders: ['design-the-database-using-mongodb.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Fetch data from MongoDB in Express",
alias: "fetch-data-from-mongodb-in-express",
image: "/images/blog/fetch-data-from-mongodb-in-express.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"MongoDB",class:"success"},
imageSliders: ['fetch-data-from-mongodb-in-express.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Build the REST API",
alias: "build-the-rest-api",
image: "/images/blog/build-the-rest-api.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"REST API",class:"secondary"},
imageSliders: ['build-the-rest-api.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
},
{
name: "Integrate REST APIs with Express App",
alias: "integrate-rest-api-with-express-js-app",
image: "/images/blog/integrate-rest-api-with-express-js-app.jpg",
description: "In this project you will build a small number guessing game. System will select a random number between 1 and 100. See if you can guess it in 10 turns or fewer. We'll tell you if your guess was too high or too low.",
githubUrl: "https://www.github.com/mnegi/number-guessing-game",
tag: {name:"REST API",class:"secondary"},
imageSliders: ['integrate-rest-api-with-express-js-app.jpg'],
relatedBlogs: [{name:'JS Console', link: 'js-console'},{name:'Image Gallery', link: 'image-gallery'}, {name:'Bouncing Balls', link: 'bouncing-balls'}, {name:'Matrix Effect', link: 'matrix-effect'}]
}
],
blogIndex: {
"building-a-static-portfolio-site-using-bootstrap-4": 0,
"rewrite-the-static-site-using-node-express-handlebars": 1,
"build-all-the-pages-and-layouts": 2,
"design-the-database-using-mongodb": 3,
"fetch-data-from-mongodb-in-express": 4,
"build-the-rest-api": 5,
"integrate-rest-api-with-express-js-app": 6
},
user: {
'email': '[email protected]',
'password': 'supersecret'
}
};
module.exports = data;