Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Jun 25, 2021
1 parent 2a70759 commit d3911a5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 24 deletions.
10 changes: 5 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,21 @@

## Features / Fixes:

* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/progress.html)
on using furrr with [progressr](https://CRAN.R-project.org/package=progressr)
for generating progress updates.

* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/carrier.html)
discussing an alternative strategy to automatic globals detection using
the [carrier](https://CRAN.R-project.org/package=carrier) package.

* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/chunking.html)
discussing how furrr "chunks" input to send if off to workers.

* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/gotchas.html)
on common gotchas when using furrr.

* [New pkgdown article](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
* [New pkgdown article](https://furrr.futureverse.org/articles/articles/remote-connections.html)
detailing how to use furrr with remote AWS EC2 connections.

* `future_walk()` and friends have been added to mirror `purrr::walk()`.
Expand Down
14 changes: 7 additions & 7 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ library(purrr)
library(tictoc)
```

# furrr <a href='https://davisvaughan.github.io/furrr/'><img src='man/figures/logo.png' align="right" height="139" /></a>
# furrr <a href='https://furrr.futureverse.org/'><img src='man/figures/logo.png' align="right" height="139" /></a>

<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/furrr)](https://cran.r-project.org/package=furrr)
Expand Down Expand Up @@ -65,17 +65,17 @@ remotes::install_github("DavisVaughan/furrr")

## Learning

The easiest way to learn about furrr is to browse [the website](https://davisvaughan.github.io/furrr/). In particular, the [function reference](https://davisvaughan.github.io/furrr/reference/index.html) page can be useful to get a general overview of the functions in the package, and the following vignettes are deep dives into various parts of furrr:
The easiest way to learn about furrr is to browse [the website](https://furrr.futureverse.org/). In particular, the [function reference](https://furrr.futureverse.org/reference/index.html) page can be useful to get a general overview of the functions in the package, and the following vignettes are deep dives into various parts of furrr:

- [Common gotchas](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
- [Common gotchas](https://furrr.futureverse.org/articles/articles/gotchas.html)

- [Learn how furrr "chunks" your input](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
- [Learn how furrr "chunks" your input](https://furrr.futureverse.org/articles/articles/chunking.html)

- [carrier - An alternative to automatic globals detection](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
- [carrier - An alternative to automatic globals detection](https://furrr.futureverse.org/articles/articles/carrier.html)

- [Progress notifications with progressr](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
- [Progress notifications with progressr](https://furrr.futureverse.org/articles/articles/progress.html)

- [Using furrr with connections](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
- [Using furrr with connections](https://furrr.futureverse.org/articles/articles/remote-connections.html)

## Example

Expand Down
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# furrr <a href='https://davisvaughan.github.io/furrr/'><img src='man/figures/logo.png' align="right" height="139" /></a>
# furrr <a href='https://furrr.futureverse.org/'><img src='man/figures/logo.png' align="right" height="139" /></a>

<!-- badges: start -->

Expand Down Expand Up @@ -59,27 +59,25 @@ remotes::install_github("DavisVaughan/furrr")
## Learning

The easiest way to learn about furrr is to browse [the
website](https://davisvaughan.github.io/furrr/). In particular, the
[function
reference](https://davisvaughan.github.io/furrr/reference/index.html)
page can be useful to get a general overview of the functions in the
package, and the following vignettes are deep dives into various parts
of furrr:
website](https://furrr.futureverse.org/). In particular, the [function
reference](https://furrr.futureverse.org/reference/index.html) page can
be useful to get a general overview of the functions in the package, and
the following vignettes are deep dives into various parts of furrr:

- [Common
gotchas](https://davisvaughan.github.io/furrr/articles/articles/gotchas.html)
gotchas](https://furrr.futureverse.org/articles/articles/gotchas.html)

- [Learn how furrr “chunks” your
input](https://davisvaughan.github.io/furrr/articles/articles/chunking.html)
input](https://furrr.futureverse.org/articles/articles/chunking.html)

- [carrier - An alternative to automatic globals
detection](https://davisvaughan.github.io/furrr/articles/articles/carrier.html)
detection](https://furrr.futureverse.org/articles/articles/carrier.html)

- [Progress notifications with
progressr](https://davisvaughan.github.io/furrr/articles/articles/progress.html)
progressr](https://furrr.futureverse.org/articles/articles/progress.html)

- [Using furrr with
connections](https://davisvaughan.github.io/furrr/articles/articles/remote-connections.html)
connections](https://furrr.futureverse.org/articles/articles/remote-connections.html)

## Example

Expand Down

0 comments on commit d3911a5

Please sign in to comment.