Skip to content

Instantly share code, notes, and snippets.

View jamengual's full-sized avatar
🎯
Focusing in life after 40

PePe Amengual jamengual

🎯
Focusing in life after 40
View GitHub Profile
@jamengual
jamengual / acc.js
Created July 3, 2025 20:18 — forked from davenicoll/acc.js
Workday training accelerator
// Storyline-Compatible Video Skipper
(function() {
'use strict';
function debugLog(message, data = null) {
console.log(`[STORYLINE SKIPPER] ${message}`, data || '');
}
// Function to skip video using Storyline-compatible methods
function skipCurrentVideo() {
@jamengual
jamengual / cleanup_many_terraform_locks.md
Created January 13, 2022 18:30 — forked from jim80net/cleanup_many_terraform_locks.md
Accidentally abort a large terragrunt run?

Oops, now you've got a bunch of locked modules. Here's a brute force method to remove every lock from dynamodb. Use this with caution.

Lets say your terraform is configured like this:

terraform {
  required_version = "= 1.0.8"

  required_providers {
    aws = {