To run all the lines in your R file use the Source command or the shortcut Ctrl + Shift + S or if you want the echo feedback use Ctrl + Shift + Enter. The latter is close do the run a single line Ctrl + Enter. This will run the source command:
Github Actions building R install packages syntax error near unexpected token `c’
When trying to run the r-lib/actions/setup-r for R in Github Actions installing the dependencies. The pipeline yaml file I was missing adding shell: Rscript {0} at the end so the Install dependencies will be Source: https://github.com/r-lib/actions/tree/master/examples
WordPress Jetpack statistics don’t count yourself
When you add the Jetpack plugin it should by default have you disabled on the statistics. You can check up on this by going to Make sure Administrator, Editor or Author is disabled depending on which kind of users you want to ignore stats on. You might just want all types to be disabled.
Convert nuget sources update to dotnet nuget
Converting nuget or msbuild for that matter, find the equivalent in dotnet. For converting your nuget sources update you have to change almost all words. Here an example: You add dotnet at the start. Remember to change sources to source without the s. Update and source has moved places. All argument will be changed from
Can’t load Rdata file in RStudio Error in readChar
When trying to load a Rdata file in RStudio and getting an error but it works fine if you load it directly from the file explorer. Output error: This might be due to a wrong working directory. First navigate to the correct folder. Then hit the menu “More” and select “Set as Working Directory” Now
Github Actions building R Error in read.dcf(path) cannot open the connection
When trying to run the r-lib/actions/setup-r for R in Github Actions installing the dependencies. When running this I get an error in read.dcf(path) cannot open the connection As the error message states isn’t trying to locate a DESCRIPTION file. Add a file called DESCRIPTION in the path it’s provided (most likely your root folder). Examples
Where did the Android Keystore go?
Visual Studio let’s you create the keystore when distributing your Android App. If you created your Android keystore directly inside Visual Studio it doesn’t tell you where it saved it. You can find it here on Windows: Source: https://docs.microsoft.com/en-us/xamarin/android/deploy-test/signing/keystore-signature?tabs=windows
Resize pictures in GitHub
As the guide suggest to add an image to a readme.md markdown file use (Source: https://guides.github.com/features/mastering-markdown/) But if you want to resize you could use the html img tag instead. Replace the syntax with this
Google Play Console Error VALIDATE_APP_MESSAGE_MISSING_COUNTRY_PRICES
Got this message when updating an Android app with a new apk: Unknown validation VALIDATE_APP_MESSAGE_MISSING_COUNTRY_PRICES”. This could be because you are missing a price value on one or more countries in the app pricing. An easy fix is to edit the price to something else, save it and then changed it back to your original
GitHub Actions Build Xamarin Android CI Pipeline
Here is an example of how to build Xamarin Android project in GitHub Actions. It will trigger on push and pull request. First checkout, restore nuget packages and then build the Xamarin Android project. Replace Carousel with your project name of course. Enjoy!