- Install mongoose -
npm install mongoose
- Create connection in
app.js
using your db credentials
// app.js
const mongoose = require('mongoose');
mongoose
type: gauge | |
entity: sensor.mcu5_pressure | |
needle: true | |
min: 975 | |
max: 1045 | |
segments: | |
- from: 975 | |
color: "#db4437" | |
label: Rain | |
- from: 995 |
# Install unzip | |
sudo apt-get install unzip | |
# Install openvpn | |
sudo apt-get install openvpn | |
# Download and unzip config files from NordVPN | |
cd /etc/openvpn | |
sudo wget https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip | |
sudo unzip ovpn.zip |
gpg --import publickey.asc | |
gpg --verify filePGPSignature.asc filename |
// Get completed tickets where a user changed the status to REVIEW (i.e. completed tickets by a given user) | |
project = XXX AND status was "To Do" AND status = Done AND status changed TO REVIEW BY 62cbffb38afb5805e5d3b51a |
const file = fs.readFileSync(path.join(__dirname, 'sample.pdf'), { encoding: 'base64' }) | |
fs.writeFileSync('path/to/where/file/will/be/saved', file, 'base64') |
const fs = require('fs/promises'); | |
const express = require('express'); | |
const morgan = require('morgan'); | |
const cors = require('cors'); | |
const createError = require('http-errors'); | |
const bodyParser = require('body-parser'); | |
const { initializeApp } = require('firebase/app'); | |
const { | |
getStorage, | |
ref, |
const express = require('express'); | |
const morgan = require('morgan'); | |
const cors = require('cors'); | |
const createError = require('http-errors'); | |
const bodyParser = require('body-parser'); | |
const { initializeApp } = require('firebase/app'); | |
const { | |
getStorage, | |
ref, | |
uploadBytes, |
git rebase --interactive 'bbc643cd^' #include carret ^ at the end to rebase to the commit before the one to edit | |
# In the default editor, modify pick to edit in the line mentioning 'bbc643cd'. | |
# Rebase will stop at the requested commit, i.e. bbc643cd | |
# Make and stage changes | |
git commit --amend # or git commit --amend -m "an updated commit message" if you want to change message too | |
git rebase --continue # this will apply the rest of the commits and bring you to HEAD | |
# WARNING: Note that this will change the SHA-1 of that commit as well as all children | |
# https://stackoverflow.com/questions/1186535/how-to-modify-a-specified-commit |