├── .gitignore ├── data ├── planets.json ├── reading-data-1.json ├── reading-data-2.json ├── reading-data-3.json └── writing-data-1.json └── readme.MD /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeeames/FirebaseFundamentalsCourse/b2c543190815af8e55b938550b8e64becc26f88a/.gitignore -------------------------------------------------------------------------------- /data/planets.json: -------------------------------------------------------------------------------- 1 | {"averageTemps":{"alderaan":80,"coruscant":75,"dagobah":100,"hoth":-20,"naboo":85,"tatooine":120}} -------------------------------------------------------------------------------- /data/reading-data-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "users": { 3 | "-JzqV5XxWnos9RJ4-EN-": { 4 | "email": "Beru-Whitesun-lars@hotmail.com", 5 | "name": "Beru Whitesun lars", 6 | "username": "beru-whitesun-lars", 7 | "following": { 8 | "-JzqV5YpwDR4fzFj-eey": true, 9 | "-JzqV5YOo1eQxTC6WVvY": true 10 | }, 11 | "tweets": { 12 | "-JzqV5XyL2WfiQWLMdAr": { 13 | "created": "1970-01-15T21:59:05-07:00", 14 | "fannedOut": true, 15 | "text": "I'm really tired of blue milk..." 16 | }, 17 | "-JzqV5YAQbRruQPkBqav": { 18 | "created": "1970-01-04T04:16:27-07:00", 19 | "fannedOut": true, 20 | "text": "R2 is a rusty bucket of bolts! j/k" 21 | }, 22 | "-JzqV5YDFOPrODtveaHW": { 23 | "created": "1970-01-07T12:04:03-07:00", 24 | "fannedOut": true, 25 | "text": "I see some stormtroopers heading our way. Nothing to worry about I'm sure." 26 | } 27 | } 28 | }, 29 | "-JzqV5YOo1eQxTC6WVvY": { 30 | "email": "Luke-Skywalker@hotmail.com", 31 | "name": "Luke Skywalker", 32 | "username": "luke-skywalker", 33 | "following": { 34 | "-JzqV5XxWnos9RJ4-EN-": true 35 | }, 36 | "tweets": { 37 | "-JzqV5YPJm0hoYEhLuSv": { 38 | "created": "1970-01-12T11:05:34-07:00", 39 | "fannedOut": true, 40 | "text": "Ugh! My life is going nowhere!" 41 | }, 42 | "-JzqV5YSu7RNuYmhPUZp": { 43 | "created": "1970-01-16T08:07:47-07:00", 44 | "fannedOut": true, 45 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe." 46 | }, 47 | "-JzqV5Ydr8Y6gR2024py": { 48 | "created": "1970-01-12T15:16:18-07:00", 49 | "fannedOut": true, 50 | "text": "Best thing about two suns? Nothing." 51 | } 52 | } 53 | }, 54 | "-JzqV5YpwDR4fzFj-eey": { 55 | "email": "Leia-Organa@hotmail.com", 56 | "name": "Leia Organa", 57 | "username": "leia-organa", 58 | "following": { 59 | "-JzqV5XxWnos9RJ4-EN-": true, 60 | "-JzqV5YOo1eQxTC6WVvY": true 61 | }, 62 | "tweets": { 63 | "-JzqV5Z0CcFpkYaK5ffG": { 64 | "created": "1970-01-05T21:41:03-07:00", 65 | "fannedOut": true, 66 | "text": "What's the best way to get garbage masher smell out of a dress?" 67 | }, 68 | "-JzqV5ZAkK6jg3BBoehX": { 69 | "created": "1970-01-15T03:19:44-07:00", 70 | "fannedOut": true, 71 | "text": "He's a scoundrel but I love him. #HanShotFirst" 72 | }, 73 | "-JzqV5ZI_wtTNHlX8KxG": { 74 | "created": "1970-01-03T14:06:31-07:00", 75 | "fannedOut": true, 76 | "text": "Girls, always be careful who you kiss. #awkward" 77 | } 78 | } 79 | } 80 | } 81 | } -------------------------------------------------------------------------------- /data/reading-data-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "users": { 3 | "-JzqV5XxWnos9RJ4-EN-": { 4 | "email": "Beru-Whitesun-lars@hotmail.com", 5 | "name": "Beru Whitesun lars", 6 | "tweetCount": 3, 7 | "username": "beru-whitesun-lars" 8 | }, 9 | "-JzqV5YOo1eQxTC6WVvY": { 10 | "email": "Luke-Skywalker@hotmail.com", 11 | "name": "Luke Skywalker", 12 | "tweetCount": 2, 13 | "username": "luke-skywalker" 14 | }, 15 | "-JzqV5YpwDR4fzFj-eey": { 16 | "email": "Leia-Organa@hotmail.com", 17 | "name": "Leia Organa", 18 | "tweetCount": 2, 19 | "username": "leia-organa" 20 | } 21 | }, 22 | "userObjects": { 23 | "following": { 24 | "-JzqV5XxWnos9RJ4-EN-": { 25 | "-JzqV5fcuQ7KaHal6_IK": { 26 | "email": "Leia-Organa@hotmail.com", 27 | "key": "-JzqV5YpwDR4fzFj-eey", 28 | "name": "Leia Organa", 29 | "username": "leia-organa" 30 | }, 31 | "-JzqV5eC-LxHooIIEuRD": { 32 | "email": "Luke-Skywalker@hotmail.com", 33 | "key": "-JzqV5YOo1eQxTC6WVvY", 34 | "name": "Luke Skywalker", 35 | "username": "luke-skywalker" 36 | } 37 | }, 38 | "-JzqV5YOo1eQxTC6WVvY": { 39 | "-JzqV5etLEwZgDEPGleL": { 40 | "email": "Beru-Whitesun-lars@hotmail.com", 41 | "key": "-JzqV5XxWnos9RJ4-EN-", 42 | "name": "Beru Whitesun lars", 43 | "username": "beru-whitesun-lars" 44 | } 45 | }, 46 | "-JzqV5YpwDR4fzFj-eey": { 47 | "-JzqV5etLEwZgDERlCza": { 48 | "email": "Beru-Whitesun-lars@hotmail.com", 49 | "key": "-JzqV5XxWnos9RJ4-EN-", 50 | "name": "Beru Whitesun lars", 51 | "username": "beru-whitesun-lars" 52 | }, 53 | "-JzqV5eC-LxHooIBHeiS": { 54 | "email": "Luke-Skywalker@hotmail.com", 55 | "key": "-JzqV5YOo1eQxTC6WVvY", 56 | "name": "Luke Skywalker", 57 | "username": "luke-skywalker" 58 | } 59 | } 60 | }, 61 | "tweets": { 62 | "-JzqV5XxWnos9RJ4-EN-": { 63 | "tweets": { 64 | "-JzqV5XyL2WfiQWLMdAr": { 65 | "created": "1970-01-15T21:59:05-07:00", 66 | "fannedOut": true, 67 | "text": "I'm really tired of blue milk..." 68 | }, 69 | "-JzqV5YAQbRruQPkBqav": { 70 | "created": "1970-01-04T04:16:27-07:00", 71 | "fannedOut": true, 72 | "text": "R2 is a rusty bucket of bolts! j/k" 73 | }, 74 | "-JzqV5YDFOPrODtveaHW": { 75 | "created": "1970-01-07T12:04:03-07:00", 76 | "fannedOut": true, 77 | "text": "I see some stormtroopers heading our way. Nothing to worry about I'm sure." 78 | } 79 | } 80 | }, 81 | "-JzqV5YOo1eQxTC6WVvY": { 82 | "tweets": { 83 | "-JzqV5YPJm0hoYEhLuSv": { 84 | "created": "1970-01-12T11:05:34-07:00", 85 | "fannedOut": true, 86 | "text": "Ugh! My life is going nowhere!" 87 | }, 88 | "-JzqV5YSu7RNuYmhPUZp": { 89 | "created": "1970-01-16T08:07:47-07:00", 90 | "fannedOut": true, 91 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe." 92 | }, 93 | "-JzqV5Ydr8Y6gR2024py": { 94 | "created": "1970-01-12T15:16:18-07:00", 95 | "fannedOut": true, 96 | "text": "Best thing about two suns? Nothing." 97 | } 98 | } 99 | }, 100 | "-JzqV5YpwDR4fzFj-eey": { 101 | "tweets": { 102 | "-JzqV5Z0CcFpkYaK5ffG": { 103 | "created": "1970-01-05T21:41:03-07:00", 104 | "fannedOut": true, 105 | "text": "What's the best way to get garbage masher smell out of a dress?" 106 | }, 107 | "-JzqV5ZAkK6jg3BBoehX": { 108 | "created": "1970-01-15T03:19:44-07:00", 109 | "fannedOut": true, 110 | "text": "He's a scoundrel but I love him. #HanShotFirst" 111 | }, 112 | "-JzqV5ZI_wtTNHlX8KxG": { 113 | "created": "1970-01-03T14:06:31-07:00", 114 | "fannedOut": true, 115 | "text": "Girls, always be careful who you kiss. #awkward" 116 | } 117 | } 118 | } 119 | } 120 | } 121 | } -------------------------------------------------------------------------------- /data/reading-data-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "userObjects": { 3 | "following": { 4 | "-K-sgXF6kcVNbkMTnm8g": { 5 | "-K-sgXIpLSHNMVKFe3Qe": { 6 | "email": "Luke-Skywalker@hotmail.com", 7 | "key": "-K-sgXFWAuXU4iN4Uwv-", 8 | "name": "Luke Skywalker", 9 | "username": "luke-skywalker" 10 | }, 11 | "-K-sgXJ09UBRKlacjGjF": { 12 | "email": "Darth-Vader@hotmail.com", 13 | "key": "-K-sgXFwMdj_CPmLWKpq", 14 | "name": "Darth Vader", 15 | "username": "darth-vader" 16 | }, 17 | "-K-sgXJFC1SNFk8V-t2V": { 18 | "email": "C-3PO@hotmail.com", 19 | "key": "-K-sgXF6kcVNbkMTnm8g", 20 | "name": "C-3PO", 21 | "username": "c-3po" 22 | }, 23 | "-K-sgXJPJQGyVXvfpAS7": { 24 | "email": "R2-D2@hotmail.com", 25 | "key": "-K-sgXFe_iwLRDLrMVf2", 26 | "name": "R2-D2", 27 | "username": "r2-d2" 28 | } 29 | }, 30 | "-K-sgXFWAuXU4iN4Uwv-": { 31 | "-K-sgXInQqrmy4zw80jT": { 32 | "email": "Luke-Skywalker@hotmail.com", 33 | "key": "-K-sgXFWAuXU4iN4Uwv-", 34 | "name": "Luke Skywalker", 35 | "username": "luke-skywalker" 36 | }, 37 | "-K-sgXIvh2NJA0G9zZVQ": { 38 | "email": "Darth-Vader@hotmail.com", 39 | "key": "-K-sgXFwMdj_CPmLWKpq", 40 | "name": "Darth Vader", 41 | "username": "darth-vader" 42 | }, 43 | "-K-sgXJMm_aRFQvVTSdm": { 44 | "email": "R2-D2@hotmail.com", 45 | "key": "-K-sgXFe_iwLRDLrMVf2", 46 | "name": "R2-D2", 47 | "username": "r2-d2" 48 | } 49 | }, 50 | "-K-sgXFe_iwLRDLrMVf2": { 51 | "-K-sgXIjhWr_xDD2GBV8": { 52 | "email": "Luke-Skywalker@hotmail.com", 53 | "key": "-K-sgXFWAuXU4iN4Uwv-", 54 | "name": "Luke Skywalker", 55 | "username": "luke-skywalker" 56 | }, 57 | "-K-sgXJCeoIK8WzE0o3T": { 58 | "email": "C-3PO@hotmail.com", 59 | "key": "-K-sgXF6kcVNbkMTnm8g", 60 | "name": "C-3PO", 61 | "username": "c-3po" 62 | }, 63 | "-K-sgXJLzsr8m0iAS6fM": { 64 | "email": "R2-D2@hotmail.com", 65 | "key": "-K-sgXFe_iwLRDLrMVf2", 66 | "name": "R2-D2", 67 | "username": "r2-d2" 68 | } 69 | }, 70 | "-K-sgXFwMdj_CPmLWKpq": { 71 | "-K-sgXIg5yNXQYrVMl0s": { 72 | "email": "Luke-Skywalker@hotmail.com", 73 | "key": "-K-sgXFWAuXU4iN4Uwv-", 74 | "name": "Luke Skywalker", 75 | "username": "luke-skywalker" 76 | }, 77 | "-K-sgXItfJh1t7-oF6RM": { 78 | "email": "Darth-Vader@hotmail.com", 79 | "key": "-K-sgXFwMdj_CPmLWKpq", 80 | "name": "Darth Vader", 81 | "username": "darth-vader" 82 | }, 83 | "-K-sgXJAdygwfHQPSqnc": { 84 | "email": "C-3PO@hotmail.com", 85 | "key": "-K-sgXF6kcVNbkMTnm8g", 86 | "name": "C-3PO", 87 | "username": "c-3po" 88 | }, 89 | "-K-sgXJJlhj66gxIwRvr": { 90 | "email": "R2-D2@hotmail.com", 91 | "key": "-K-sgXFe_iwLRDLrMVf2", 92 | "name": "R2-D2", 93 | "username": "r2-d2" 94 | } 95 | } 96 | }, 97 | "timeline": { 98 | "-K-sgXF6kcVNbkMTnm8g": { 99 | "-K-sgYzUA7zW5LchcDQ2": { 100 | "created": "1970-01-06T21:02:32-07:00", 101 | "text": "Ugh! My life is going nowhere!", 102 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 103 | "user": { 104 | "email": "Luke-Skywalker@hotmail.com", 105 | "key": "-K-sgXFWAuXU4iN4Uwv-", 106 | "name": "Luke Skywalker", 107 | "username": "luke-skywalker" 108 | }, 109 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 110 | }, 111 | "-K-sgYzch0ggMsRMRcpL": { 112 | "created": "1970-01-06T13:22:26-07:00", 113 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 114 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 115 | "user": { 116 | "email": "Luke-Skywalker@hotmail.com", 117 | "key": "-K-sgXFWAuXU4iN4Uwv-", 118 | "name": "Luke Skywalker", 119 | "username": "luke-skywalker" 120 | }, 121 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 122 | }, 123 | "-K-sgYzfCpRchHB97xMo": { 124 | "created": "1970-01-02T18:01:19-07:00", 125 | "text": "Best thing about two suns? Nothing.", 126 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 127 | "user": { 128 | "email": "Luke-Skywalker@hotmail.com", 129 | "key": "-K-sgXFWAuXU4iN4Uwv-", 130 | "name": "Luke Skywalker", 131 | "username": "luke-skywalker" 132 | }, 133 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 134 | }, 135 | "-K-sgYzr4NK0oXaiyCTm": { 136 | "created": "1970-01-04T11:28:01-07:00", 137 | "text": "Are you choking on something?", 138 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 139 | "user": { 140 | "email": "Darth-Vader@hotmail.com", 141 | "key": "-K-sgXFwMdj_CPmLWKpq", 142 | "name": "Darth Vader", 143 | "username": "darth-vader" 144 | }, 145 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 146 | }, 147 | "-K-sgYzuB_f_3_GUyDvX": { 148 | "created": "1970-01-11T09:13:54-07:00", 149 | "text": "I find your lack of faith disturbing", 150 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 151 | "user": { 152 | "email": "Darth-Vader@hotmail.com", 153 | "key": "-K-sgXFwMdj_CPmLWKpq", 154 | "name": "Darth Vader", 155 | "username": "darth-vader" 156 | }, 157 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 158 | }, 159 | "-K-sgYzy7RPoTEYzzmxD": { 160 | "created": "1970-01-13T07:04:59-07:00", 161 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 162 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 163 | "user": { 164 | "email": "Darth-Vader@hotmail.com", 165 | "key": "-K-sgXFwMdj_CPmLWKpq", 166 | "name": "Darth Vader", 167 | "username": "darth-vader" 168 | }, 169 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 170 | }, 171 | "-K-sgZ-9MhaggBzv3uhx": { 172 | "created": "1970-01-13T16:02:44-07:00", 173 | "text": "This asteroid may not be entirely stable.", 174 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 175 | "user": { 176 | "email": "C-3PO@hotmail.com", 177 | "key": "-K-sgXF6kcVNbkMTnm8g", 178 | "name": "C-3PO", 179 | "username": "c-3po" 180 | }, 181 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 182 | }, 183 | "-K-sgZ-E48hDWwi6mHox": { 184 | "created": "1970-01-12T12:49:13-07:00", 185 | "text": "R2 is a rusty bucket of bolts! j/k", 186 | "tweetKey": "-K-sgXFJdks9Gomydal0", 187 | "user": { 188 | "email": "C-3PO@hotmail.com", 189 | "key": "-K-sgXF6kcVNbkMTnm8g", 190 | "name": "C-3PO", 191 | "username": "c-3po" 192 | }, 193 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 194 | }, 195 | "-K-sgZ-Nm29yvD0UXX7m": { 196 | "created": "1970-01-10T03:28:44-07:00", 197 | "text": "Just call me Golden Rod", 198 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 199 | "user": { 200 | "email": "C-3PO@hotmail.com", 201 | "key": "-K-sgXF6kcVNbkMTnm8g", 202 | "name": "C-3PO", 203 | "username": "c-3po" 204 | }, 205 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 206 | }, 207 | "-K-sgZ-RDUkU07k4xJ5B": { 208 | "created": "1970-01-13T14:18:22-07:00", 209 | "text": "Beep Beep Boop!", 210 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 211 | "user": { 212 | "email": "R2-D2@hotmail.com", 213 | "key": "-K-sgXFe_iwLRDLrMVf2", 214 | "name": "R2-D2", 215 | "username": "r2-d2" 216 | }, 217 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 218 | }, 219 | "-K-sgZ-VOShfcVL7Pr5E": { 220 | "created": "1970-01-07T10:39:46-07:00", 221 | "text": "Click Whir Beep!", 222 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 223 | "user": { 224 | "email": "R2-D2@hotmail.com", 225 | "key": "-K-sgXFe_iwLRDLrMVf2", 226 | "name": "R2-D2", 227 | "username": "r2-d2" 228 | }, 229 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 230 | }, 231 | "-K-sgZ-X-cSc2WveONWz": { 232 | "created": "1970-01-13T14:17:56-07:00", 233 | "text": "Beep Click Beep!", 234 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 235 | "user": { 236 | "email": "R2-D2@hotmail.com", 237 | "key": "-K-sgXFe_iwLRDLrMVf2", 238 | "name": "R2-D2", 239 | "username": "r2-d2" 240 | }, 241 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 242 | } 243 | }, 244 | "-K-sgXFWAuXU4iN4Uwv-": { 245 | "-K-sgYzWiaOfwL51qf37": { 246 | "created": "1970-01-08T21:56:48-07:00", 247 | "text": "Ugh! My life is going nowhere!", 248 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 249 | "user": { 250 | "email": "Luke-Skywalker@hotmail.com", 251 | "key": "-K-sgXFWAuXU4iN4Uwv-", 252 | "name": "Luke Skywalker", 253 | "username": "luke-skywalker" 254 | }, 255 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 256 | }, 257 | "-K-sgYzch0ggMsRMRcpM": { 258 | "created": "1970-01-17T07:14:06-07:00", 259 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 260 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 261 | "user": { 262 | "email": "Luke-Skywalker@hotmail.com", 263 | "key": "-K-sgXFWAuXU4iN4Uwv-", 264 | "name": "Luke Skywalker", 265 | "username": "luke-skywalker" 266 | }, 267 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 268 | }, 269 | "-K-sgYzfCpRchHB97xMp": { 270 | "created": "1970-01-14T13:05:13-07:00", 271 | "text": "Best thing about two suns? Nothing.", 272 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 273 | "user": { 274 | "email": "Luke-Skywalker@hotmail.com", 275 | "key": "-K-sgXFWAuXU4iN4Uwv-", 276 | "name": "Luke Skywalker", 277 | "username": "luke-skywalker" 278 | }, 279 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 280 | }, 281 | "-K-sgYzsyh9Q-k1w7Ic-": { 282 | "created": "1970-01-01T21:08:28-07:00", 283 | "text": "Are you choking on something?", 284 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 285 | "user": { 286 | "email": "Darth-Vader@hotmail.com", 287 | "key": "-K-sgXFwMdj_CPmLWKpq", 288 | "name": "Darth Vader", 289 | "username": "darth-vader" 290 | }, 291 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 292 | }, 293 | "-K-sgYzvbhE5CYP4I9Cq": { 294 | "created": "1970-01-10T10:50:41-07:00", 295 | "text": "I find your lack of faith disturbing", 296 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 297 | "user": { 298 | "email": "Darth-Vader@hotmail.com", 299 | "key": "-K-sgXFwMdj_CPmLWKpq", 300 | "name": "Darth Vader", 301 | "username": "darth-vader" 302 | }, 303 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 304 | }, 305 | "-K-sgYzy7RPoTEYzzmxE": { 306 | "created": "1970-01-12T01:31:08-07:00", 307 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 308 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 309 | "user": { 310 | "email": "Darth-Vader@hotmail.com", 311 | "key": "-K-sgXFwMdj_CPmLWKpq", 312 | "name": "Darth Vader", 313 | "username": "darth-vader" 314 | }, 315 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 316 | }, 317 | "-K-sgZ-RDUkU07k4xJ5C": { 318 | "created": "1970-01-13T22:05:46-07:00", 319 | "text": "Beep Beep Boop!", 320 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 321 | "user": { 322 | "email": "R2-D2@hotmail.com", 323 | "key": "-K-sgXFe_iwLRDLrMVf2", 324 | "name": "R2-D2", 325 | "username": "r2-d2" 326 | }, 327 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 328 | }, 329 | "-K-sgZ-VOShfcVL7Pr5F": { 330 | "created": "1970-01-06T11:17:00-07:00", 331 | "text": "Click Whir Beep!", 332 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 333 | "user": { 334 | "email": "R2-D2@hotmail.com", 335 | "key": "-K-sgXFe_iwLRDLrMVf2", 336 | "name": "R2-D2", 337 | "username": "r2-d2" 338 | }, 339 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 340 | }, 341 | "-K-sgZ-X-cSc2WveONX-": { 342 | "created": "1970-01-05T06:09:22-07:00", 343 | "text": "Beep Click Beep!", 344 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 345 | "user": { 346 | "email": "R2-D2@hotmail.com", 347 | "key": "-K-sgXFe_iwLRDLrMVf2", 348 | "name": "R2-D2", 349 | "username": "r2-d2" 350 | }, 351 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 352 | } 353 | }, 354 | "-K-sgXFe_iwLRDLrMVf2": { 355 | "-K-sgYzYDQ2Fw0GGcyUd": { 356 | "created": "1970-01-10T07:17:02-07:00", 357 | "text": "Ugh! My life is going nowhere!", 358 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 359 | "user": { 360 | "email": "Luke-Skywalker@hotmail.com", 361 | "key": "-K-sgXFWAuXU4iN4Uwv-", 362 | "name": "Luke Skywalker", 363 | "username": "luke-skywalker" 364 | }, 365 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 366 | }, 367 | "-K-sgYzdh4RqgZ1X8Rmi": { 368 | "created": "1970-01-04T06:46:36-07:00", 369 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 370 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 371 | "user": { 372 | "email": "Luke-Skywalker@hotmail.com", 373 | "key": "-K-sgXFWAuXU4iN4Uwv-", 374 | "name": "Luke Skywalker", 375 | "username": "luke-skywalker" 376 | }, 377 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 378 | }, 379 | "-K-sgYzfCpRchHB97xMq": { 380 | "created": "1970-01-02T07:54:00-07:00", 381 | "text": "Best thing about two suns? Nothing.", 382 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 383 | "user": { 384 | "email": "Luke-Skywalker@hotmail.com", 385 | "key": "-K-sgXFWAuXU4iN4Uwv-", 386 | "name": "Luke Skywalker", 387 | "username": "luke-skywalker" 388 | }, 389 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 390 | }, 391 | "-K-sgZ-AJtZ3i6nT-zRj": { 392 | "created": "1970-01-07T21:17:05-07:00", 393 | "text": "This asteroid may not be entirely stable.", 394 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 395 | "user": { 396 | "email": "C-3PO@hotmail.com", 397 | "key": "-K-sgXF6kcVNbkMTnm8g", 398 | "name": "C-3PO", 399 | "username": "c-3po" 400 | }, 401 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 402 | }, 403 | "-K-sgZ-F5yND7JLMin3d": { 404 | "created": "1970-01-14T16:09:32-07:00", 405 | "text": "R2 is a rusty bucket of bolts! j/k", 406 | "tweetKey": "-K-sgXFJdks9Gomydal0", 407 | "user": { 408 | "email": "C-3PO@hotmail.com", 409 | "key": "-K-sgXF6kcVNbkMTnm8g", 410 | "name": "C-3PO", 411 | "username": "c-3po" 412 | }, 413 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 414 | }, 415 | "-K-sgZ-Nm29yvD0UXX7n": { 416 | "created": "1970-01-04T12:00:51-07:00", 417 | "text": "Just call me Golden Rod", 418 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 419 | "user": { 420 | "email": "C-3PO@hotmail.com", 421 | "key": "-K-sgXF6kcVNbkMTnm8g", 422 | "name": "C-3PO", 423 | "username": "c-3po" 424 | }, 425 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 426 | }, 427 | "-K-sgZ-SMxvYfVtVfLti": { 428 | "created": "1970-01-14T03:03:46-07:00", 429 | "text": "Beep Beep Boop!", 430 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 431 | "user": { 432 | "email": "R2-D2@hotmail.com", 433 | "key": "-K-sgXFe_iwLRDLrMVf2", 434 | "name": "R2-D2", 435 | "username": "r2-d2" 436 | }, 437 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 438 | }, 439 | "-K-sgZ-VOShfcVL7Pr5G": { 440 | "created": "1970-01-04T23:18:30-07:00", 441 | "text": "Click Whir Beep!", 442 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 443 | "user": { 444 | "email": "R2-D2@hotmail.com", 445 | "key": "-K-sgXFe_iwLRDLrMVf2", 446 | "name": "R2-D2", 447 | "username": "r2-d2" 448 | }, 449 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 450 | }, 451 | "-K-sgZ-X-cSc2WveONX0": { 452 | "created": "1970-01-09T19:12:20-07:00", 453 | "text": "Beep Click Beep!", 454 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 455 | "user": { 456 | "email": "R2-D2@hotmail.com", 457 | "key": "-K-sgXFe_iwLRDLrMVf2", 458 | "name": "R2-D2", 459 | "username": "r2-d2" 460 | }, 461 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 462 | } 463 | }, 464 | "-K-sgXFwMdj_CPmLWKpq": { 465 | "-K-sgYzZhvnajRgqp0ka": { 466 | "created": "1970-01-07T09:26:24-07:00", 467 | "text": "Ugh! My life is going nowhere!", 468 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 469 | "user": { 470 | "email": "Luke-Skywalker@hotmail.com", 471 | "key": "-K-sgXFWAuXU4iN4Uwv-", 472 | "name": "Luke Skywalker", 473 | "username": "luke-skywalker" 474 | }, 475 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 476 | }, 477 | "-K-sgYzdh4RqgZ1X8Rmj": { 478 | "created": "1970-01-06T22:03:23-07:00", 479 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 480 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 481 | "user": { 482 | "email": "Luke-Skywalker@hotmail.com", 483 | "key": "-K-sgXFWAuXU4iN4Uwv-", 484 | "name": "Luke Skywalker", 485 | "username": "luke-skywalker" 486 | }, 487 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 488 | }, 489 | "-K-sgYzgFh-anEtcyg14": { 490 | "created": "1970-01-03T07:44:37-07:00", 491 | "text": "Best thing about two suns? Nothing.", 492 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 493 | "user": { 494 | "email": "Luke-Skywalker@hotmail.com", 495 | "key": "-K-sgXFWAuXU4iN4Uwv-", 496 | "name": "Luke Skywalker", 497 | "username": "luke-skywalker" 498 | }, 499 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 500 | }, 501 | "-K-sgYzsyh9Q-k1w7Ic0": { 502 | "created": "1970-01-05T10:15:55-07:00", 503 | "text": "Are you choking on something?", 504 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 505 | "user": { 506 | "email": "Darth-Vader@hotmail.com", 507 | "key": "-K-sgXFwMdj_CPmLWKpq", 508 | "name": "Darth Vader", 509 | "username": "darth-vader" 510 | }, 511 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 512 | }, 513 | "-K-sgYzvbhE5CYP4I9Cr": { 514 | "created": "1970-01-04T11:47:16-07:00", 515 | "text": "I find your lack of faith disturbing", 516 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 517 | "user": { 518 | "email": "Darth-Vader@hotmail.com", 519 | "key": "-K-sgXFwMdj_CPmLWKpq", 520 | "name": "Darth Vader", 521 | "username": "darth-vader" 522 | }, 523 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 524 | }, 525 | "-K-sgYzzlCXfsN605Mv6": { 526 | "created": "1970-01-02T23:26:10-07:00", 527 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 528 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 529 | "user": { 530 | "email": "Darth-Vader@hotmail.com", 531 | "key": "-K-sgXFwMdj_CPmLWKpq", 532 | "name": "Darth Vader", 533 | "username": "darth-vader" 534 | }, 535 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 536 | }, 537 | "-K-sgZ-B5YOWo6sijMa5": { 538 | "created": "1970-01-02T23:55:32-07:00", 539 | "text": "This asteroid may not be entirely stable.", 540 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 541 | "user": { 542 | "email": "C-3PO@hotmail.com", 543 | "key": "-K-sgXF6kcVNbkMTnm8g", 544 | "name": "C-3PO", 545 | "username": "c-3po" 546 | }, 547 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 548 | }, 549 | "-K-sgZ-InBOu-B9Xm846": { 550 | "created": "1970-01-06T06:42:09-07:00", 551 | "text": "R2 is a rusty bucket of bolts! j/k", 552 | "tweetKey": "-K-sgXFJdks9Gomydal0", 553 | "user": { 554 | "email": "C-3PO@hotmail.com", 555 | "key": "-K-sgXF6kcVNbkMTnm8g", 556 | "name": "C-3PO", 557 | "username": "c-3po" 558 | }, 559 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 560 | }, 561 | "-K-sgZ-O1njF2cZbzB6F": { 562 | "created": "1970-01-01T13:57:55-07:00", 563 | "text": "Just call me Golden Rod", 564 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 565 | "user": { 566 | "email": "C-3PO@hotmail.com", 567 | "key": "-K-sgXF6kcVNbkMTnm8g", 568 | "name": "C-3PO", 569 | "username": "c-3po" 570 | }, 571 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 572 | }, 573 | "-K-sgZ-SMxvYfVtVfLtj": { 574 | "created": "1970-01-06T11:00:59-07:00", 575 | "text": "Beep Beep Boop!", 576 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 577 | "user": { 578 | "email": "R2-D2@hotmail.com", 579 | "key": "-K-sgXFe_iwLRDLrMVf2", 580 | "name": "R2-D2", 581 | "username": "r2-d2" 582 | }, 583 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 584 | }, 585 | "-K-sgZ-WV3TTMVt-yHQj": { 586 | "created": "1970-01-11T08:26:43-07:00", 587 | "text": "Click Whir Beep!", 588 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 589 | "user": { 590 | "email": "R2-D2@hotmail.com", 591 | "key": "-K-sgXFe_iwLRDLrMVf2", 592 | "name": "R2-D2", 593 | "username": "r2-d2" 594 | }, 595 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 596 | }, 597 | "-K-sgZ-YpkKequlDeah-": { 598 | "created": "1970-01-03T03:39:01-07:00", 599 | "text": "Beep Click Beep!", 600 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 601 | "user": { 602 | "email": "R2-D2@hotmail.com", 603 | "key": "-K-sgXFe_iwLRDLrMVf2", 604 | "name": "R2-D2", 605 | "username": "r2-d2" 606 | }, 607 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 608 | } 609 | } 610 | }, 611 | "tweets": { 612 | "-K-sgXF6kcVNbkMTnm8g": { 613 | "-K-sgXF7SQ_R5n1_F-Lv": { 614 | "created": "1970-01-08T20:02:00-07:00", 615 | "fannedOut": true, 616 | "text": "This asteroid may not be entirely stable." 617 | }, 618 | "-K-sgXFJdks9Gomydal0": { 619 | "created": "1970-01-08T15:46:23-07:00", 620 | "fannedOut": true, 621 | "text": "R2 is a rusty bucket of bolts! j/k" 622 | }, 623 | "-K-sgXFMwFyoV1vfxawd": { 624 | "created": "1970-01-07T02:43:46-07:00", 625 | "fannedOut": true, 626 | "text": "Just call me Golden Rod" 627 | } 628 | }, 629 | "-K-sgXFWAuXU4iN4Uwv-": { 630 | "-K-sgXFXG3eDCfTdPJNF": { 631 | "created": "1970-01-10T22:16:21-07:00", 632 | "fannedOut": true, 633 | "text": "Ugh! My life is going nowhere!" 634 | }, 635 | "-K-sgXF_vVrhh4_Rqy62": { 636 | "created": "1970-01-13T15:16:09-07:00", 637 | "fannedOut": true, 638 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe." 639 | }, 640 | "-K-sgXFcn1EJSpbZs0Rs": { 641 | "created": "1970-01-03T02:55:53-07:00", 642 | "fannedOut": true, 643 | "text": "Best thing about two suns? Nothing." 644 | } 645 | }, 646 | "-K-sgXFe_iwLRDLrMVf2": { 647 | "-K-sgXFhA6ngWY_NUSBq": { 648 | "created": "1970-01-03T16:19:43-07:00", 649 | "fannedOut": true, 650 | "text": "Beep Beep Boop!" 651 | }, 652 | "-K-sgXFkvlDwnd0cdFQT": { 653 | "created": "1970-01-05T11:36:27-07:00", 654 | "fannedOut": true, 655 | "text": "Click Whir Beep!" 656 | }, 657 | "-K-sgXFpCeDcc37btCc0": { 658 | "created": "1970-01-07T02:13:35-07:00", 659 | "fannedOut": true, 660 | "text": "Beep Click Beep!" 661 | } 662 | }, 663 | "-K-sgXFwMdj_CPmLWKpq": { 664 | "-K-sgXFwMdj_CPmLWKpr": { 665 | "created": "1970-01-05T03:20:02-07:00", 666 | "fannedOut": true, 667 | "text": "Are you choking on something?" 668 | }, 669 | "-K-sgXFyn3KRlE6pXxdG": { 670 | "created": "1970-01-14T15:14:25-07:00", 671 | "fannedOut": true, 672 | "text": "I find your lack of faith disturbing" 673 | }, 674 | "-K-sgXG-uXrEifYx1Q1O": { 675 | "created": "1970-01-02T18:07:31-07:00", 676 | "fannedOut": true, 677 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?" 678 | } 679 | } 680 | } 681 | }, 682 | "users": { 683 | "-K-sgXF6kcVNbkMTnm8g": { 684 | "email": "C-3PO@hotmail.com", 685 | "mass": 75, 686 | "name": "C-3PO", 687 | "skin_color": "gold", 688 | "tweetCount": 3, 689 | "username": "c-3po" 690 | }, 691 | "-K-sgXFWAuXU4iN4Uwv-": { 692 | "email": "Luke-Skywalker@hotmail.com", 693 | "mass": 77, 694 | "name": "Luke Skywalker", 695 | "skin_color": "fair", 696 | "tweetCount": 2, 697 | "username": "luke-skywalker" 698 | }, 699 | "-K-sgXFe_iwLRDLrMVf2": { 700 | "email": "R2-D2@hotmail.com", 701 | "mass": 32, 702 | "name": "R2-D2", 703 | "skin_color": "white, blue", 704 | "tweetCount": 2, 705 | "username": "r2-d2" 706 | }, 707 | "-K-sgXFwMdj_CPmLWKpq": { 708 | "email": "Darth-Vader@hotmail.com", 709 | "mass": 136, 710 | "name": "Darth Vader", 711 | "skin_color": "white", 712 | "tweetCount": 2, 713 | "username": "darth-vader" 714 | } 715 | } 716 | } 717 | -------------------------------------------------------------------------------- /data/writing-data-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "userObjects": { 3 | "followers": { 4 | "-K-sgXF6kcVNbkMTnm8g": { 5 | "count": 3, 6 | "list": { 7 | "-K-sgYyklaS7Y5zijwnJ": { 8 | "email": "Darth-Vader@hotmail.com", 9 | "key": "-K-sgXFwMdj_CPmLWKpq", 10 | "name": "Darth Vader", 11 | "username": "darth-vader" 12 | }, 13 | "-K-sgZ-PzTIEofzyxVZX": { 14 | "email": "R2-D2@hotmail.com", 15 | "key": "-K-sgXFe_iwLRDLrMVf2", 16 | "name": "R2-D2", 17 | "username": "r2-d2" 18 | }, 19 | "-K-sgZ-PzTIEofzyxVZY": { 20 | "email": "C-3PO@hotmail.com", 21 | "key": "-K-sgXF6kcVNbkMTnm8g", 22 | "name": "C-3PO", 23 | "username": "c-3po" 24 | } 25 | } 26 | }, 27 | "-K-sgXFWAuXU4iN4Uwv-": { 28 | "count": 4, 29 | "list": { 30 | "-K-sgYybFfP6sf-KWsRh": { 31 | "email": "Darth-Vader@hotmail.com", 32 | "key": "-K-sgXFwMdj_CPmLWKpq", 33 | "name": "Darth Vader", 34 | "username": "darth-vader" 35 | }, 36 | "-K-sgYzpYu40UD5Ws_cE": { 37 | "email": "R2-D2@hotmail.com", 38 | "key": "-K-sgXFe_iwLRDLrMVf2", 39 | "name": "R2-D2", 40 | "username": "r2-d2" 41 | }, 42 | "-K-sgYzpYu40UD5Ws_cF": { 43 | "email": "Luke-Skywalker@hotmail.com", 44 | "key": "-K-sgXFWAuXU4iN4Uwv-", 45 | "name": "Luke Skywalker", 46 | "username": "luke-skywalker" 47 | }, 48 | "-K-sgYzpYu40UD5Ws_cG": { 49 | "email": "C-3PO@hotmail.com", 50 | "key": "-K-sgXF6kcVNbkMTnm8g", 51 | "name": "C-3PO", 52 | "username": "c-3po" 53 | } 54 | } 55 | }, 56 | "-K-sgXFe_iwLRDLrMVf2": { 57 | "count": 4, 58 | "list": { 59 | "-K-sgYyqToP6ZmVZZVIx": { 60 | "email": "Darth-Vader@hotmail.com", 61 | "key": "-K-sgXFwMdj_CPmLWKpq", 62 | "name": "Darth Vader", 63 | "username": "darth-vader" 64 | }, 65 | "-K-sgZ-ZpVheOZlp1U0J": { 66 | "email": "R2-D2@hotmail.com", 67 | "key": "-K-sgXFe_iwLRDLrMVf2", 68 | "name": "R2-D2", 69 | "username": "r2-d2" 70 | }, 71 | "-K-sgZ-_V77tgCgAIZAi": { 72 | "email": "Luke-Skywalker@hotmail.com", 73 | "key": "-K-sgXFWAuXU4iN4Uwv-", 74 | "name": "Luke Skywalker", 75 | "username": "luke-skywalker" 76 | }, 77 | "-K-sgZ-aqqNuUNcnJIi4": { 78 | "email": "C-3PO@hotmail.com", 79 | "key": "-K-sgXF6kcVNbkMTnm8g", 80 | "name": "C-3PO", 81 | "username": "c-3po" 82 | } 83 | } 84 | }, 85 | "-K-sgXFwMdj_CPmLWKpq": { 86 | "count": 3, 87 | "list": { 88 | "-K-sgYyf4bvBoW7HBVv6": { 89 | "email": "Darth-Vader@hotmail.com", 90 | "key": "-K-sgXFwMdj_CPmLWKpq", 91 | "name": "Darth Vader", 92 | "username": "darth-vader" 93 | }, 94 | "-K-sgZ-42YJnD_qtwrVL": { 95 | "email": "Luke-Skywalker@hotmail.com", 96 | "key": "-K-sgXFWAuXU4iN4Uwv-", 97 | "name": "Luke Skywalker", 98 | "username": "luke-skywalker" 99 | }, 100 | "-K-sgZ-42YJnD_qtwrVM": { 101 | "email": "C-3PO@hotmail.com", 102 | "key": "-K-sgXF6kcVNbkMTnm8g", 103 | "name": "C-3PO", 104 | "username": "c-3po" 105 | } 106 | } 107 | } 108 | }, 109 | "following": { 110 | "-K-sgXF6kcVNbkMTnm8g": { 111 | "-K-sgXIpLSHNMVKFe3Qe": { 112 | "email": "Luke-Skywalker@hotmail.com", 113 | "key": "-K-sgXFWAuXU4iN4Uwv-", 114 | "name": "Luke Skywalker", 115 | "username": "luke-skywalker" 116 | }, 117 | "-K-sgXJ09UBRKlacjGjF": { 118 | "email": "Darth-Vader@hotmail.com", 119 | "key": "-K-sgXFwMdj_CPmLWKpq", 120 | "name": "Darth Vader", 121 | "username": "darth-vader" 122 | }, 123 | "-K-sgXJFC1SNFk8V-t2V": { 124 | "email": "C-3PO@hotmail.com", 125 | "key": "-K-sgXF6kcVNbkMTnm8g", 126 | "name": "C-3PO", 127 | "username": "c-3po" 128 | }, 129 | "-K-sgXJPJQGyVXvfpAS7": { 130 | "email": "R2-D2@hotmail.com", 131 | "key": "-K-sgXFe_iwLRDLrMVf2", 132 | "name": "R2-D2", 133 | "username": "r2-d2" 134 | } 135 | }, 136 | "-K-sgXFWAuXU4iN4Uwv-": { 137 | "-K-sgXInQqrmy4zw80jT": { 138 | "email": "Luke-Skywalker@hotmail.com", 139 | "key": "-K-sgXFWAuXU4iN4Uwv-", 140 | "name": "Luke Skywalker", 141 | "username": "luke-skywalker" 142 | }, 143 | "-K-sgXIvh2NJA0G9zZVQ": { 144 | "email": "Darth-Vader@hotmail.com", 145 | "key": "-K-sgXFwMdj_CPmLWKpq", 146 | "name": "Darth Vader", 147 | "username": "darth-vader" 148 | }, 149 | "-K-sgXJMm_aRFQvVTSdm": { 150 | "email": "R2-D2@hotmail.com", 151 | "key": "-K-sgXFe_iwLRDLrMVf2", 152 | "name": "R2-D2", 153 | "username": "r2-d2" 154 | } 155 | }, 156 | "-K-sgXFe_iwLRDLrMVf2": { 157 | "-K-sgXIjhWr_xDD2GBV8": { 158 | "email": "Luke-Skywalker@hotmail.com", 159 | "key": "-K-sgXFWAuXU4iN4Uwv-", 160 | "name": "Luke Skywalker", 161 | "username": "luke-skywalker" 162 | }, 163 | "-K-sgXJCeoIK8WzE0o3T": { 164 | "email": "C-3PO@hotmail.com", 165 | "key": "-K-sgXF6kcVNbkMTnm8g", 166 | "name": "C-3PO", 167 | "username": "c-3po" 168 | }, 169 | "-K-sgXJLzsr8m0iAS6fM": { 170 | "email": "R2-D2@hotmail.com", 171 | "key": "-K-sgXFe_iwLRDLrMVf2", 172 | "name": "R2-D2", 173 | "username": "r2-d2" 174 | } 175 | }, 176 | "-K-sgXFwMdj_CPmLWKpq": { 177 | "-K-sgXIg5yNXQYrVMl0s": { 178 | "email": "Luke-Skywalker@hotmail.com", 179 | "key": "-K-sgXFWAuXU4iN4Uwv-", 180 | "name": "Luke Skywalker", 181 | "username": "luke-skywalker" 182 | }, 183 | "-K-sgXItfJh1t7-oF6RM": { 184 | "email": "Darth-Vader@hotmail.com", 185 | "key": "-K-sgXFwMdj_CPmLWKpq", 186 | "name": "Darth Vader", 187 | "username": "darth-vader" 188 | }, 189 | "-K-sgXJAdygwfHQPSqnc": { 190 | "email": "C-3PO@hotmail.com", 191 | "key": "-K-sgXF6kcVNbkMTnm8g", 192 | "name": "C-3PO", 193 | "username": "c-3po" 194 | }, 195 | "-K-sgXJJlhj66gxIwRvr": { 196 | "email": "R2-D2@hotmail.com", 197 | "key": "-K-sgXFe_iwLRDLrMVf2", 198 | "name": "R2-D2", 199 | "username": "r2-d2" 200 | } 201 | } 202 | }, 203 | "timeline": { 204 | "-K-sgXF6kcVNbkMTnm8g": { 205 | "-K-sgYzUA7zW5LchcDQ2": { 206 | "created": "1970-01-06T21:02:32-07:00", 207 | "text": "Ugh! My life is going nowhere!", 208 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 209 | "user": { 210 | "email": "Luke-Skywalker@hotmail.com", 211 | "key": "-K-sgXFWAuXU4iN4Uwv-", 212 | "name": "Luke Skywalker", 213 | "username": "luke-skywalker" 214 | }, 215 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 216 | }, 217 | "-K-sgYzch0ggMsRMRcpL": { 218 | "created": "1970-01-06T13:22:26-07:00", 219 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 220 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 221 | "user": { 222 | "email": "Luke-Skywalker@hotmail.com", 223 | "key": "-K-sgXFWAuXU4iN4Uwv-", 224 | "name": "Luke Skywalker", 225 | "username": "luke-skywalker" 226 | }, 227 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 228 | }, 229 | "-K-sgYzfCpRchHB97xMo": { 230 | "created": "1970-01-02T18:01:19-07:00", 231 | "text": "Best thing about two suns? Nothing.", 232 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 233 | "user": { 234 | "email": "Luke-Skywalker@hotmail.com", 235 | "key": "-K-sgXFWAuXU4iN4Uwv-", 236 | "name": "Luke Skywalker", 237 | "username": "luke-skywalker" 238 | }, 239 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 240 | }, 241 | "-K-sgYzr4NK0oXaiyCTm": { 242 | "created": "1970-01-04T11:28:01-07:00", 243 | "text": "Are you choking on something?", 244 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 245 | "user": { 246 | "email": "Darth-Vader@hotmail.com", 247 | "key": "-K-sgXFwMdj_CPmLWKpq", 248 | "name": "Darth Vader", 249 | "username": "darth-vader" 250 | }, 251 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 252 | }, 253 | "-K-sgYzuB_f_3_GUyDvX": { 254 | "created": "1970-01-11T09:13:54-07:00", 255 | "text": "I find your lack of faith disturbing", 256 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 257 | "user": { 258 | "email": "Darth-Vader@hotmail.com", 259 | "key": "-K-sgXFwMdj_CPmLWKpq", 260 | "name": "Darth Vader", 261 | "username": "darth-vader" 262 | }, 263 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 264 | }, 265 | "-K-sgYzy7RPoTEYzzmxD": { 266 | "created": "1970-01-13T07:04:59-07:00", 267 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 268 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 269 | "user": { 270 | "email": "Darth-Vader@hotmail.com", 271 | "key": "-K-sgXFwMdj_CPmLWKpq", 272 | "name": "Darth Vader", 273 | "username": "darth-vader" 274 | }, 275 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 276 | }, 277 | "-K-sgZ-9MhaggBzv3uhx": { 278 | "created": "1970-01-13T16:02:44-07:00", 279 | "text": "This asteroid may not be entirely stable.", 280 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 281 | "user": { 282 | "email": "C-3PO@hotmail.com", 283 | "key": "-K-sgXF6kcVNbkMTnm8g", 284 | "name": "C-3PO", 285 | "username": "c-3po" 286 | }, 287 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 288 | }, 289 | "-K-sgZ-E48hDWwi6mHox": { 290 | "created": "1970-01-12T12:49:13-07:00", 291 | "text": "R2 is a rusty bucket of bolts! j/k", 292 | "tweetKey": "-K-sgXFJdks9Gomydal0", 293 | "user": { 294 | "email": "C-3PO@hotmail.com", 295 | "key": "-K-sgXF6kcVNbkMTnm8g", 296 | "name": "C-3PO", 297 | "username": "c-3po" 298 | }, 299 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 300 | }, 301 | "-K-sgZ-Nm29yvD0UXX7m": { 302 | "created": "1970-01-10T03:28:44-07:00", 303 | "text": "Just call me Golden Rod", 304 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 305 | "user": { 306 | "email": "C-3PO@hotmail.com", 307 | "key": "-K-sgXF6kcVNbkMTnm8g", 308 | "name": "C-3PO", 309 | "username": "c-3po" 310 | }, 311 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 312 | }, 313 | "-K-sgZ-RDUkU07k4xJ5B": { 314 | "created": "1970-01-13T14:18:22-07:00", 315 | "text": "Beep Beep Boop!", 316 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 317 | "user": { 318 | "email": "R2-D2@hotmail.com", 319 | "key": "-K-sgXFe_iwLRDLrMVf2", 320 | "name": "R2-D2", 321 | "username": "r2-d2" 322 | }, 323 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 324 | }, 325 | "-K-sgZ-VOShfcVL7Pr5E": { 326 | "created": "1970-01-07T10:39:46-07:00", 327 | "text": "Click Whir Beep!", 328 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 329 | "user": { 330 | "email": "R2-D2@hotmail.com", 331 | "key": "-K-sgXFe_iwLRDLrMVf2", 332 | "name": "R2-D2", 333 | "username": "r2-d2" 334 | }, 335 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 336 | }, 337 | "-K-sgZ-X-cSc2WveONWz": { 338 | "created": "1970-01-13T14:17:56-07:00", 339 | "text": "Beep Click Beep!", 340 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 341 | "user": { 342 | "email": "R2-D2@hotmail.com", 343 | "key": "-K-sgXFe_iwLRDLrMVf2", 344 | "name": "R2-D2", 345 | "username": "r2-d2" 346 | }, 347 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 348 | } 349 | }, 350 | "-K-sgXFWAuXU4iN4Uwv-": { 351 | "-K-sgYzWiaOfwL51qf37": { 352 | "created": "1970-01-08T21:56:48-07:00", 353 | "text": "Ugh! My life is going nowhere!", 354 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 355 | "user": { 356 | "email": "Luke-Skywalker@hotmail.com", 357 | "key": "-K-sgXFWAuXU4iN4Uwv-", 358 | "name": "Luke Skywalker", 359 | "username": "luke-skywalker" 360 | }, 361 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 362 | }, 363 | "-K-sgYzch0ggMsRMRcpM": { 364 | "created": "1970-01-17T07:14:06-07:00", 365 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 366 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 367 | "user": { 368 | "email": "Luke-Skywalker@hotmail.com", 369 | "key": "-K-sgXFWAuXU4iN4Uwv-", 370 | "name": "Luke Skywalker", 371 | "username": "luke-skywalker" 372 | }, 373 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 374 | }, 375 | "-K-sgYzfCpRchHB97xMp": { 376 | "created": "1970-01-14T13:05:13-07:00", 377 | "text": "Best thing about two suns? Nothing.", 378 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 379 | "user": { 380 | "email": "Luke-Skywalker@hotmail.com", 381 | "key": "-K-sgXFWAuXU4iN4Uwv-", 382 | "name": "Luke Skywalker", 383 | "username": "luke-skywalker" 384 | }, 385 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 386 | }, 387 | "-K-sgYzsyh9Q-k1w7Ic-": { 388 | "created": "1970-01-01T21:08:28-07:00", 389 | "text": "Are you choking on something?", 390 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 391 | "user": { 392 | "email": "Darth-Vader@hotmail.com", 393 | "key": "-K-sgXFwMdj_CPmLWKpq", 394 | "name": "Darth Vader", 395 | "username": "darth-vader" 396 | }, 397 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 398 | }, 399 | "-K-sgYzvbhE5CYP4I9Cq": { 400 | "created": "1970-01-10T10:50:41-07:00", 401 | "text": "I find your lack of faith disturbing", 402 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 403 | "user": { 404 | "email": "Darth-Vader@hotmail.com", 405 | "key": "-K-sgXFwMdj_CPmLWKpq", 406 | "name": "Darth Vader", 407 | "username": "darth-vader" 408 | }, 409 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 410 | }, 411 | "-K-sgYzy7RPoTEYzzmxE": { 412 | "created": "1970-01-12T01:31:08-07:00", 413 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 414 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 415 | "user": { 416 | "email": "Darth-Vader@hotmail.com", 417 | "key": "-K-sgXFwMdj_CPmLWKpq", 418 | "name": "Darth Vader", 419 | "username": "darth-vader" 420 | }, 421 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 422 | }, 423 | "-K-sgZ-RDUkU07k4xJ5C": { 424 | "created": "1970-01-13T22:05:46-07:00", 425 | "text": "Beep Beep Boop!", 426 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 427 | "user": { 428 | "email": "R2-D2@hotmail.com", 429 | "key": "-K-sgXFe_iwLRDLrMVf2", 430 | "name": "R2-D2", 431 | "username": "r2-d2" 432 | }, 433 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 434 | }, 435 | "-K-sgZ-VOShfcVL7Pr5F": { 436 | "created": "1970-01-06T11:17:00-07:00", 437 | "text": "Click Whir Beep!", 438 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 439 | "user": { 440 | "email": "R2-D2@hotmail.com", 441 | "key": "-K-sgXFe_iwLRDLrMVf2", 442 | "name": "R2-D2", 443 | "username": "r2-d2" 444 | }, 445 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 446 | }, 447 | "-K-sgZ-X-cSc2WveONX-": { 448 | "created": "1970-01-05T06:09:22-07:00", 449 | "text": "Beep Click Beep!", 450 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 451 | "user": { 452 | "email": "R2-D2@hotmail.com", 453 | "key": "-K-sgXFe_iwLRDLrMVf2", 454 | "name": "R2-D2", 455 | "username": "r2-d2" 456 | }, 457 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 458 | } 459 | }, 460 | "-K-sgXFe_iwLRDLrMVf2": { 461 | "-K-sgYzYDQ2Fw0GGcyUd": { 462 | "created": "1970-01-10T07:17:02-07:00", 463 | "text": "Ugh! My life is going nowhere!", 464 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 465 | "user": { 466 | "email": "Luke-Skywalker@hotmail.com", 467 | "key": "-K-sgXFWAuXU4iN4Uwv-", 468 | "name": "Luke Skywalker", 469 | "username": "luke-skywalker" 470 | }, 471 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 472 | }, 473 | "-K-sgYzdh4RqgZ1X8Rmi": { 474 | "created": "1970-01-04T06:46:36-07:00", 475 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 476 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 477 | "user": { 478 | "email": "Luke-Skywalker@hotmail.com", 479 | "key": "-K-sgXFWAuXU4iN4Uwv-", 480 | "name": "Luke Skywalker", 481 | "username": "luke-skywalker" 482 | }, 483 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 484 | }, 485 | "-K-sgYzfCpRchHB97xMq": { 486 | "created": "1970-01-02T07:54:00-07:00", 487 | "text": "Best thing about two suns? Nothing.", 488 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 489 | "user": { 490 | "email": "Luke-Skywalker@hotmail.com", 491 | "key": "-K-sgXFWAuXU4iN4Uwv-", 492 | "name": "Luke Skywalker", 493 | "username": "luke-skywalker" 494 | }, 495 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 496 | }, 497 | "-K-sgZ-AJtZ3i6nT-zRj": { 498 | "created": "1970-01-07T21:17:05-07:00", 499 | "text": "This asteroid may not be entirely stable.", 500 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 501 | "user": { 502 | "email": "C-3PO@hotmail.com", 503 | "key": "-K-sgXF6kcVNbkMTnm8g", 504 | "name": "C-3PO", 505 | "username": "c-3po" 506 | }, 507 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 508 | }, 509 | "-K-sgZ-F5yND7JLMin3d": { 510 | "created": "1970-01-14T16:09:32-07:00", 511 | "text": "R2 is a rusty bucket of bolts! j/k", 512 | "tweetKey": "-K-sgXFJdks9Gomydal0", 513 | "user": { 514 | "email": "C-3PO@hotmail.com", 515 | "key": "-K-sgXF6kcVNbkMTnm8g", 516 | "name": "C-3PO", 517 | "username": "c-3po" 518 | }, 519 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 520 | }, 521 | "-K-sgZ-Nm29yvD0UXX7n": { 522 | "created": "1970-01-04T12:00:51-07:00", 523 | "text": "Just call me Golden Rod", 524 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 525 | "user": { 526 | "email": "C-3PO@hotmail.com", 527 | "key": "-K-sgXF6kcVNbkMTnm8g", 528 | "name": "C-3PO", 529 | "username": "c-3po" 530 | }, 531 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 532 | }, 533 | "-K-sgZ-SMxvYfVtVfLti": { 534 | "created": "1970-01-14T03:03:46-07:00", 535 | "text": "Beep Beep Boop!", 536 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 537 | "user": { 538 | "email": "R2-D2@hotmail.com", 539 | "key": "-K-sgXFe_iwLRDLrMVf2", 540 | "name": "R2-D2", 541 | "username": "r2-d2" 542 | }, 543 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 544 | }, 545 | "-K-sgZ-VOShfcVL7Pr5G": { 546 | "created": "1970-01-04T23:18:30-07:00", 547 | "text": "Click Whir Beep!", 548 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 549 | "user": { 550 | "email": "R2-D2@hotmail.com", 551 | "key": "-K-sgXFe_iwLRDLrMVf2", 552 | "name": "R2-D2", 553 | "username": "r2-d2" 554 | }, 555 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 556 | }, 557 | "-K-sgZ-X-cSc2WveONX0": { 558 | "created": "1970-01-09T19:12:20-07:00", 559 | "text": "Beep Click Beep!", 560 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 561 | "user": { 562 | "email": "R2-D2@hotmail.com", 563 | "key": "-K-sgXFe_iwLRDLrMVf2", 564 | "name": "R2-D2", 565 | "username": "r2-d2" 566 | }, 567 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 568 | } 569 | }, 570 | "-K-sgXFwMdj_CPmLWKpq": { 571 | "-K-sgYzZhvnajRgqp0ka": { 572 | "created": "1970-01-07T09:26:24-07:00", 573 | "text": "Ugh! My life is going nowhere!", 574 | "tweetKey": "-K-sgXFXG3eDCfTdPJNF", 575 | "user": { 576 | "email": "Luke-Skywalker@hotmail.com", 577 | "key": "-K-sgXFWAuXU4iN4Uwv-", 578 | "name": "Luke Skywalker", 579 | "username": "luke-skywalker" 580 | }, 581 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 582 | }, 583 | "-K-sgYzdh4RqgZ1X8Rmj": { 584 | "created": "1970-01-06T22:03:23-07:00", 585 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe.", 586 | "tweetKey": "-K-sgXF_vVrhh4_Rqy62", 587 | "user": { 588 | "email": "Luke-Skywalker@hotmail.com", 589 | "key": "-K-sgXFWAuXU4iN4Uwv-", 590 | "name": "Luke Skywalker", 591 | "username": "luke-skywalker" 592 | }, 593 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 594 | }, 595 | "-K-sgYzgFh-anEtcyg14": { 596 | "created": "1970-01-03T07:44:37-07:00", 597 | "text": "Best thing about two suns? Nothing.", 598 | "tweetKey": "-K-sgXFcn1EJSpbZs0Rs", 599 | "user": { 600 | "email": "Luke-Skywalker@hotmail.com", 601 | "key": "-K-sgXFWAuXU4iN4Uwv-", 602 | "name": "Luke Skywalker", 603 | "username": "luke-skywalker" 604 | }, 605 | "userKey": "-K-sgXFWAuXU4iN4Uwv-" 606 | }, 607 | "-K-sgYzsyh9Q-k1w7Ic0": { 608 | "created": "1970-01-05T10:15:55-07:00", 609 | "text": "Are you choking on something?", 610 | "tweetKey": "-K-sgXFwMdj_CPmLWKpr", 611 | "user": { 612 | "email": "Darth-Vader@hotmail.com", 613 | "key": "-K-sgXFwMdj_CPmLWKpq", 614 | "name": "Darth Vader", 615 | "username": "darth-vader" 616 | }, 617 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 618 | }, 619 | "-K-sgYzvbhE5CYP4I9Cr": { 620 | "created": "1970-01-04T11:47:16-07:00", 621 | "text": "I find your lack of faith disturbing", 622 | "tweetKey": "-K-sgXFyn3KRlE6pXxdG", 623 | "user": { 624 | "email": "Darth-Vader@hotmail.com", 625 | "key": "-K-sgXFwMdj_CPmLWKpq", 626 | "name": "Darth Vader", 627 | "username": "darth-vader" 628 | }, 629 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 630 | }, 631 | "-K-sgYzzlCXfsN605Mv6": { 632 | "created": "1970-01-02T23:26:10-07:00", 633 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?", 634 | "tweetKey": "-K-sgXG-uXrEifYx1Q1O", 635 | "user": { 636 | "email": "Darth-Vader@hotmail.com", 637 | "key": "-K-sgXFwMdj_CPmLWKpq", 638 | "name": "Darth Vader", 639 | "username": "darth-vader" 640 | }, 641 | "userKey": "-K-sgXFwMdj_CPmLWKpq" 642 | }, 643 | "-K-sgZ-B5YOWo6sijMa5": { 644 | "created": "1970-01-02T23:55:32-07:00", 645 | "text": "This asteroid may not be entirely stable.", 646 | "tweetKey": "-K-sgXF7SQ_R5n1_F-Lv", 647 | "user": { 648 | "email": "C-3PO@hotmail.com", 649 | "key": "-K-sgXF6kcVNbkMTnm8g", 650 | "name": "C-3PO", 651 | "username": "c-3po" 652 | }, 653 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 654 | }, 655 | "-K-sgZ-InBOu-B9Xm846": { 656 | "created": "1970-01-06T06:42:09-07:00", 657 | "text": "R2 is a rusty bucket of bolts! j/k", 658 | "tweetKey": "-K-sgXFJdks9Gomydal0", 659 | "user": { 660 | "email": "C-3PO@hotmail.com", 661 | "key": "-K-sgXF6kcVNbkMTnm8g", 662 | "name": "C-3PO", 663 | "username": "c-3po" 664 | }, 665 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 666 | }, 667 | "-K-sgZ-O1njF2cZbzB6F": { 668 | "created": "1970-01-01T13:57:55-07:00", 669 | "text": "Just call me Golden Rod", 670 | "tweetKey": "-K-sgXFMwFyoV1vfxawd", 671 | "user": { 672 | "email": "C-3PO@hotmail.com", 673 | "key": "-K-sgXF6kcVNbkMTnm8g", 674 | "name": "C-3PO", 675 | "username": "c-3po" 676 | }, 677 | "userKey": "-K-sgXF6kcVNbkMTnm8g" 678 | }, 679 | "-K-sgZ-SMxvYfVtVfLtj": { 680 | "created": "1970-01-06T11:00:59-07:00", 681 | "text": "Beep Beep Boop!", 682 | "tweetKey": "-K-sgXFhA6ngWY_NUSBq", 683 | "user": { 684 | "email": "R2-D2@hotmail.com", 685 | "key": "-K-sgXFe_iwLRDLrMVf2", 686 | "name": "R2-D2", 687 | "username": "r2-d2" 688 | }, 689 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 690 | }, 691 | "-K-sgZ-WV3TTMVt-yHQj": { 692 | "created": "1970-01-11T08:26:43-07:00", 693 | "text": "Click Whir Beep!", 694 | "tweetKey": "-K-sgXFkvlDwnd0cdFQT", 695 | "user": { 696 | "email": "R2-D2@hotmail.com", 697 | "key": "-K-sgXFe_iwLRDLrMVf2", 698 | "name": "R2-D2", 699 | "username": "r2-d2" 700 | }, 701 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 702 | }, 703 | "-K-sgZ-YpkKequlDeah-": { 704 | "created": "1970-01-03T03:39:01-07:00", 705 | "text": "Beep Click Beep!", 706 | "tweetKey": "-K-sgXFpCeDcc37btCc0", 707 | "user": { 708 | "email": "R2-D2@hotmail.com", 709 | "key": "-K-sgXFe_iwLRDLrMVf2", 710 | "name": "R2-D2", 711 | "username": "r2-d2" 712 | }, 713 | "userKey": "-K-sgXFe_iwLRDLrMVf2" 714 | } 715 | } 716 | }, 717 | "tweets": { 718 | "-K-sgXF6kcVNbkMTnm8g": { 719 | "-K-sgXF7SQ_R5n1_F-Lv": { 720 | "created": "1970-01-08T20:02:00-07:00", 721 | "fannedOut": true, 722 | "text": "This asteroid may not be entirely stable." 723 | }, 724 | "-K-sgXFJdks9Gomydal0": { 725 | "created": "1970-01-08T15:46:23-07:00", 726 | "fannedOut": true, 727 | "text": "R2 is a rusty bucket of bolts! j/k" 728 | }, 729 | "-K-sgXFMwFyoV1vfxawd": { 730 | "created": "1970-01-07T02:43:46-07:00", 731 | "fannedOut": true, 732 | "text": "Just call me Golden Rod" 733 | } 734 | }, 735 | "-K-sgXFWAuXU4iN4Uwv-": { 736 | "-K-sgXFXG3eDCfTdPJNF": { 737 | "created": "1970-01-10T22:16:21-07:00", 738 | "fannedOut": true, 739 | "text": "Ugh! My life is going nowhere!" 740 | }, 741 | "-K-sgXF_vVrhh4_Rqy62": { 742 | "created": "1970-01-13T15:16:09-07:00", 743 | "fannedOut": true, 744 | "text": "Hey @Biggs, let's go shoot womp rats. I'll tell my uncle that we're picking up power converters, hehe." 745 | }, 746 | "-K-sgXFcn1EJSpbZs0Rs": { 747 | "created": "1970-01-03T02:55:53-07:00", 748 | "fannedOut": true, 749 | "text": "Best thing about two suns? Nothing." 750 | } 751 | }, 752 | "-K-sgXFe_iwLRDLrMVf2": { 753 | "-K-sgXFhA6ngWY_NUSBq": { 754 | "created": "1970-01-03T16:19:43-07:00", 755 | "fannedOut": true, 756 | "text": "Beep Beep Boop!" 757 | }, 758 | "-K-sgXFkvlDwnd0cdFQT": { 759 | "created": "1970-01-05T11:36:27-07:00", 760 | "fannedOut": true, 761 | "text": "Click Whir Beep!" 762 | }, 763 | "-K-sgXFpCeDcc37btCc0": { 764 | "created": "1970-01-07T02:13:35-07:00", 765 | "fannedOut": true, 766 | "text": "Beep Click Beep!" 767 | } 768 | }, 769 | "-K-sgXFwMdj_CPmLWKpq": { 770 | "-K-sgXFwMdj_CPmLWKpr": { 771 | "created": "1970-01-05T03:20:02-07:00", 772 | "fannedOut": true, 773 | "text": "Are you choking on something?" 774 | }, 775 | "-K-sgXFyn3KRlE6pXxdG": { 776 | "created": "1970-01-14T15:14:25-07:00", 777 | "fannedOut": true, 778 | "text": "I find your lack of faith disturbing" 779 | }, 780 | "-K-sgXG-uXrEifYx1Q1O": { 781 | "created": "1970-01-02T18:07:31-07:00", 782 | "fannedOut": true, 783 | "text": "Found a lost puppy. Home is the hidden rebel base. Anyone know where that is?" 784 | } 785 | } 786 | } 787 | }, 788 | "users": { 789 | "-K-sgXF6kcVNbkMTnm8g": { 790 | "email": "C-3PO@hotmail.com", 791 | "mass": 75, 792 | "name": "C-3PO", 793 | "skin_color": "gold", 794 | "tweetCount": 3, 795 | "username": "c-3po" 796 | }, 797 | "-K-sgXFWAuXU4iN4Uwv-": { 798 | "email": "Luke-Skywalker@hotmail.com", 799 | "mass": 77, 800 | "name": "Luke Skywalker", 801 | "skin_color": "fair", 802 | "tweetCount": 2, 803 | "username": "luke-skywalker" 804 | }, 805 | "-K-sgXFe_iwLRDLrMVf2": { 806 | "email": "R2-D2@hotmail.com", 807 | "mass": 32, 808 | "name": "R2-D2", 809 | "skin_color": "white, blue", 810 | "tweetCount": 2, 811 | "username": "r2-d2" 812 | }, 813 | "-K-sgXFwMdj_CPmLWKpq": { 814 | "email": "Darth-Vader@hotmail.com", 815 | "mass": 136, 816 | "name": "Darth Vader", 817 | "skin_color": "white", 818 | "tweetCount": 2, 819 | "username": "darth-vader" 820 | } 821 | } 822 | } 823 | -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- 1 | ###Firebase Fundamentals Course Repository 2 | 3 | This course is out of date. It is built against Firebase v2. Firebase v3 is now released. There are some changes especially regarding authentication, although all of the data access API's are essentially unchanged, so most of the course is still up to date. 4 | --------------------------------------------------------------------------------