Explore >> Select a destination


You are here

fzakaria.com
| | martinheinz.dev
9.2 parsecs away

Travel
| | Nowadays, when people want to implement backend API, they go straight to creating application with RESTful API that communicates using JSON, without eve...
| | ekhabarov.com
4.8 parsecs away

Travel
| | As a first step, we will make a gRPC microservice and pack it into Docker container.
| | jmmv.dev
9.0 parsecs away

Travel
| | Today marks the 10th anniversary of Bazel's public announcement so this is the perfect moment to reflect on what the next generation of build systems in the Bazel ecosystem may look like. I write this with the inspiration that comes from attending the first ever conference on Buildbarn, one of the many remote execution systems for Bazel. In the conference, Ed Schouten, the creator of Buildbarn, presented Bonanza: a skunkworks reimagination of Bazel for truly large builds.
| | componenthouse.com
32.8 parsecs away

Travel
| I wanted tocompare how Java, C++ and C perform whenreading a text file line by line and printing the output. I've implemented some possibilities and, at the end, we can compare the speed of each execution. Java 7 version (BufferedReader) import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Main7 { private static final...