jtrakk
jtrakk
Django has a nice list of [security considerations](https://docs.djangoproject.com/en/3.2/topics/security/). It would be helpful to know how Genie handles each of these issues and what I need to know as a user.
```julia p = plot(DataFrame(date=Date(2000,01,01):Dates.Year(1):Date(2001,01,01)), x=:date, Geom.histogram()) draw(PNG(), p) ``` works but changing the start year errors ``` p = plot(DataFrame(date=Date(1700,01,01):Dates.Year(1):Date(2001,01,01)), x=:date, Geom.histogram()) draw(PNG(), p) # MethodError: no method matching bincount_pll(::Int64,...
Sometimes I want to specify binwidth rather than bincount in a histogram. Could that be supported?
When `Gadfly.plot()` fails, it displays `Plot(...)` but that doesn't help me figure out what's wrong. It would be great if I could get some helpful diagnostic messages when the plotting...
Currently `describe(df, :mean)` is allowed but not `describe(df, mean)`, which would allow users to provide their own describing functions.
https://discourse.julialang.org/t/frustrated-using-dataframes/67833 needs a way to apply the same transformation to each of several columns. One way mentioned in the thread is ```jl transform(df, r"temp" => ByValue(t->((t-32)*5/9)) => (c->c*"celsius")) ``` -...
I get a lot of use from linters in programming python generally, such as pylint, flake8, mypy, bandit. Would it be possible to provide linters for lark grammars, which would...
The scrollback directory is stored in the hexchat config directory, not in the log directory. I would like the scrollback to have the same parent as the logs, so if...
I have `dragon` on a keyboard shortcut in my terminal, and `dragon --target` on another shortcut. But I would rather have just one shortcut. Is it possible to have one...
https://www.julia-vscode.org/