Research

My research interests include programming languages, distributed systems and software engineering.

Conference Program Committees

See here for a recent list.

Recent Projects

I study decentralized systems, blockchains and smart contract platforms, both from a language engineering perspective (designing safer languages to write smart contracts) as well as from a systems engineering perspective (improving the transaction scalability of such systems). Can we use secure distributed objects as the foundation for safer smart contracts?

Past Projects

Below is a brief overview of past research projects I have worked on, with pointers where to learn more.

Machine Learning on Code

At Bell Labs between 2018 and 2021 I’ve worked on novel developer tools that “learn from code”, including code completion from natural language using neural language models, code snippet retrieval via neural code search and a package recommendation engine based on machine-learned representations of software libraries (import2vec). These tools have been used by software developers at Nokia.

Distributed Stream Processing

At Bell Labs between 2015 and 2017 I co-architected a distributed stream processing platform called World Wide Streams which is now in use inside Nokia. My main contribution was in the platform’s dataflow specification language XStream and its compiler. Dataflows written in XStream are compiled into query plans and seamlessly deployed across a wide-area compute infrastructure (across device, edge and core Cloud).

Reflection and Metaprogramming

I was the main designer of the ECMAScript 2015 Proxy API and Reflect API, with Mark S. Miller. They are now available in all major browsers.

I maintain a self-hosted implementation of Proxies and the ECMAScript Reflect API in JavaScript (mostly useful to use as a shim in older pre-ES6 environments). Over a 100 packages on NPM depend on it.

My work on JavaScript Proxies was partly inspired by earlier work on Mirages in the AmbientTalk programming language, work that won us the DLS 2017 most notable paper award.

Ambient-oriented Programming

When I started my PhD in the early 2000s, smartphones as we know them today did not exist. There was no iPhone, no Android. There were awkward precursors to smartphones running on Windows CE, Symbian or J2ME. Developing applications for phones was a real pain, and mobile connectivity was expensive, slow and scarce (2G networks). Social networks barely existed. And yet, we understood the power of connected apps on phones. We just had to figure out a better way to program these apps.

It was in that context that me and colleagues at the VUB Software Languages Lab defined Ambient-oriented programming, a new programming paradigm geared towards writing peer-to-peer applications running on mobile “ad hoc” networks. A defining feature of the paradigm was that network failures are treated as a normal mode of operation.

We designed the first “ambient-oriented” programming language which we called AmbientTalk. It was a dynamic scripting language, implemented on top of the JVM (not unlike e.g. Rhino, the JVM JavaScript engine), and when Android became widespread by 2010 we primarily ran AmbientTalk on Dalvik.

AmbientTalk was featured in MIT Technology Review, in the Belgian Techzine Datanews (article in Dutch), and software developed with AmbientTalk won prizes at DroidCon, such as a collaborative drawing editor and a peer-to-peer poker game.

Over the many years as a PhD and Post-doc student at the Vrije Universiteit Brussel, I co-authored multiple papers on AmbientTalk and its features. Probably the best overview paper is this one from 2007.

My PhD thesis ultimately focused on a very specific feature of AmbientTalk called ambient references: object pointers designed for mobile networks.

Concurrent and Parallel Computing

I worked on a variety of concurrency control abstractions for programming languages, with a primary focus on a particular concurrency control paradigm called the Actor Model. See for instance our taxonomy paper “43 years of actors”.

I have also worked on Event Loop concurrency (widely deployed in JavaScript/nodejs), Futures/Promises and Reactive Programming (see our ACM Computing Surveys paper on the subject).

With Philipp Haller from the Scala team at EPFL, I designed a library for Joins in Scala. I later contributed a chapter on MapReduce in Scala in Haller’s book Actors in Scala.

I also studied parallel computing models, with papers on Java Fork/Join and an ACM Computing Surveys paper on Partitioned Global Address Space (PGAS) models.

Software composition with traits

I did research on new ways to compose objects in object-oriented programs, taking a lot of inspiration from the original research work on Traits.

Our AmbientTalk language supports traits with state and visibility control by exploiting lexical nesting.

Later I designed a JavaScript library called Traits.js. To learn more about it, see this blog post on HowToNode.

Distributed Secure Computing

See this post.

Miscellaneous projects

A variety of software projects can be found on my GitHub page.