Skip to content

Instantly share code, notes, and snippets.

@markgarrigan
markgarrigan / ldif_to_json.sh
Last active March 27, 2024 19:23
LDAP LDIF to JSON
#!/bin/bash
# Check if an LDIF file was provided
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <ldif_file>"
exit 1
fi
ldif_file=$1
@markgarrigan
markgarrigan / netlify-sse.js
Last active May 26, 2023 19:55
Netlify Edge Function for SSE
export default function sse({ path, body }) {
let timerId;
const response = new ReadableStream({
start(controller) {
timerId = setInterval(() => {
const msg = new TextEncoder().encode(
`data: hello at ${new Date().toUTCString()}\r\n\r\n`,
);
controller.enqueue(msg);
}, 1000);
@markgarrigan
markgarrigan / deepDiff.js
Last active December 30, 2022 05:37
Deep diff of javascript object.
// Not really needed. Just used for logging the FULL diff in the console
const util = require('util')
// Set up the diffs object
let diffs
function compare(item1, item2, diffRef = diffs, key) {
// Make sure we have a key
if (!key && key !== 0) {
@markgarrigan
markgarrigan / dots.js
Created November 1, 2021 18:31
Convert dot notation keys to object keys
const util = require('util')
const obj = {
"city": "De Pere",
"foo.hoo": "loo",
"foo.bar.name": "mark",
"foo.bar.age": 10,
"foo.bar.color": "larry",
"foo.bar.house.number": 523,
}
@markgarrigan
markgarrigan / nginx.conf
Created June 3, 2020 15:33
nginx config file
## user user; ## <- delete this line
worker_processes 1;
error_log /var/log/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
@markgarrigan
markgarrigan / .gitignore
Created May 19, 2020 12:45
Riot starter files.
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream {{name}} {
server {{name}};
}
upstream websocket {
version: '3.7'
services:
nginx:
image: nginx:latest
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf:ro
ports:
- 80:80
{{name}}:
#!/bin/bash
PATH=./node_modules/.bin:$PATH
function dockup {
temp=${temp:-tmp}
builder="node.docker-compose.builder.tpl.yml"
compose="node.docker-compose.tpl.yml"
builderOut="docker-compose.builder.yml"
composeOut="docker-compose.yml"
image=${image:-node:12.16.2}