This file contains hidden or 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
ООП | |
що таке SOLID | |
розкажи про якийсь з цих принципів | |
3 принципа ООП | |
Ruby | |
принципиальное различие скриптовых и “обычных” языков | |
реализация множественного наследования в ruby (модулі) | |
duck typing | |
многопоточность в ruby | |
метапрограмінг в рубі |
This file contains hidden or 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
var retailers_urlGet = "http://booking.com"; | |
// Lets get retailers from backend API | |
appAPI.request.get(retailers_urlGet, | |
function(response, responseHeaders) | |
{ | |
// Need to get these params from the response | |
var src = $(response).find("input[name=src]").val(), | |
error_url = $(response).find("input[name=error_url]").val(), | |
dcid = $(response).find("input[name=dcid]").val(), |