Fred Callaway
Fred Callaway
I'm not exactly sure what the root of this problem is, but here's a near-minimal example: I have a file, foo.csv with contents: ``` c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c15,c16 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 ``` Now in a...
It would be really nice if StatsPlots could support faceting (i.e. making subplots by grouping by a variable in a table). I think it would make sense to use the...
```julia @remote f() = nothing ``` This gives me "UndefVarError: `#f` not defined" This works fine ```julia f() = nothing @remote f() = nothing ``` so it seems like there...
Seeing as this package is no longer maintained, and doesn't run on the current version of Julia, it would be nice to use the README to point users to the...
### PsychoPy Version 2024.1.0 ### What OS are your PsychoPy running on? macOS Intel ### Bug Description My task is an interactive game with about 100 elements on the screen...
It took me about an hour to get this working, which is pretty silly. Mostly problems with authorization. I would like to update the README based on my experience. Just...
I would like to use the the "cycle task status" command as a drop-in replacement for the built-in "cycle bullet/checkbox" command, but it seems that this isn't currently possible. For...
This might be too big of an ask, but in dplyr we can do this ```r data.frame(x=c(1,2,3)) %>% mutate(y=2*x, z=y+2) ``` that is, defining z and then using it in...
Amazing package—truly incredible how powerful and usable it is. One thing I'm missing is being able to assign keyboard shortcuts to trigger snippets. The naive strategy of creating a binding...
Is this possible? Here's an example use case ```json { "key": "ctrl+alt+t r", "command": "macros.tmux", "args": { "command": "new-window -n R 'radian'" } } ``` ```json "macros": { "tmux": [...