├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── close_currr_jobs.R ├── cp_map.R ├── cp_map_chr.R ├── cp_map_dbl.R ├── cp_map_dfc.R ├── cp_map_dfr.R ├── cp_map_lgl.R ├── eta.R ├── format_eta.R ├── globals.R ├── read_options.R ├── remove_currr_cache.R ├── save_current.R ├── saving_map.R ├── saving_map_nodot.R └── update_status.R ├── README.md └── man ├── cp_map.Rd ├── cp_map_chr.Rd ├── cp_map_dbl.Rd ├── cp_map_dfc.Rd ├── cp_map_dfr.Rd ├── cp_map_lgl.Rd ├── remove_currr_cache.Rd ├── saving_map.Rd └── saving_map_nodot.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: Marcell Granat 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/close_currr_jobs.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/cp_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map.R -------------------------------------------------------------------------------- /R/cp_map_chr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map_chr.R -------------------------------------------------------------------------------- /R/cp_map_dbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map_dbl.R -------------------------------------------------------------------------------- /R/cp_map_dfc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map_dfc.R -------------------------------------------------------------------------------- /R/cp_map_dfr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map_dfr.R -------------------------------------------------------------------------------- /R/cp_map_lgl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/cp_map_lgl.R -------------------------------------------------------------------------------- /R/eta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/eta.R -------------------------------------------------------------------------------- /R/format_eta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/format_eta.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/read_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/read_options.R -------------------------------------------------------------------------------- /R/remove_currr_cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/remove_currr_cache.R -------------------------------------------------------------------------------- /R/save_current.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/save_current.R -------------------------------------------------------------------------------- /R/saving_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/saving_map.R -------------------------------------------------------------------------------- /R/saving_map_nodot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/saving_map_nodot.R -------------------------------------------------------------------------------- /R/update_status.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/R/update_status.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/README.md -------------------------------------------------------------------------------- /man/cp_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map.Rd -------------------------------------------------------------------------------- /man/cp_map_chr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map_chr.Rd -------------------------------------------------------------------------------- /man/cp_map_dbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map_dbl.Rd -------------------------------------------------------------------------------- /man/cp_map_dfc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map_dfc.Rd -------------------------------------------------------------------------------- /man/cp_map_dfr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map_dfr.Rd -------------------------------------------------------------------------------- /man/cp_map_lgl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/cp_map_lgl.Rd -------------------------------------------------------------------------------- /man/remove_currr_cache.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/remove_currr_cache.Rd -------------------------------------------------------------------------------- /man/saving_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/saving_map.Rd -------------------------------------------------------------------------------- /man/saving_map_nodot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcellGranat/currr/HEAD/man/saving_map_nodot.Rd --------------------------------------------------------------------------------