Eric Forgy

Results 32 issues of Eric Forgy

I'm thinking about trying to resurrect this package using latest ZMQ.jl (or just plain sockets) and/or Requests.jl and Matlab's webread and/or tcpclient, which did not exist when this package was...

Instead of ```julia Dict{Symbol,Tuple} ``` to hold the data, what if we do this: ```julia Dict{Symbol,Int} # A map from currency symbol to an array index StructArray{NameTuple} ``` This would...

Hi there 👋 Our code uses wagmi and viem. It would make integration a little easier if we could use these. Would there be any interest in allowing us to...

```julia julia> one = FixedDecimal{Int,2}(1) FixedDecimal{Int64,2}(1.00) julia> one/3 FixedDecimal{Int64,2}(0.33) julia> one/3.0 0.3333333333333333 ``` Intuitively, I would expect `one/3 === one/3.0` since ```julia julia> 1/3 === 1/3.0 true ``` Strictly speaking,...

https://nextjournal.com/a/L5VQzeVKE1y4F6JZWzDp1?token=QtSPKSwRPQ3DKJwTLUceWZ

Do we need to worry about this? (note to self :))

```julia ┌ Error: (ErrorException("Unexpected end of input\nLine: 0\nAround: ......\n ^\n"), Base.StackTraces.StackFrame[error(::String) at error.jl:33, _error(::String, ::MemoryParserState) at Parser.jl:142, byteat at Parser.jl:51 [inlined], parse_value(::ParserContext{Dict{String,Any},Int64}, ::MemoryParserState) at Parser.jl:162, #parse#1(::Type, ::Type{Int64}, ::Function, ::String) at...

https://julialang.slack.com/archives/C6A044SQH/p1516365200000613 Still needs testing, but try ``` > Pkg.add("Pages") > Pkg.checkout("Pages") # To get master > Pkg.examples() # Note: This will start a server and launch a page in a...