-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadTestData.js
49 lines (44 loc) · 3.3 KB
/
loadTestData.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
import { MongoClient } from 'mongodb';
import assert from 'assert';
import config from './config';
MongoClient.connect(config.mongodbUri, (err, db) => {
assert.equal(null, err);
db.collection('contests').insertMany([
{ id: 1, categoryName: 'Business/Company', contestName: 'Cognitive Building Bricks',
description: `
This product is a classroom tool that scaffolds higher order thinking. Its a collaborative strategy that using building bricks to help structure students ideas. Learners build knowledge structures with information (attached to different coloured bricks). Students desks are turned into workshops where they physically manipulate information into meaningful creations. They show sequences of information (like stories), rank information by importance and pretty much all other essential cognitive skills you need at school. The end result is clarity in thought and better collaborative conversations. I want this to be marketed as a sophisticated knowledge tool applicable to all ages and subjects. It gives students the cognitive edge, they get a little more 'RAM'!.
I want to continue with the construction/building theme as well as the mind/brain/learning theme. They need to be blended somehow. Teachers find it easier to talk about building/scaffolding analogies as its less abstract.
`,
nameIds: [101, 102] },
{ id: 2, categoryName: 'Magazine/Newsletter', contestName: 'Educating people about sustainable food production',
description: `
Educating people about sustainable food production
`,
nameIds: [] },
{ id: 3, categoryName: 'Software Component', contestName: 'Big Data Analytics for Cash Circulation',
description: `
Data is created at every touch point in a notes life-cycle. Because of the volume of the data, it can be difficult to store, analyse and gain insight. Collecting, processing and analysing the data using big data technologies and displaying the results in an interactive display makes it easy to make informative decisions, overcome problem and plan for the future.
It works using big data technologies and displays the results in modern browsers, combining powerful visualisation components and a data-driven approach to interact with the data.
It enables you to analyse data that were not previously possible. The volume, variety, complexity of the analytical processing involved, and the responsiveness required are now achievable with the product. Gaining smarter decision making but also provide faster time to value.
`,
nameIds: [103, 104, 105] },
{ id: 4, categoryName: 'Website', contestName: 'Free programming books',
description: `
A list of free online programming books, categorized by languages/topics
`,
nameIds: [] }
]).then(response => {
console.info('Contests', response.insertedCount);
db.collection('names').insertMany([
{ id: 101, name: 'Mind Assembly', timestamp: new Date() },
{ id: 102, name: 'Brain Scaffold', timestamp: new Date() },
{ id: 103, name: 'Cash View', timestamp: new Date() },
{ id: 104, name: 'Currency Map', timestamp: new Date() },
{ id: 105, name: 'Cash Board', timestamp: new Date() },
{ id: 106, name: 'RootLib', timestamp: new Date() },
]).then(response => {
console.info('Names', response.insertedCount);
db.close();
});
});
});