Posted on Leave a comment

Java Android faq interview algorithms collections

Collections in java. don’t forget

Руководство по версиям и возможностям Java
[https://habr.com/ru/post/488144/]
Руководство по возможностям Java версий 8-16
[https://habr.com/ru/post/551590/]

https://acecodinginterview.org/

https://habrahabr.ru/post/162017/

https://habr.com/post/156361/

https://habrahabr.ru/post/237043/

364d7e41907e453b8e60128cdac459dc

2016-12-04_00-29-25

Continue reading Java Android faq interview algorithms collections

Posted on Leave a comment

Nuget

[https://docs.microsoft.com/en-us/nuget/]

[https://docs.microsoft.com/ru-ru/nuget/consume-packages/managing-the-global-packages-and-cache-folders]


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>