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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Async/Await vs Promises</title> | |
<style> | |
body { | |
font-family: 'Courier New', Courier, monospace; | |
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); | |
color: #00ffe5; |
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
// код на промисах: https://gist.github.com/sunmeat/404f684da54c7e1b6fe5d4957e410bd6 356 строк вместо 407 | |
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>async await вместо промисов</title> | |
<style> | |
body { | |
font-family: 'Courier New', Courier, monospace; |
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
выполнить одно из 4 заданий на выбор: | |
1. Написать программу, которая с помощью RestSharp получает все сведения о пользователе GitHub по его нику | |
Использовать RestSharp для выполнения запроса | |
Базовый URL: https://api.github.com/users/{username} | |
Добавить заголовок User-Agent, иначе запрос будет отклонён | |
Вывести имя пользователя или сообщение, если оно отсутствует | |
2. Написать программу, которая с помощью RestSharp получает курсы трёх валют и отображает их | |
Получать актуальные курсы валют (например, USD, EUR, GBP) к выбранной базе (например, UAH) |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Промисы + АПИ</title> | |
<style> | |
body { | |
font-family: 'Courier New', Courier, monospace; | |
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); | |
color: #00ffe5; |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Методы промисов</title> | |
<style> | |
body { | |
font-family: 'Courier New', Courier, monospace; | |
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); | |
color: #00ffe5; |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Пример на коллбэки</title> | |
<style> | |
body { | |
font-family: 'Courier New', Courier, monospace; | |
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); | |
color: #00ffe5; |
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
Выберите один публичный API из предоставленных списков. | |
Рекомендуется выбрать API, не требующий сложной авторизации (например, PokeAPI, OpenWeatherMap, Dog API, NASA APOD). | |
Бонус (по желанию): Используйте второй API для комбинации данных (например, API погоды + API геолокации). | |
Придумайте простую, но увлекательную концепцию для приложения. Примеры: | |
- Отображение случайной картинки дня из NASA API с описанием. | |
- Поиск и отображение информации о фильмах по ключевому слову (OMDB API). | |
- Генератор случайных фактов о животных (Cat Fact API, Dog API). | |
Используйте минималистичный, но приятный дизайн (например, стили в стиле примера с PokeAPI). |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Расширенная работа с API и JSON</title> | |
<style> | |
body { | |
font-family: monospace; | |
background-color: #111; | |
color: #0ff; |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Сериализация массива объектов</title> | |
<style> | |
body { | |
font-family: monospace; | |
background-color: #111; | |
color: #0ff; |
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
<!DOCTYPE html> | |
<html lang=""> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Дуглас Крокфорд — создатель JSON</title> | |
<style> | |
body { | |
font-family: monospace; | |
background-color: #111; | |
color: #0ff; |