Skip to content

Instantly share code, notes, and snippets.

@lobbin
lobbin / formatJson.js
Created December 8, 2022 12:24
Mimic npm 6 --parseable with npm 8 json output
// npm audit --json | node formatJson.js
const fs = require('fs');
function findDependencyPath(json, moduleName) {
if (!json.vulnerabilities[moduleName].isDirect
&& json.vulnerabilities[moduleName].effects.length) {
return `${findDependencyPath(json, json.vulnerabilities[moduleName].effects[0])}>${moduleName}`
}
return moduleName;
}
@lobbin
lobbin / gist:73b50555beffb362b31fd536f476d67d
Created May 30, 2022 15:23
Export AWS Timestream table to JSON/CSV
Create S3 Bucket
Create Kinesis Stream
Create Kinesis Firehose DeliveryStream
Connect to Kinesis Stream
Deliver to S3 Bucket
Process with timestream-transformer
s3-ftp-uploader (lambda):
events: using event bridge "Object Created" on above bucket
main:
# NOTE: You also need to a service connection under project settings.
# Server Url: http://localhost:9000
# Token: Anything (will be replaced further down)
#
# In <FIXME:uuid> below, add the uuid of the added service connection.
# There's also <Name>, <Org> and <Project> to be replaced.
#
# NOTE: A lot of things bearing when running this in a PR pipeline.
# Especially publishing and reporting.
#