Ahmet Alp Balkan
Ahmet Alp Balkan
I am trying to build gRPC RouteGuide example project. https://github.com/grpc/grpc/tree/cc03415b78f8d562ccd9d7100c408fc65c013783/examples/csharp/RouteGuide It has a tree structure as follows: ``` .. ├── README.md ├── RouteGuide │ ├── RouteGuide.csproj │ ├── RouteGuideUtil.cs │ ...
Similar to #19, I am now trying https://github.com/GoogleCloudPlatform/buildpack-samples/blob/master/sample-python. It's clear to me that some buildpacks have `Procfile` and some don't. This one clearly requires a Procfile. Similarly there's a `runtime.txt`...
https://github.com/ahmetb/govvv
I'm doing something super straightforward: ```go _, err := git.PlainClone(destinationPath, false, &git.CloneOptions{ URL: "https://github.com/kubernetes-sigs/krew-index.git", }) return err ``` This returns error `remote repository is empty`. I tried `os.MkdirAll(destinationPath, 0755)` ahead...
If I just run `azure vm create` it only prompts for certain required fields, not all... This makes all the prompt strings I typed earlier useless... ``` ➜ ~ azure...
``` $ docker run --rm -i -t launcher.gcr.io/google/ubuntu16_04 /bin/sh: 0: -c requires an argument ``` ``` $ docker run --rm -i -t launcher.gcr.io/google/debian9 root@9328fa0c1a4b:/# ``` ``` $ docker run --rm...
This confused me as can be seen in #2 and #8. The last line of bind prints IP address only, I think it should print tue port as well.