Conrad Taylor

Results 44 comments of Conrad Taylor

@rc65 I have the exact IPv6 DNS setup on both Intel and Apple Silicon MacBook Pro but I'm only seeing the issue on Apple Silicon this time. Also, they are...

I haven't been able to reproduce this issue after upgrading to both Erlang 24.2 and Elixir 1.13. Furthermore, I recently refactored the GraphQL layer that did remove all the aliases...

I had a similar issue today using Apple M1 Max MacBook Pro after using docker exec in a workshop. The process hanged and started causing issues for all Unix commands...

Hi, I'm still seeing output in the following form when using Rails 3.2.3: ``` 1.9.3p196 :001 > Site.all Site Load (37.0ms) SELECT "sites".* FROM "sites" [ [0] # { :id...

I reduced my file, .irbrc down to one line and I'm still not getting the expected output: ``` require 'rubygems' rescue nil require 'hirb' Hirb.enable :output => {"ActiveRecord::Base" => {:class...

I'm guessing that this information is best left for the general documentation as part of the installation requirements.

I’m manually installing libmxnet from source from the project’s web site but I’ll try installing MXNet.jl using Pkg.build.

@iblis17 Please advise how to build `MXNet.lj` using `Pkg.build`. From the Julia documentation, there's no option for a single package. Finally, I believe part of the issue which I missed...

I was able to resolve the `Pkg.add("MXNet")` by performing the following actions: - create a relative path within the `libmxnet.so` ``` $ install_name_tool -id @rpath/libmxnet.so libmxnet.so ``` - create a...

Adding just the sym-link didn’t work for me because this would generate a failure when I tried `Pkg.add(“MXNet”)`. Why? The relative path, lib/libmxnet.so, within libmxnet.so isn’t correct. @rpath/libmxnet.so is a...