This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Тайм-менеджмент для системных администраторов - Лимончелли Т. [PDF, RUS, 2007] | |
Карьера программиста. Как устроиться на работу в Google, Microsoft или другую ведущую IT-компанию - Лакман Г. [PDF, RUS, 2012] | |
Работа мечты для программиста. Тестовые задачи и вопросы при собеседовании в ведущих IT-компаниях - Джон Монган и др. [PDF, RUS, 2014] | |
Мэтт Вайсфельд - Объектно-ориентированное мышление (2014) [PDF] | |
Паттерны проектирования - Фримен Эр., Фримен Эл., Бейтс Б., Сьерра К. [RUS, DjVu, 2011] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final static HostnameVerifier DO_NOT_VERIFY = new HostnameVerifier() { | |
public boolean verify(String hostname, SSLSession session) { | |
return true; | |
} | |
}; | |
public static OkHttpClient createOkHttpClient() { | |
// Create a trust manager that does not validate certificate chains | |
TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() { | |
@Override |