Geoffrey Poole
Geoffrey Poole
The help file for `grade_this_code()` states the following: > If `grade_this_code()` is called in a `-code-check` chunk and returns feedback, either passing or failing feedback, then the user's code is...
Questions: Is there a way to allow R to handle errors and warning from mongolite? Also, is there documentation anywhere for creating a custom error handler? Feature Request: Currently, when...
When using the onSort option, something like this: ``` sortable_js(css_id = "example_1", options = sortable_options( onSort = sortable_js_capture_input("reorder_1") )) ``` The observer on input$reorder_1 only fires once if the items...
`readtext` leaves temporary files on `/tmp` in linux each time you read a .docx file. If you read a lot of large .docx files, the space on `/tmp` can get...
Ref: Issue 180. When an odt or docx file is retrieved and processed using get_docx() or get_odt(), a potentially large file is written to /tmp. This patch proposed removing those...
### Preflight Checklist - [x] I have searched [existing requests](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20label%3Aenhancement) and this feature hasn't been requested yet - [x] This is a single feature request (not multiple features) ### Problem...
replace_time has an issue with repeating values. This is fine: ``` > c("01:30", "02:30", "3:30") |> textclean::replace_time() [1] "one thirty" "two thirty" "three thirty" ``` Repeated value at beginning and...