Nathan Daly

Results 101 issues of Nathan Daly

This is an open thread for discussing one of the big remaining problems with ApplicationBuilder/PackageCompiler: Handling binary dependencies. The state of the world: Many packages depend on external shared libraries,...

discussion

I'm pulling out this issue to track our attempt to build and distribute an App that uses `Blink.jl`. Things we still need to solve: - [ ] Activity Monitor doesn't...

help wanted
tracking

The current system for creating portable, self-contained, downloadable binaries is quite fragile. The main problem is about embedding all non-code dependencies needed by your code and its package dependencies. The...

Maybe integration with something like `make`? Or maybe we can use julia's Pkg manager to do this? Been thinking about hermetically including dependencies by recreating a `.julia` structure inside the...

enhancement
needs-design

Currently ALL the tests assume running on a Mac. Need to add tests for windows and linux!!!

Currently there are two totally separate interfaces for build_app_bundle, one defined for Mac and one for Windows/Linux. We should fix that! I'm going to try to unify them together. For...

help wanted

Figure out how to _really, actually_ compile everything at build-time and do no compilation at runtime!! There was some discussion in-person at JuliaCon around the fact that things aren't being...

discussion

Code cleanup! This will also make it much easier to integrate/share the code for each of the mac/windows/linux/_mobile!?_ OS versions.

help wanted
good first issue
tracking

:) I noticed that these methods were missing. Thanks for the really handy package!! :) ----------------- Adds methods to `unsigned` and `signed` that take _types_ instead of values. Also extends...

The documentation for `zip()` doesn't say that it requires `iters...` to be non-empty. I think I would have assumed `collect(zip())` should produce the empty vector `[]`. However, this is what...

arrays