/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

pchaigno.github.io
| | lwn.net
6.2 parsecs away

Travel
| | In his linux.conf.au 2017 talk [YouTube] on the eBPF in-kernel virtual machine, Brendan Gregg p [...]
| | www.collabora.com
7.0 parsecs away

Travel
| | Interested in learning more about low-level specifics of the eBPF stack? Read on as we take a deep dive, from its VM mechanisms and tools, to running traces on remote, resource-constrained embedded devices.
| | andreabergia.com
8.4 parsecs away

Travel
| | This post is part of the Writing a JVM in Rust series. In this post, I will discuss how the JVM bytecode works. In the next part, I will go over the RJVM code that executes it.
| | danielpecos.com
20.7 parsecs away

Travel
| Para retomar de nuevo la marcha del blog, he decidido comenzar mostrando algunos ejemplos de programación en C#. Por el momento os dejo el obligatorio programa para todo aquel que empieza con algún lenguaje. Hola Mundo! using System; namespace HolaMundo { public class HolaMundo { public static void Main (string [] args) { Console.WriteLine ("Hola Mundo!"); } } } Sencillo, ¿verdad? Tiene mucha semejanza con Java, exceptuando que las palabras reservadas difieren y que Java no posee el concepto de espacios ...