I hereby claim:
- I am ctran on github.
- I am ctran (https://keybase.io/ctran) on keybase.
- I have a public key whose fingerprint is B4D2 611F 2E8A CE1F F0E6 F498 5B6A 73FB FEB3 75DA
To claim this, I am signing this object:
| import Text (..) | |
| type alias Peg = String | |
| type alias Move = (Peg, Peg) | |
| hanoi: Int -> Peg -> Peg -> Peg -> List Move | |
| hanoi n a b c = | |
| if n == 0 then [] | |
| else | |
| let |
I hereby claim:
To claim this, I am signing this object:
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define CHUNK (128 * 1024) | |
| void usage(const char *prog, FILE *out) | |
| { | |
| fprintf(out, "usage: %s allocsize\n", prog); | |
| fprintf(out, " allocsize is kbytes, or number[KMGP] (P = pages)\n"); |
| import jenkins.model.* | |
| import hudson.remoting.Launcher | |
| import hudson.slaves.SlaveComputer | |
| def expectedVersion = Launcher.VERSION | |
| for (computer in Jenkins.instance.getComputers()) { | |
| if (! (computer instanceof SlaveComputer)) continue | |
| if (!computer.getChannel()) continue | |
| def version = computer.getSlaveVersion() |
| on run | |
| tell application "Finder" | |
| if selection is {} then | |
| set finderSelection to folder of the front window as string | |
| else | |
| set finderSelection to selection as alias list | |
| end if | |
| end tell | |
| subl(finderSelection) |
| @App({ | |
| providers: [GlobalService], // constructed once | |
| config: {} | |
| }) | |
| class MyApp { | |
| } |
| configurations { | |
| mavenEmbedder | |
| } | |
| dependencies { | |
| compile "org.apache.maven:maven-core:$mavenVersion" | |
| compile "org.apache.maven:maven-plugin-api:$mavenVersion" | |
| compile 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.4' | |
| mavenEmbedder "org.apache.maven:maven-embedder:$mavenVersion" |
| node { | |
| // https://registry.hub.docker.com/_/maven/ | |
| def maven32 = docker.image('maven:3.2-jdk-7-onbuild'); | |
| stage 'Mirror' | |
| // First make sure the slave has this image. | |
| // (If you could set your registry below to mirror Docker Hub, | |
| // this would be unnecessary as maven32.inside would pull the image.) | |
| maven32.pull() | |
| // We are pushing to a private secure docker registry in this demo. |
I hereby claim:
To claim this, I am signing this object:
Example:
Hey Jane, I need your input on how to prioritize my current work. Can you provide guidance on where I should focus? Bug XYZ was assigned to me and it's taking longer to complete because we have a dependency on Vendor ABC completing a change to their web service. This is impacting the commitment to my team on Feature 123 because we are near the end of our sprint.