Skip to content

Instantly share code, notes, and snippets.

@stoned
stoned / I🦋Raku.png
Last active January 18, 2021 12:28
I 🦋 Raku
I🦋Raku.png
@stoned
stoned / doc.jsonnet
Last active June 20, 2018 21:03
ansible jsonnet lookup plugin with native callback to render jinja2 expression
{
person1: {
name: "Alice",
welcome: "Hello " + self.name + "!",
},
person2: self.person1 { name: "Bob" },
person3: self.person1 {
name: std.native("ansible_expr")("ansible_hostname"),
two: 1 + 1,
jinja_two: std.parseInt(std.native("ansible_expr")("{{ 1 + 1 }}")),