mastodonien.de

fosstodon.org

Zeitpunkt              Nutzer    Delta   Tröts        TNR     Titel                     Version  maxTL
Di 30.07.2024 00:00:20    61.967      +2    3.590.362    57,9 Fosstodon                 4.2.10     500
Mo 29.07.2024 00:00:12    61.965      -1    3.587.302    57,9 Fosstodon                 4.2.10     500
So 28.07.2024 00:00:15    61.966      +3    3.586.611    57,9 Fosstodon                 4.2.10     500
Sa 27.07.2024 00:00:14    61.963      +5    3.583.830    57,8 Fosstodon                 4.2.10     500
Fr 26.07.2024 00:01:07    61.958      +1    3.580.868    57,8 Fosstodon                 4.2.10     500
Do 25.07.2024 00:00:10    61.957      +1    3.577.506    57,7 Fosstodon                 4.2.10     500
Mi 24.07.2024 00:01:07    61.956       0    3.574.077    57,7 Fosstodon                 4.2.10     500
Di 23.07.2024 00:00:03    61.956      -3    3.570.705    57,6 Fosstodon                 4.2.10     500
Mo 22.07.2024 00:01:10    61.959      +1    3.567.825    57,6 Fosstodon                 4.2.10     500
So 21.07.2024 00:01:07    61.958       0    3.564.861    57,5 Fosstodon                 4.2.10     500

Di 30.07.2024 19:23

Using the builder pattern in could be a _very_ powerful approach.

A cron schedule builder:

gist.github.com/JosiahParry/47

  library(cron)
  (builder <- new_schedule_builder())

  builder |> 
    # every 4th hour
    with_each_hour(every = 4) |> 
    # every other day
    with_each_day_of_month(every = 2) |> 
    # at the 0 and 30 minute marker
    with_minutes(c(0, 30)) |> 
    # build cron schedule
    build()

library(cron) (builder <- new_schedule_builder()) builder |> # every 4th hour with_each_hour(every = 4) |> # every other day with_each_day_of_month(every = 2) |> # at the 0 and 30 minute marker with_minutes(c(0, 30)) |> # build cron schedule build()

[Öffentlich] Antw.: 0 Wtrl.: 1 Fav.: 0

Antw. · Weiterl. · Fav. · Lesez. · Pin · Stumm · Löschen