HN user

peeyek

393 karma
Posts79
Comments55
View on HN
pyk.sh 7mo ago

Writing a mockable Filesystem trait in Rust without RefCell

peeyek
2pts0
pyk.sh 7mo ago

Writing a Type-Safe Linux Perf Interface in Zig

peeyek
15pts0
github.com 8mo ago

Show HN: exetest – CLI Testing for Zig

peeyek
1pts0
pyk.sh 2y ago

Rust: Loading Environment Variables to Typesafe Structs

peeyek
1pts0
pyk.sh 2y ago

Creating PostgreSQL Tables with Rust's SeaORM

peeyek
3pts0
pyk.sh 2y ago

A Beginner's Guide to the Rust Question Mark (?) Operator

peeyek
1pts0
github.com 6y ago

Show HN: Curated list of Coronavirus data and apps

peeyek
2pts0
0xblockchain.network 7y ago

Show HN: Blockchain Developer Community

peeyek
1pts0
medium.com 8y ago

A Guide to Deploy Elasticsearch Cluster on Google Kubernetes Engine

peeyek
1pts0
medium.com 8y ago

A Guide to Instrument Sanic Application, Part 1

peeyek
1pts0
github.com 8y ago

A Brief Beginner’s Guide to CMake

peeyek
2pts0
twitter.com 9y ago

“So many fakers in startup land today”

peeyek
58pts8
www.cs.indiana.edu 9y ago

GPU Programming in Rust [pdf]

peeyek
2pts0
highnoongmt.wordpress.com 9y ago

Millennial Whoop with Derp Learning

peeyek
1pts0
github.com 9y ago

Fasttext – A Python Interface for Facebook FastText

peeyek
3pts0
github.com 10y ago

Tarpc: An RPC framework for Rust with a focus on ease of use

peeyek
30pts10
e27.co 10y ago

In Indonesia, startups and President team up to improve farmers' life

peeyek
1pts0
cs109.github.io 10y ago

CS109 Data Science

peeyek
7pts0
googleresearch.blogspot.co.id 10y ago

TensorFlow: Open source machine learning from Google

peeyek
1pts0
code.facebook.com 10y ago

Building open source communities for security

peeyek
3pts0
www.openshift.com 10y ago

Docker Security – Using Containers Safely in Production

peeyek
1pts0
code.facebook.com 10y ago

Performance instrumentation for Android apps

peeyek
1pts0
sites.google.com 10y ago

Classification with Neural Networks (2011)

peeyek
1pts0
blog.cloudflare.com 10y ago

Results of experimenting with Brotli for dynamic web content

peeyek
11pts0
segment.com 10y ago

Building Technical Documentation with Metalsmith

peeyek
1pts0
hackaday.com 10y ago

C++ Turns 30 – Looking Forward to the Future

peeyek
1pts0
googlewebmastercentral.blogspot.co.id 10y ago

An update on how we tackle hacked spam

peeyek
2pts0
code.facebook.com 10y ago

Improving the Linux kernel with upstream contributions

peeyek
2pts0
news.ycombinator.com 10y ago

Ask HN: I'm not influencer, how to lunch product that will get a traction?

peeyek
1pts1
labs.spotify.com 10y ago

Cassandra: Data-Driven Configuration

peeyek
4pts0

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

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.

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.

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.

A minimal, service oriented, includeable library operating system for cloud services

I think the operating system for cloud services is need to be able to run heterogeneous system. Which Mesos & CoreOS are headed towards this idea via containerization.

Why build an OS that only run a C++ for cloud services? Is there any use case/problems that the author trying to solve?

I like the idea. but, it turns out that the author is kind of "epic fail" because he exactly copying the landing page of rooms like other HNers described in the comment.

I don't know the landing page of rooms.me before. after reading the comments on this thread, i feel disappointed to the author of this app.

Actually, with currently title from HN

"Career Notes for Engineers and Designers"

My expectation is they excerpt content from real-word engineer like head of engineering or head of design some of giant tech companies.

But it seems they excerpt content from bunch of VC and i think is good from entrepeneur perspective.