Tooling Projects – Summer of Code

IDE Tooling

Juno is open to general project ideas (from here or not); feel free to get in contact via the forum to discuss!

Progress Meter Improvements

Right now Juno's progress metre works well but is fairly basic. In particular, it could be improved by:

These issues prevent package authors from using @progress over loops without modification, in many cases. This project would therefore involve improving on the above fronts (roughly in that order of priority).

Expected Results: Patches to Juno.jl implementing the above improvements.

Recommended Skills: Some experience with Julia and Juno is good, but only general programming skills are required.

Mentors: Sebastian Pfitzner

Package installation UI

Juno could provide a simple way to browse available packages and view what's installed on their system. To start with, this project could simply provide a GUI that reads in package data from ~/.julia, including available packages and installed versions, and buttons which call the relevant Pkg.* methods.

This could also be extended by having metadata about the package, such as a readme, github stars, activity and so on. To support this we probably need a pkg.julialang.org style API which provides the info in JSON format.

Expected Results: A UI in Juno for package operations.

Recommended Skills: Familiarity with javascript and/or atom package development.

Mentors: Sebastian Pfitzner

Julia Code Analysis

The foundation for tools like refactoring, linting or autoformatting is a powerful framework for reading and writing Julia code while preserving various features of the source code; comments, original formatting, and perhaps even syntax errors. This could build on the work in JuliaParser.jl.

Related would be various tools for doing static or dynamic analysis of Julia code in order to find errors. A simple example would be linting indentation; combined with information from the parser, this could be a powerful way to reduce beginner frustration over unexpected ) style error messages.

Expected Results: Tools for source-to-source transformations of Julia code, preserving comments and whitespace.

Recommended Skills: Experience with parsing, or even familiarity with JuliaParser.jl itself.

Mentors: Keno Fischer

Performance Linting

Concepts relevant to Julia code's performance, like 'type-stability', are often implicit in written code, making it hard for new users in particular to catch slow code early on. However, this also represents a challenge for static analysis, since in general concrete type information won't be available until runtime.

A potential solution to this is to hook into function calls (users will most likely call a function with test inputs after writing it) and then use dynamically-available information, such as the output of code_typed, to find performance issues such as non-concrete types, use of global variables etc, and present these as lint warnings in the IDE.

While static analysis has long been used as a tool for understanding and finding problems in code, the use of dynamically available information is unexplored (with the exception of tracing JIT compilers, which demonstrate the power of the concept). This project has plenty of interesting extensions and could have the most interesting long-term implications.

Expected Results: IDE integration and tooling which detects performance issues.

Required Skills: Some familiarity with Julia, but more importantly javascript and/or Atom development.

Mentors: Sebastian Pfitzner

VS Code extension

We are generally looking for folks that want to help with the Julia VS Code extension. We have a long list of open issues, and some of them amount to significant projects.

Required Skills: TypeScript, julia, web development.

Expected Results: Depends on the specific projects we would agree on.

Mentors: David Anthoff

Graphical user interfaces

Interactive UI libraries and tooling

WebIO.jl is an exciting new library that enables two-way interaction between julia and web technologies (html/css/js). We are looking for project proposals in, possibly a combination of the following areas:

We're open to your project ideas. Join us on the #gizmos slack channel to discuss or ping @shashi or @JobJob in a discourse post.

Required Skills: Experience with JavaScript front-end development, some familiarity with Julia

Mentors: Shashi Gowda, Joel Mason

GUI library integration

QML.jl provides an interface to connect a QML GUI to a Julia backend. Some ideas for improvement here are:

Required Skills: Some familiarity with Julia, prior QML experience would also help.

Mentors: Bart Janssens, Shashi Gowda for the Observables part