Skip to content

Instantly share code, notes, and snippets.

@marcogrcr
marcogrcr / yarn-lock-duplicates.mjs
Created March 10, 2025 14:12
Gets duplicate packages in a yarn.lock file
import("node:fs")
.then(({ readFileSync, writeFileSync }) => {
const packages = new Map();
const output = [];
readFileSync("yarn.lock")
.toString()
.split("\n")
.forEach((l) => {
if (l[0] === '"') {
const [pkg] = l.split("@npm:");
@marcogrcr
marcogrcr / foreach-line.sh
Created December 17, 2024 15:59
Executes code for each line of a file
#!/bin/sh
# we use a heredoc for inliling the lines in the script, but they can be obtained from a file as well
# IMPORTANT: heredocs MUST use tabs, they cannot use space indentation
LINES=$(
cat <<- EOF
line1
line2
line3
EOF
@marcogrcr
marcogrcr / my-module.test.ts
Created December 4, 2024 16:19
Vitest mocking basics
import {
afterEach,
beforeEach,
expect,
it,
MockedClass,
MockedFunction,
vi,
} from "vitest";
@marcogrcr
marcogrcr / 1-aws-lambda-http-event-comparison.md
Last active November 28, 2024 02:10
AWS Lambda HTTP event comparison

AWS Lambda HTTP event comparison

AWS Lambda allows to create HTTP APIs fronted by API Gateway ([REST] and [HTTP]) and [ALB] (Application Load Balancer) endpoints. However, the input events vary depending on the endpoint. In order to write code that is compatible with all endpoint, certain differences need to be accounted for.

Methodology

The following endpoint configuration was applied to each endpoint type:

@marcogrcr
marcogrcr / localstack-ddb-table.sh
Created November 7, 2024 13:35
Create a DynamoDB table using localstack
#!/bin/sh
set -eu
echo 'Initializing test DynamoDB table...'
# https://docs.localstack.cloud/getting-started/installation/#docker
IMAGE=$(docker run \
--rm -d \
-p 127.0.0.1:4566:4566 \
@marcogrcr
marcogrcr / string-builder.ts
Last active October 31, 2024 14:48
TypeScript StringBuilder
/**
* A memory efficient string concatenation builder.
* @example
* const builder = new StringBuilder();
* builder.append("Hello");
* builder.append(", world!");
*
* // if you need the string
* const str = builder.toString();
*
@marcogrcr
marcogrcr / recursive-for-each-file.sh
Created July 19, 2024 15:31
A POSIX-compatible recursive iteration over each file
#!/bin/sh
folder_path='...'
file_types='*.json'
# See https://www.shellcheck.net/wiki/SC2044 for why we loop this way
find "$folder_path" ! -name "$(printf "*\n*")" -name "$file_types" | while IFS= read -r file
do
echo "Processing $file..."
# process $file
@marcogrcr
marcogrcr / diff-between-two-dates.js
Last active June 26, 2024 13:21
Gets the difference between two dates and a timeline of a series of dates
export function diffBetweenTwoDates(start, end) {
const startTime = new Date(start).valueOf();
const endTime = new Date(end).valueOf();
if (Number.isNaN(startTime)) throw new Error("Invalid start date");
if (Number.isNaN(endTime)) throw new Error("Invalid end date");
const fmt = (value, len = 2) => value.toString().padStart(len, "0");
const diff = new Date(endTime - startTime);
const diffNoTime = `${fmt(diff.getUTCFullYear(), 4)}-${fmt(diff.getUTCMonth() + 1)}-${fmt(diff.getUTCDate())}T00:00:00Z`;
@marcogrcr
marcogrcr / print-element-attributes.js
Created May 28, 2024 18:25
Print element attributes
((selector) => Array
.from(document.querySelectorAll(selector))
.map(x => Array
.from(Array(x.attributes.length).keys())
.reduce((o, i) => ({ [x.attributes.item(i).name]: x.attributes.item(i).value, ...o }), {})
)
)('meta')
@marcogrcr
marcogrcr / echo-server.ts
Last active April 3, 2025 22:46
A simple node.js HTTP/1.1 server that echoes back the request
import { createServer } from "node:http";
export interface CreateEchoServerInput {
/**
* Indicates the echo mode.
* - `"body"` creates a response controlled by the request body with an {@link EchoBody} shape.
* - `"request"` echoes the request headers and body.
* - `"request-in-body"` echo the request in a JSON object in the response body.
* @default "request"
*/