Viktor G. Gumennyy
Viktor G. Gumennyy
I want to make a portable app with PyCall included, so I move conda into a common folder (this folder I would later copy to another machine when deploying compiled...
When I compile my app that has a PyCall dependency, it could not find python library, because it is compiled with absolute path to that library found on dev machine....
I have the following in my `deps/build.jl` file: ```julia using PyCall PyCall.Conda.add("wfdb") ``` And inside module: ```julia module MyPackage const WFDB = PyNULL() function __init__() copy!(WFDB, pyimport("wfdb")) end end #...
What do you mean by stating: > Important: Only support Linux [docker](https://www.docker.com/) container. I tried to do this action on self-hosted runner Ubuntu 20.04 with docker installed - and got...
Should It be simply added to the list of supported platforms here https://github.com/JuliaPackaging/Yggdrasil/blob/master/H/HDF5/build_tarballs.jl ? Or I should somehow check/build this on armv7l machine? Maybe a dup of https://github.com/JuliaIO/HDF5.jl/issues/870
Is there a way to: 1) use time units like `1hr30minute15s`, or just `1hr+30minute+15s`? 2) convert to DateTime: `convert(DateTime, 30s)` and vice versa?
```julia data = """a b c d A BB CCC DDDD A BB CCC DDDD """ |> IOBuffer df = CSV.File(data; header = 1) |> DataFrame df[!, :a] # 2-element...
What should be done do make this release?
Just a notification about package offering some similar functionality: https://github.com/sairus7/MaxMinFilters.jl And a discourse about possible generalization of DSP-related packages: https://discourse.julialang.org/t/ann-maxminfilters-jl-fast-streaming-maximum-minimum-within-moving-window/30151
I have compiled an app using CImGui, but it doesn't show anything in main window:  Compilation script: ```sh julia --project=@. --startup-file=no -e ' using PackageCompiler; PackageCompiler.create_app(pwd(), "MyProjectCompiled"; cpu_target="generic;sandybridge,-xsaveopt,clone_all;haswell,-rdrnd,base(1)", precompile_execution_file=["test/runtests.jl"])...