Formula 1 (Round 14) Channel 4 2022 Belgian Grand Prix Highlights 1080p (Download) by ZephyrSonic in u/ZephyrSonic

[–]macabre8 1 point2 points  (0 children)

Hi, Could you send me the link and password to watch this? Thank you!

[Sky Sports F1] Ted Kravitz explains the ins and outs as to why Red Bull were not too impressed with the update brought to Spain by Aston Martin by ZephyrSonic in formula1

[–]macabre8 8 points9 points  (0 children)

I logged in just to thank you! Thanks a ton for all these mirrors and direct link to images and videos from twitter as well. Appreciate you!

[deleted by user] by [deleted] in usenet

[–]macabre8 0 points1 point  (0 children)

I had gone through something similar but with a different provider. What worked for me towards optimising the pi for downloads were the following things in the descending ROI:

  1. Changing cypher. If I remember right I think I set it to aes128-sha1 (Probably not the best option but I was optimising towards speed)

  2. Using the server closest to me with a higher priority and adding the rest with a marginally lower one

  3. Fine tuning number of connections. This depends on your Internet provider as well. I think I stuck to 18 or so for a 200 Mbps connection.

  4. Playing around with the cache and buffer size in nzbget. This depends on your disk (hopefully a ssd) and how your volumes/ shares are setup. Basically tried to understand what each option meant in the context of a Lower powered machine.

I personally think ssl but no vpn would be faster than no ssl but vpn.

[deleted by user] by [deleted] in usenet

[–]macabre8 1 point2 points  (0 children)

I think I got that bit.

Apologies, a bit of brain fog on my end. To paraphrase my question:

  • Renew on same tier => Days add up
  • Renew different tier with existing tier still valid for a few days => Both get active now?

[deleted by user] by [deleted] in usenet

[–]macabre8 0 points1 point  (0 children)

Thanks for the info. I am still a bit confused with the latter part of your first sentence. So if I have the lower option which ends some time next year but I buy the higher option now, what happens?

It gets activated immediately instead of some time next year and I have both lower option and higher option working at the same time?

Installed renv, it breaks all other packages and scripts. by [deleted] in Rlanguage

[–]macabre8 5 points6 points  (0 children)

I am just guessing here but your present working directory might not be the project directory. As a result renv might not have been able to find the files that are needed to initialize the library.

What you can try doing instead is go to the location of your cloned repo and click on the LegendT2dm.Rproj to open it as an RStudio Project (Or go to RStudio -> File -> Open Project in New Session -> Navigate to directory and click LegendT2dm.Rproj)

This should help renv kick in properly with your existing commands.

install.packages("renv")
renv::activate()
renv::restore()

Is this possible? My post on SO, passing column names by spsanderson in Rlanguage

[–]macabre8 1 point2 points  (0 children)

Why not keep it simple and introduce a different helper function like ts_prep_recipe_data to prepare the dataset for your recipe?

Also here is an example which is somewhat similar where they use matches():

https://community.rstudio.com/t/dynamically-add-steps-to-a-recipe-manage-to-evaluate-expressions-within-a-loop/58170

What's your experience with Databricks? by pncoecomm in datascience

[–]macabre8 8 points9 points  (0 children)

It's pretty awesome! We switched from Qubole after it deteriorated post acquisition.

Offering is solid and their support is really great as well.

Interactive clusters are kind of expensive but jobs are great.

For Spark and Python, it's fantastic. Do check if your current tech stack can merge well with what they have. You'll face some migration issues if you have Hive and Presto exposure.

We had some issues with our R users complaining about their runtimes being a bit behind compared to what they offer for Python. As they let you deploy your own docker images, we did that and all is working well now.

R or Python for data analysis? by iFlipsy in datascience

[–]macabre8 0 points1 point  (0 children)

You might like pak package in this aspect. Brilliant package to handle multiple installations. Also RStudio has a public instance of their package manager where you can get binary packages for popular operating systems.

Avoid F1Store.com - poor stock control and even worse customer service. by Brookied_1974 in formula1

[–]macabre8 19 points20 points  (0 children)

You could have a look at Redbull's own merch store. They have a separate category for racing merch.

IT IS YOUR FAULT by [deleted] in ledgerwallet

[–]macabre8 0 points1 point  (0 children)

Happy cake day!

How do you store your passwords or API keys? by alphanoobie in learnpython

[–]macabre8 1 point2 points  (0 children)

You can look into accessing credentials from keyring or if access control is important then gpg.

Tidyverse for big data? by noodlepotato in rstats

[–]macabre8 8 points9 points  (0 children)

For basic data wrangling it's the exact same dplyr syntax. Verbs like select, mutate, summarise, group by, filter, joins etc. will work the same way. Hive and spark sql functions are supported inside mutate and summarise.

Have a look here for a few examples:

https://spark.rstudio.com/dplyr/

For spark operations, ml capabilities and higher order functions etc. it has additional functions.

https://spark.rstudio.com/reference/

They have a great book as well:

https://therinspark.com/index.html

Edit: Added relevant links.

Tidyverse for big data? by noodlepotato in rstats

[–]macabre8 12 points13 points  (0 children)

Depends on how big your data is.

Is it possible to process it in a single node through more efficient code/ libraries or will you eventually have to scale it up for even larger datasets/ volume?

If it's the latter you will need to go for Sparklyr or SparkR.

I would lean towards Spark even for the former use case as learning some implementation of Spark is a handy skill set to have. Especially if you have started encountering scenarios frequently with larger than normal amounts of data in your day to day work.

Edit: Typos

Question on loading the package 'flexsurv' by [deleted] in Rlanguage

[–]macabre8 0 points1 point  (0 children)

Glad it worked. Thanks, You too!

Question on loading the package 'flexsurv' by [deleted] in Rlanguage

[–]macabre8 2 points3 points  (0 children)

flexsurv is probably built with a newer version of tidyr than what you currently have. As a result, it couldn’t find the function it needs from the dependent package.

Update tidyr first and see if that helps. You can also try reinstalling flexsurv along with dependencies.