Skip to content

Instantly share code, notes, and snippets.

@willmerae
willmerae / yaml_ordered.py
Last active October 24, 2021 21:38
Ansible inventory plugin that preserves the order of hosts in a host group
# Copyright (c) 2017 Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
import os
from collections import MutableMapping
from yaml.nodes import MappingNode
@willmerae
willmerae / invalid.json
Created January 19, 2023 12:39
Extremely bare bones JSONDecodeError snippet renderer
{
"foo": [
1,
2,
3,
]
}