Bernhard König

Results 39 comments of Bernhard König

The file is already [here](https://github.com/felipenoris/XLSX.jl/files/9962438/currency.xlsx)

I note that even when JULIA_HOME is defined, I get an error that it is not defined. See also here https://discourse.julialang.org/t/tips-for-updating-code-for-0-7/9427/9 Notably, I have not modified any of the code...

Thanks. This does indeed solve my problem. And thanks for teaching me something new. I can see that the most recent tag 0.3.1. had the latest commit on Dec 7...

might be worth to add some of this to the README

Thanks @bluesmoon . I actually found this meanwhile. What I cannot find in CurlHTTP.jl is a way to add a cookie. Is this possible/difficult?

> The question is, what would you expect/prefer: > > * throwing error (because you are trying to `append!` to a data frame with aliased columns) > * performing un-aliasing...

FYI, I am now using a small python snippet to achieve this: consider `pip install playwright` followed by `playwright install` ``` UPK_PW = "abcd" UPK_USER = "uptimekuma" UPK_URL = "https://uptimekuma.myurl.ch"...

I am running into this as well. Besides `monitor does not exist` I also get `list indices must be integers or slices, not str`. Although, as a python novice, I...

Ok, adding `__precompile__(false)` is a workaround for now ``` __precompile__(false) module MyModule #bla end ```

I just ran into this too. I was about to compare runtimes of unzipping versus reading from the zip. Especially when using `@btime` the error occurs.¨ The global approach works,...