Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
MichaelChirico pushed 1 commit to master MichaelChirico/funchir
- mark stale_package_check for deprecation (#40) 6cedb4c
MichaelChirico closed a pull request on MichaelChirico/funchir
Mark stale_package_check for deprecation
First step for #39.MichaelChirico opened a pull request on MichaelChirico/funchir
Mark stale_package_check for deprecation
First step for #39.MichaelChirico created a branch on MichaelChirico/funchir
deprecate-stale-package - R package of convenient functions
MichaelChirico opened an issue on MichaelChirico/funchir
Deprecate stale_package_check()
I'm pretty sure this can be deprecated in favor of {lintr} functionality. Just need to double-check that's true and start a quick deprecation cycle.MichaelChirico pushed 1 commit to master MichaelChirico/funchir
- Another round of code deletion (#38) * Delete more functions * Continued slash + burn of unneeded code cb8d8e5
MichaelChirico pushed 1 commit to rm-utils MichaelChirico/funchir
- Continued slash + burn of unneeded code 8664683
MichaelChirico created a branch on MichaelChirico/funchir
rm-utils - R package of convenient functions
MichaelChirico opened an issue on MichaelChirico/funchir
Turn %\% issue into an R bug report and then delete it
With many years of hindsight it's clear this is a bug: https://stackoverflow.com/q/32748895/3576984 I still see 'unescaped bksl' in the tools/R/QC.R code, so this is probably still present. ...MichaelChirico created a comment on an issue on r-lib/lintr
There's nothing about nesting -- we don't follow `source()` at all. ```r writeLines("foo = function(x) x", tmp1<-tempfile()) writeLines(c(sprintf("source('%s')", tmp1), "bar = function() foo()...
MichaelChirico closed an issue on Rdatatable/data.table
Set a minimum quantity of groups to print progress (2?)
Running some very slow grouping operation that happens to be on a one-group table (occurring programmatically): ```r library(data.table) DT=data.table(a=1) DT[, by=a, {Sys.sleep(5); 1}] # Pr...MichaelChirico pushed 1 commit to master Rdatatable/data.table
- Only print progress if more than one group (#6693) * only print progress if ngrp>1 * Add NEWS entry --------- ... 9875906
MichaelChirico closed a pull request on Rdatatable/data.table
Only print progress if more than one group
Closes #6668 Simple change so that we only print progress if we are working on more than one group (`ngrp>1`).MichaelChirico pushed 1 commit to showProgress_on_multigroup Rdatatable/data.table
- Add NEWS entry 225d056
MichaelChirico opened a pull request on Rdatatable/data.table
Add some more guidance to issue template
MichaelChirico created a branch on Rdatatable/data.table
issue-template-update - R's data.table package extends data.frame: