-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
146 lines (146 loc) · 3.22 KB
/
db.json
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
{
"tweets": [
{
"id": "1",
"name": "John Smith",
"author_id": "johnsmith",
"text": "What are the pros of object-oriented programming?<br><br>Please, explain as if I'm 5.",
"comments": [
{
"text": "New comment",
"name": "Amelia Warner",
"author_id": "ameliawarner"
},
{
"text": "Hello!",
"name": "Amelia Warner",
"author_id": "ameliawarner"
},
{
"text": "test Comment",
"name": "Darkkk",
"author_id": "darkkk"
}
],
"likes": [
null,
"dariuszbasiak",
"darkkk"
]
},
{
"id": "2",
"name": "Carla Notarobot",
"author_id": "carlanotarobot",
"text": "Why use a debugger when you can fill your code with hundreds of <code>print()</code> statements?",
"comments": [
{
"text": "test comment",
"name": "Amelia Warner",
"author_id": "ameliawarner"
}
],
"likes": [
"ameliawarner"
]
},
{
"id": "3",
"name": "Amelia Warner",
"author_id": "ameliawarner",
"text": "Describe your relationship with JavaScript with one word.",
"likes": []
},
{
"text": "sfadsfsfd",
"name": "Amelia Warner",
"author_id": "ameliawarner",
"createdAt": 1707744897525,
"id": "3qDBh-6",
"likes": [
"ameliawarner"
]
},
{
"text": "New Value",
"author_id": "ameliawarner",
"createdAt": 1707865386921,
"id": "BQb61_n",
"likes": [
"ameliawarner"
]
},
{
"text": "Checking revalidate",
"author_id": "ameliawarner",
"createdAt": 1707865526993,
"id": "QwuiDil"
},
{
"text": "Hello Word",
"author_id": "dariuszbasiak",
"createdAt": 1707922465767,
"id": "ut3fJpt"
},
{
"text": "asdfsdfasdfasdfasdfsdfasdfadsfasdfasdfdsf",
"author_id": "ameliawarner",
"createdAt": 1708076386540,
"id": "gF09r6k"
},
{
"text": "asdfsdfasdfasdfasdfsdfasdfadsfasdfasdfdsf",
"author_id": "ameliawarner",
"createdAt": 1708076466090,
"id": "N8lKf27"
},
{
"text": "adfadfasdf",
"author_id": "ameliawarner",
"name": "Amelia Warner",
"createdAt": 1708076504788,
"id": "ebcGPPl"
}
],
"users": [
{
"id": "johnsmith",
"name": "John Smith",
"email": "[email protected]"
},
{
"id": "carlanotarobot",
"name": "Carla Notarobot",
"email": "[email protected]"
},
{
"id": "ameliawarner",
"name": "Amelia Warner",
"email": "[email protected]"
},
{
"name": "Dariusz Basiak",
"email": "[email protected]",
"id": "dariuszbasiak",
"createdAt": 1707922435231
},
{
"name": "Test User",
"email": "[email protected]",
"id": "testuser",
"createdAt": 1707997553805
},
{
"name": "Test user2",
"email": "[email protected]",
"id": "testuser2",
"createdAt": 1707997808615
},
{
"name": "Darkkk",
"email": "[email protected]",
"id": "darkkk",
"createdAt": 1708075812729
}
]
}