Colin Summers
Colin Summers
According to the docs: ```julia using MLDataUtils X, Y = MLDataUtils.load_iris() # iterate over the first 2 batches of 15 observation each for (x,y) in batchview((X,Y), size=15, count=2) @assert typeof(x)
I recently learned of tree-sitter through [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) and needless to say, I'm pretty excited for Julia support. That being said, are you looking for contributors? If so, what's the current...
**Describe the bug** `builtins.fetchTarball` no longer works if there is more than one top level directory in a tarball. **Steps To Reproduce** ``` Welcome to Nix version 2.4pre20210503_6d2553a. Type :?...
roscpp
@jdlangs and anyone else who had a significant contribution to this project: Is there any reason why rospy/PyCall.jl was chosen over using roscpp and Julia's native ability to call into...
Calling RobotOS.spin() triggers a busy loop at 1000Hz, whereas Python's spin() runs at 2Hz (see http://docs.ros.org/melodic/api/rospy/html/rospy.client-pysrc.html#spin). Any reason for the difference?
No errors are printed to stdout. Roslaunch is configured with output="screen". Here's an example (note the tools calls to error() in callback and main: ``` #!/usr/bin/env julia using RobotOS @rosimport...
Feature Request: Generate Types inside of RobotOS (and allow for definitions to be written to file).
Consider the following example: ``` module ex1 @rosimport sensor_msgs.msg: LaserScan rostypegen(@__MODULE__) using .sensor_msgs.msg: LaserScan end module ex2 @rosimport sensor_msgs.msg: LaserScan rostypegen(@__MODULE__) using .sensor_msgs.msg: LaserScan end julia> ex1.LaserScan == ex2.LaserScan false...
Ran into this on a GitHub Actions instance with Julia 1.3.0 and x86: ``` [1] throw_inexacterror(::Symbol, ::Type{Int32}, ::Int64) at ./boot.jl:560 [2] checked_trunc_sint at ./boot.jl:582 [inlined] [3] toInt32 at ./boot.jl:619 [inlined]...
I stumbled across some changes in 1.6 and later versions of Pkg.jl that might break julia2nix or at least limit its function. Prior to 1.6, everything in the Artifacts.toml was...
First off, thanks for adding the `prefix:` option. It definitely simplified things for projects with graphical dependencies. Unfortunately it doesn't allow for prefixes with arguments. For example, I tried using...