peeyek's comments

peeyek | 7 years ago | on: Plans for OCaml 4.08

They should focus on developer tooling for wide adoption. More OCaml dev, win win situation for jane street.

peeyek | 8 years ago | on: Kubernetes 1.10 released

The best way to get started is to follow the official guide https://kubernetes.io/docs/tutorials/stateless-application/h...

You will use a tool called a “minikube” which is “mini” version of kubernetes that runs on your local machine.

You should focus on to get familiar with kubectl(1) first, it’s a simple CLI tool to manage kubernetes cluster.

If you have any questions & issues you can ask on Stack Overflow #kubernetes and you can also join the Slack channel.

peeyek | 9 years ago | on: Ryzen is for Programmers

I second this. I build PC with Ryzen 1500X + GTX1070 and it works flawlessly with TensorFflow and Torch7.

peeyek | 9 years ago | on: Const and Optimization in C

In 2nd paragraph, the author states:

    void foo(const int *);
    ...
> The function foo takes a const pointer, which is a promise from the author of foo that it won’t modify the value of x. Given this information, it would seem the compiler may assume x is always zero, and therefore y is always zero.

peeyek | 9 years ago | on: Const and Optimization in C

The following is a foo function that take a constant pointer:

    void foo(int *const x);
If you point x to another adress inside foo function, it will not compiled.

The author seems think that

    void foo(cont int *x);

is function that takes a constant pointer which is wrong, it is a function that takes pointer to constant object. In this case, it is legal if you point x to another address in memory inside foo function.
page 1