Skip to content

Instantly share code, notes, and snippets.

View daaru00's full-sized avatar
🐢

Fabio Gollinucci daaru00

🐢
View GitHub Profile
@daaru00
daaru00 / abstract.js
Last active February 13, 2021 15:32
DynamoDB model helper (with promise wrapper)
const DynamoDB = require('aws-sdk/clients/dynamodb')
const documentClient = new DynamoDB.DocumentClient({
apiVersion: '2012-08-10',
// logger: console
})
module.exports = class Model {
/**
* Model constructor
@daaru00
daaru00 / authorizer.js
Last active July 12, 2023 12:45
Lambda authorizer to check OAuth2 authorization token
const https = require('https');
const jose = require('node-jose');
const region = process.env.COGNITO_REGION;
const userpool_id = process.env.COGNITO_USER_POOL_ID;
const app_client_id = process.env.COGNITO_CLIENT_ID;
const keys_url = 'https://cognito-idp.' + region + '.amazonaws.com/' + userpool_id + '/.well-known/jwks.json';
/**
* Lambda handler
@daaru00
daaru00 / opcache-clean.sh
Last active December 15, 2023 04:10
Reset PHP OPcache cache from command line
#!/bin/bash
WEBDIR=/var/www/html/
RANDOM_NAME=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13)
echo "<?php opcache_reset(); ?>" > ${WEBDIR}${RANDOM_NAME}.php
curl http://localhost/${RANDOM_NAME}.php
rm ${WEBDIR}${RANDOM_NAME}.php
echo "cache reset"