I hereby claim:
- I am bdelacretaz on github.
- I am bdelacretaz (https://keybase.io/bdelacretaz) on keybase.
- I have a public key whose fingerprint is 5EFF 2565 85AC 5FB6 07F6 D46A 77B6 B69A 9E4D CC6B
To claim this, I am signing this object:
ndex: testing/sling-pax-util/src/test/java/org/apache/sling/paxexam/util/SlingSetupTest.java | |
=================================================================== | |
--- testing/sling-pax-util/src/test/java/org/apache/sling/paxexam/util/SlingSetupTest.java (revision 1636322) | |
+++ testing/sling-pax-util/src/test/java/org/apache/sling/paxexam/util/SlingSetupTest.java (working copy) | |
@@ -16,6 +16,8 @@ | |
*/ | |
package org.apache.sling.paxexam.util; | |
+import static org.ops4j.pax.exam.CoreOptions.bundle; | |
+ |
$ curl http://localhost:8000/works.txt | |
ok works | |
$ export IP=$(boot2docker ssh "set | grep SSH_CLIENT" | cut -d"'" -f2 | cut -d" " -f1) | |
$ docker run -e HOST_MAC=$IP busybox sh -c 'wget -q -O - http://$HOST_MAC:8000/works.txt' | |
ok works |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# colorize log files using ack - by @alexkli | |
# based on http://powdahound.com/2009/10/colorize-log-output-with-ack | |
cat - \ | |
| ack --flush --passthru --color --color-match=red "^.*\*ERROR\*.*" \ | |
| ack --flush --passthru --color --color-match=yellow "^.*\*WARN\*.*" \ | |
| ack --flush --passthru --color --color-match=green "^.*\*INFO\*.*" \ | |
| ack --flush --passthru --color --color-match=white "^.*\*DEBUG\*.*" \ | |
| ack --flush --passthru --color --color-match=white "^.*\*TRACE\*.*" |
// WHAT'S THIS? | |
// | |
// This is a Stanbol/Groovy/Camel proof of concept: the goal is | |
// to define Stanbol content enhancement chains as flowchart-like | |
// structures from a script language. Intermediate results (as | |
// the detected language in this example) can be used to route | |
// the content being analyzed to different paths in the flowchart. | |
// | |
// Apache Camel is used as the flowchart execution engine. | |
// |