D3SL

Results 56 comments of D3SL
trafficstars

%>>% is already used by pipeR as the primary pipe operator. Plus as mattmalin stated ```.``` already allows you to sned input wherever you want. I think rather than another...

Huge gravedig but I semi-solved this using the below javascript in `ui.r` to grab the user's viewport dimensions and then pass them as `input$dimension` to `server.r`. It's still hacky because...

This is an issue in the `{reactable}` package as well, javascript being faster than R based renderers in that case but still painfully slow for sizeable tables. I think this...

> Hi @D3SL I think I've had a lot of the same problems as yourself with dynamically changing the height of a rhandsontable. I wondered if you'd made any decent...

I solved this issue with the below javascript. Place it in your UI (`tags$script` or directly using shinyJS) and then you can reference `input$dimension[0]` for viewport width and `1` for...

As far as I know [Photon ](https://github.com/ColumbusCollaboratory/photon), which does pretty much the same same as this, is still under active development.

Full phone number validation isn't really feasible just because of the workload. Every country has their own formatting and often also legacy numbers that don't follow the current rules. The...

Yes, that's pretty much it. Basically just adding "Options" like `icecream.peeking.function` as arguments to `ic()`. That way instead of needing to set `options(icecream.peeking.function = head, icecream.max.lines = 5, icecream.foobar=baz)` and...

> @D3SL if you were to supply your own peek function would you expect / want its output to override `icecream.max.lines`? It seems to me that the answer should be...

There's a partial fix [here](https://github.com/REditorSupport/vscode-R/issues/820#issuecomment-1002937100) in #820. It solves the duplicated brackets/quotes/parens issue but it doesn't solve the problem of code not actually being run when you use ctrl+enter, at...