Skip to content

Instantly share code, notes, and snippets.

View devilelephant's full-sized avatar

George Coller devilelephant

  • Minneapolis, MN
View GitHub Profile
@devilelephant
devilelephant / next.config.mjs
Last active April 30, 2024 19:57
Next.js 14 MDX fix when running --turbo dev server
import nextMDX from "@next/mdx";
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ["js", "jsx", "ts", "tsx", "mdx"],
experimental: {
mdxRs: true
},
};
const withMDX = nextMDX({
@devilelephant
devilelephant / BeatBuddyWorldPercussionMidiChart.tsv
Created February 17, 2018 23:58
Beat Buddy World Percussion Midi Chart
Midi Note Note Name
85 C#5 Bongo Low - palm
84 C5 Bongo Low - closed slap
82 A#4 Shaker
75 D#4 Clave
59 B2 Splash2
57 A2 Hand Crash 2
56 G#2 Cowbell
55 G2 Splash 1
54 F#2 Tambourine
@devilelephant
devilelephant / gist:6554529
Created September 13, 2013 18:48
Groovy XML Markup Builder Tricks: CDATA, declaration, comments
def out = new StringWriter()
def xml = new groovy.xml.MarkupBuilder(out)
// MarkupBuilder gives us an instance of MarkupBuilderHelper named 'mkp'
// MarkupBuilderHelper has several helpful methods
xml.mkp.xmlDeclaration(version: "1.0", encoding: "utf-8")
xml.example {
a {
b {
mkp.comment('a comment')
@devilelephant
devilelephant / README.md
Last active July 5, 2023 20:33
Protect Branches With GH

Script Branch Protection for Github

Display current protection rules for "main"

gh api repos/:owner/:repo/branches/main/protection

Add branch protection

@devilelephant
devilelephant / README.md
Created June 19, 2023 15:06
Create self-signed StirShaken Certificates for unit testing
@devilelephant
devilelephant / Dockerfile
Last active August 26, 2022 21:54
Multipart Dockerfile to download Open Policy Agent into an AWS Lambda
# Pull latest static opa executable image
FROM openpolicyagent/opa:latest-static AS opa-stage
# Start lambda image
FROM public.ecr.aws/lambda/java:11
ARG OPA_INSTALL_PATH=${LAMBDA_TASK_ROOT}/opa
ARG OPA_EXECUTABLE_PATH=${OPA_INSTALL_PATH}/opa
COPY --from=opa-stage /opa ${OPA_INSTALL_PATH}/
@devilelephant
devilelephant / AWS4Signer.groovy
Last active October 21, 2019 08:24
Java/Groovy example of using Amazon AWS AWS4Signer class to sign requests (in our case elasticsearch calls)
package com.clario.aws
import com.amazonaws.DefaultRequest
import com.amazonaws.SignableRequest
import com.amazonaws.auth.AWS4Signer
import com.amazonaws.auth.AWSCredentialsProvider
import com.amazonaws.http.HttpMethodName
import groovy.util.logging.Slf4j
import org.apache.http.client.utils.URLEncodedUtils
import org.springframework.http.HttpHeaders
@devilelephant
devilelephant / google-cloud-env-creds.js
Created March 20, 2019 21:59
Google Cloud Environment Credentials
// Configure Google Cloud library with JSON credentials in an environment variable
const
os = require('os'),
fs = require('fs')
;
exports.configureGoogleCloud = function (isWarnOnly) {
// if standard GOOGLE_APPLICATION_CREDENTIALS is set then use that
if (!process.env['GOOGLE_APPLICATION_CREDENTIALS']) {
@devilelephant
devilelephant / README.md
Last active April 17, 2018 19:24
Json Tranform Lambda

JsonTransform

Transform Json Input

function input

Use a Pass type Step Function to merge a script under the field name "transformScript into the input JSON.

"Inject Update Status and Updated": {
 "Type": "Pass",
@devilelephant
devilelephant / gist:6554811
Created September 13, 2013 19:12
An easy way to do Unix piping when executing Unix commands from Java or Groovy In unix you can issue a command like: sh -c 'ls -l | sort" which is calling the 'sh' shell with a command and returning the result. I wrote the example in groovy but the trick works with Runtime.exec(String[] cmd) as well.
def cmd = ['sh', '-c', 'ls -l | sort']
def p = cmd.execute()
println p.text
// Java would be something like
// String[] cmd = { "sh", "-c", "ls -l | sort" };
// Process p = Runtime.getRuntime().exec(cmd);
// ...