Simon Streicher

Results 27 comments of Simon Streicher

I have a similar issue, I don't really mind the pop-ups etc. but I think there needs to be a way to run the program non-blocking. What about a commandline...

I had a look at this issue again today and saw that `@pyimport` is marked as deprecated in the source code: https://github.com/JuliaPy/PyCall.jl/blob/b27bd5a9ecabec4a30ba6062c3754768746e3adb/src/PyCall.jl#L413 Is this correct and intended? In this case,...

At Juliawin we make some changes to the environment before running any of the underlying binaries. Currently it's a bit of a game of whack-a-mole to keep Julia portable, but...

@fredrikekre I'm new to proposing a pull request for a Julia package. Does the "some checks were not successful" disqualify the pull, or is it just a polite warning?

You can use this to make a template for jlpkg: [jlpkg.zip](https://github.com/fredrikekre/jlpkg/files/5946523/jlpkg.zip) The main trick is to add the following to the top of a .cmd file: ``` @eval 1 #=...

Just replace the `@call julia "%~dp0%~n0.cmd" %*` part with the following juxtaposed string when generating the cmd file: `"@call $(julia) $(join(julia_flags, ' ')) $(abspath(@__DIR__, "cli.jl")) %*"` Similarly to what you...

https://github.com/fredrikekre/jlpkg/pull/20

(Edited) The following scripts will automatically generate a context menu for Windows users (I use it myself for my own purposes). You can run it directly here: [Add GitHubDesktop context...

How about we make an opt-out option that automatically gets added by the installer. We can make this into a cascading menu with an option to opt-out. I think that...

@darkred I see your point, opt-in is probably servicing the user more and the cascading menu would be cumbersome indeed. I don't agree with adding options to the installer. GitHub...