José Bayoán Santiago Calderón
José Bayoán Santiago Calderón
I have opened as a draft PR, so it isn't ready for a complete review, but would regardless appreciate some comments on how to start testing a new bot/port. I...
I think I understand the last component of the pipeline now. Probably the easiest solution would be to use PyJulia... Something like ``` import julia julia.include("file.jl") # other logic commands...
One could potentially use [PackageCompiler](https://github.com/JuliaLang/PackageCompiler.jl) (see this [section](https://julialang.github.io/PackageCompiler.jl/stable/apps.html)) to create an app that can be sent and run on other machines without Julia being installed on that machine. However, at...
As compiled code, it wouldn't require Julia, but at least for development, it is likely that just calling Julia from Python for that one line in that file to be...
I have had some experience calling Python and R from Julia as well as Julia from R and Python... Not too much of that anymore these days. In general, it's...
I think I am about done with the startkit... Will push soon. I am building the test suite using ``` replay_game = JSON3.read(read(joinpath("data", "PySimpleS0.json"), String)) ``` `replay_game` being the output...
Currently for the Julia simple kit I only use one package for parsing JSON (JSON3.jl). When I compile the Julia code into the executable it is embedded as part of...
For the compiled version once everything is running well, the ideal would be to generate the image trimming down any unused standard library (e.g. LinearAlgebra) to make it as small...
No worries. Had a few deadlines for work this week that eat some of my time but plan to take a look at it today.
Mea culpa. I was out of town the last 10 days or so. Remind me at the end of the week if I haven't pushed an update. Should be getting...