Kotlin 1.3 Released with Coroutines, Kotlin/Native Beta, and more [https://blog.jetbrains.com/kotlin/2018/10/kotlin-1-3/]
Category: IT
Nuget
[https://docs.microsoft.com/en-us/nuget/]
Command line [https://docs.nuget.org/consume/command-line-reference]
nuget locals all -list
nuget locals all -clear
Is it possible to change the location of packages for NuGet? [https://stackoverflow.com/questions/4092759/is-it-possible-to-change-the-location-of-packages-for-nuget]
nuget.config file next to the solution
<settings>
<repositoryPath>{some path here}</repositoryPath>
</settings>
or
<configuration>
<config>
<add key="repositoryPath" value="C:\thePathToMyPackagesFolder" />
</config>
...
</configuration>
Android P: Priority Buckets
Exploring Android P: Priority Buckets [https://medium.com/google-developer-experts/exploring-android-p-priority-buckets-d34d12059d36]
Xamarin misc
Docs [https://docs.microsoft.com/xamarin]
Github repos [https://github.com/xamarin]
Create custom view in Xamarin.Forms [https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/view]
Create custom view in Xamarin.Android [https://medium.com/@mclint_/how-to-make-a-custom-view-in-xamarin-android-3d2dcb391936]
Xamarin.Android architecture [https://docs.microsoft.com/en-us/xamarin/android/internals/architecture]
Embed Flutter UI in existing Xamarin.iOS and Xamarin.Android apps [https://github.com/flutter/flutter/issues/15200]
С# multithreading
Task Parallel Library (TPL) [https://docs.microsoft.com/en-us/dotnet/standard/parallel-programming/task-parallel-library-tpl]
c# lessons (also about multithreading) [https://metanit.com/sharp/tutorial/]