Skip to content

Instantly share code, notes, and snippets.

View HQarroum's full-sized avatar
:octocat:

Halim Qarroum HQarroum

:octocat:
View GitHub Profile
@magnetikonline
magnetikonline / README.md
Last active September 25, 2023 13:57
AWS CloudFormation YAML template - appending to list parameter types.

AWS CloudFormation YAML template - appending to list parameter types

Documenting this here, as I often forget (what I have found) is the best way to do this at the moment.

For example, you have a list of two existing security groups given to a stack and wish to create (and use) a third - attaching all to an ALB:

AWSTemplateFormatVersion: '2010-09-09'
Description: Example template
@erossignon
erossignon / server_with_40000_variables.js
Last active June 19, 2018 09:04
Performance node-opcua with 40000 variables nodes
/* eslint no-process-exit: 0 */
"use strict";
Error.stackTraceLimit = Infinity;
var argv = require('yargs')
.wrap(132)
.string("port")
.describe("port")
.alias('p', 'port')
.argv;