miromarszal
miromarszal
Consider the following example. ```julia csv = """1,2,3 1,2,3 1,2,3""" CSV.File(IOBuffer(csv), select=[2, 3], header=0) ``` ``` 3-element CSV.File{false}: CSV.Row: (Column2 = 2, Column3 = 3) CSV.Row: (Column2 = 2, Column3...
I know it's easy to figure out from the source, but still, it would be nice to mention on the doc page that this is included: ```julia # StatsBase reexports...
I have a handful of files from `matplotlib` that don't like to be included with `svg`. The one thing they have in common is being created with the `imshow` command,...
Symmetric banded matrices seem very fragile and fall back to a generic dense matrix on occasions. Consider the following: ```julia B = BandedMatrix(Ones(5,5), (0,0)) B * B ``` ``` 5×5...
### Describe the bug I see no signs of hardware decoding when streaming a game. There is a noticeable input lag too. ### To Reproduce 1. Start gfn-electron and launch...
## Compatibility Report - [Link to Steam store](https://store.steampowered.com/app/355250/STAR_WARS_TIE_Fighter_Special_Edition/) - [Link to ProtonDB](https://www.protondb.com/app/355250) - Note that the game has three editions included. I'm writing about the _Collector's CD-ROM_ version specifically. ###...
Hi, I'm on Julia 1.8.2 and I'm trying to use exponential solvers on a moderately-sized problem. When I construct the linear operator via `Diagonal`, I notice some performance issues. I...