This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ingy döt Net | |
email: [email protected] | |
github: https://github.com/ingydotnet | |
matrix: https://matrix.to/#/@ingy:yaml.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo O HAI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
die() { echo "$*"; exit 1; } | |
main() { | |
program=$0 | |
[[ $# -ge 2 ]] || | |
die "usage: $program <watch-file> <command> [<command-args>]" | |
file=${1:?first arg must be file path}; shift |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From: https://groups.yahoo.com/neo/groups/sml-dev/conversations/messages/4729 | |
On Sun, May 13, 2001 at 03:39:53PM -0000, jimfl@... wrote: | |
| This looks very similar to the format of the Perl module | |
Data::Denter | |
| (by Brian Ingerson) for which there is already a fine parser | |
available | |
| (in perl, of course). | |
Thank you so much for taking the time to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env testml v0.2.0 | |
*in-yaml.parse.to-event == *test-event | |
*in-yaml.load.dump == *out-yaml | |
*in-yaml.load.to-json == *in-json.load-json.to-json | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fri May 27 20:28:35 UTC 2016 |
I suggest we call our "Getting YAML Moving Forward" project "yaml-io" or "yio" for short. I own yaml.io domain and we can use that for public facing things. I also got the https://github.com/organizations/yamlio/ org. Let's use yamlio as a staging area for the yaml org.
I think that we need to simultaneously:
- Do stuff (create doc, tests, websites, implementations)
- Get more and more people involved
Here is a list of first steps that we could start on to get yio moving forward:
- Add to the test suite for 1.2, 1.3 and 2.0 tests (tag the tests appropriately)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm b/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
index 56ca853..a1f4246 100644 | |
--- a/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
+++ b/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
@@ -261,6 +261,7 @@ sub dynamic_completion { | |
my $name = $p->name; | |
my $def = $p->completion; | |
my $command = $def->{command}; | |
+ my $command_string = $def->{command_string}; | |
my $op = $def->{op}; |
- Start a fresh Ubuntu container:
docker run -it ubuntu bash
- Inside the container:
apt-get update
apt-get install figlet
- Detach from container:
<ctl-p> <ctl-q>
- Get the container id:
docker ps
- Save the container as an image:
docker commit $container_id my-image
- Test the new image:
docker run my-image figlet hello
NewerOlder