My Ubuntu 18.04 system is locking up every few minutes as described in this AskUbuntu question. This gist serves to upload various diagnostics.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "website-gatsby", | |
"version": "1.0.0", | |
"lockfileVersion": 1, | |
"requires": true, | |
"dependencies": { | |
"@apollo/react-common": { | |
"version": "3.1.4", | |
"resolved": "https://registry.npmjs.org/@apollo/react-common/-/react-common-3.1.4.tgz", | |
"integrity": "sha512-X5Kyro73bthWSCBJUC5XYQqMnG0dLWuDZmVkzog9dynovhfiVCV4kPSdgSIkqnb++cwCzOVuQ4rDKVwo2XRzQA==", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { initializeApp, cert } from 'npm:firebase-admin/app'; | |
import { getFirestore } from 'npm:firebase-admin/firestore'; | |
const serviceAccount = 'service-account-key.json'; | |
initializeApp({ credential: cert(serviceAccount) }); | |
export const db = getFirestore('nonexistent'); | |
await db.recursiveDelete(db.collection('docs')); |
OlderNewer