Eric Dubé

Results 68 issues of Eric Dubé

This commit allows map queries on lists. Performing a map query on a list results in a new list, where each element is the element at the queried key of...

This commit fixes a couple issues I encountered before successfully running qlearn.py. Using Keras 2.0.2 I received an error message stating that `keras.initializations` module didn't exist. Looking through the source...

I have an HTTP server written in Go that uses this library to convert pages of PDF into images and save them on disk. It works fine, but after a...

Currently, basepath is simply concatenated with the path regex used in a route. This can lead to confusing results when, say, basepath is `websites/` and the route is `/testpage`, since...

I have an application that can be called in two ways: 1. manually invoke from the CLI 2. process directives in specially-formatted lines of a text file, which contain CLI...

kind/bug
area/lib

Meta-programming is already possible in FOAM by calling methods like `foam.CLASS` dynamically. This PR introduces explicit meta-programming support so that this behavior can be better controlled by FOAM. The following...

Allows convenient generation of no-op implementors of interfaces. For example, the code snippet below creates `Loader`, `ProxyLoader`, and `NullLoader`. ```javascript foam.INTERFACE({ package: 'foam.u2.wizard.data', name: 'Loader', proxy: true, null: true, methods:...

It is possible for properties to be recursive, and these properties crash detail views. For example, the factory for `view` on a `foam.nanos.menu.Menu` introduces recursion: ``` factory: function() { return...