Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
schloerke created a review comment on a pull request on posit-dev/connect-extensions
It does take in Connect's swagger file: https://docs.posit.co/connect/api/swagger.json . We probably don't need to expand on the return objects, but we do ingest the file.
schloerke created a comment on a pull request on posit-dev/posit-sdk-py
> Q: Should this be in `posit-dev/connect-extensions` A: Yes. Closing this PR.
schloerke pushed 2 commits to sdk-assistant posit-dev/connect-extensions
schloerke created a comment on an issue on rstudio/plumber
If a file has a single sheet... should it return a `data.frame()` or a `list()` of a single `data.frame()`? This fuzzy area makes me want to have two parsers... `excel` and `excel_sheet`? `excel_sh...
schloerke created a review on a pull request on rstudio/shiny
Want to double check with @jcheng5 that es2020 is a good target to use for today. -------- I'd be happy to remove yarn in favor of npm during work week if there's interest!
schloerke created a review comment on a pull request on rstudio/shiny
Notes: * [esbuild's `target`](https://esbuild.github.io/api/#target) does not polyfill the JavaScript input files. It only adjust _its_ javascript code. * > Automatic polyfill injection is outs...
schloerke created a comment on an issue on rstudio/plumber
Using the `Accept` header is great! Thank you! -------------------- There's some infrastructure work required for this feature to be added. @meztez would you like to make a PR? Also happy to hav...
schloerke created a comment on an issue on rstudio/plumber
@chuxinyuan I believe you want something similar to... ```R # untested parser_xlsx <- function(...) { parser_read_file(function(tmpfile) { read_xl:: read_excel(tmpfile, ...) }) } plumbe...
schloerke closed an issue on rstudio/plumber
No suitable parser found to handle request body type application/vnd.ms-excel.
## Description I want to upload the data in .csv format, but I had trouble deploying it to the server. ## Code ## plumber_run.R ```r library(plumber) pr("plumber.R") %>% pr_run(hos...schloerke reopened an issue on rstudio/plumber
No suitable parser found to handle request body type application/vnd.ms-excel.
## Description I want to upload the data in .csv format, but I had trouble deploying it to the server. ## Code ## plumber_run.R ```r library(plumber) pr("plumber.R") %>% pr_run(hos...schloerke created a review comment on a pull request on posit-dev/connect-extensions
In shiny, the reactive graph is typically locked up. So there isn't a real advantage within Shiny unless you use extended tasks.
schloerke created a review comment on a pull request on posit-dev/connect-extensions
If this used an async sleep, would other routes be able to work while sleeping?
schloerke created a review comment on a pull request on posit-dev/connect-extensions
Can you demo for me on Posit Publisher?
schloerke created a comment on an issue on rstudio/plumber
A possible approach which adds a `xlsx` serializer: https://github.com/rstudio/plumber/issues/793#issuecomment-2610077999 ```r # untested! register_serializer( "xlsx", function(..., type = "a...
schloerke created a comment on an issue on rstudio/plumber
I still don't know how to best signify to the dynamic serializer which serializer to use. Maybe the route handler would require a flag to be set? Maybe the return value as @r2evans has provided a...
schloerke created a comment on an issue on rstudio/plumber
I like the interface of Bruno's example in the first comment where we use multiple `@serializer` calls. This allows for arguments to be supplied individually and keeps a familiar interaction patter...
schloerke pushed 1 commit to main rstudio/plumber
- perf: Avoid disk I/O during parsing (#972) f4230ed
schloerke closed an issue on rstudio/plumber
Parse rds could avoid hitting disk
https://github.com/rstudio/plumber/blob/56a69494cf15c3c3ca0831a86a91ba033337206a/R/parse-body.R#L479 https://stackoverflow.com/a/67229892 ```r con <- rawConnection(rawvectpr) value <- con |...schloerke created a comment on an issue on rstudio/plumber
Closing as not planned for
schloerke closed an issue on rstudio/plumber
HTTP server sent events
<!-- Thanks for taking the time to file a feature request! Please take the time to search for an existing feature request, to avoid creating duplicate requests. If you find an existing feature r...schloerke pushed 1 commit to main rstudio/plumber
- docs: Add note on annotating required parameters (#971) cabd801