Skip to content

Instantly share code, notes, and snippets.

@erichelgeson
erichelgeson / Grails 3.3.3 Upgrade Notes.md
Last active June 6, 2018 21:33
Grails 3.3.x Upgrade Notes

3.3.3 - Current

  • 3.3.0- 07/26/2017
  • 3.3.0.RC1 - Current release 06/26/2017
  • 3.3.0.M2 - Current release 05/30/2017
  • 3.3.0.M1 - Released 05/09/2017

Please fork or leave a comment on this gist to add any other issues or notes you've encountered when upgrading to 3.3.

Documentation

@singledigit
singledigit / cognito.yaml
Last active December 11, 2024 10:03
Create a Cognito Authentication Backend via CloudFormation
AWSTemplateFormatVersion: '2010-09-09'
Description: Cognito Stack
Parameters:
AuthName:
Type: String
Description: Unique Auth Name for Cognito Resources
Resources:
# Creates a role that allows Cognito to send SNS messages
SNSRole:
@materkel
materkel / fb-app-secret-proof.js
Last active September 7, 2021 11:27
create facebook appsecret proof in NodeJS
const crypto = require('crypto');
let accessToken = 'your fb accesstoken' || 'facebookClientId' + '|' + 'facebookClientSecret'
let clientSecret = 'your fb client secret'
let appsecret_proof: crypto.createHmac('sha256', clientSecret).update(accessToken).digest('hex')