-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuest.info
More file actions
96 lines (83 loc) · 3.27 KB
/
Quest.info
File metadata and controls
96 lines (83 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>JavaRush</title>
<style>
mark {
padding: .1em .3em;
color: #fff;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
font-size: 1em;
font-family: Menlo, Monaco, Consolas, Courier New, Ubuntu Mono, monospace;
border-radius: 3px;
}
.light-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #151f33;
}
.dark-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #fff;
background: #1F2023;
}
.light-content .text-corporate {
color: #f80 !important;
}
.dark-content .text-corporate {
color: #ff7337 !important;
}
.light-content mark.green {
background-color: #41a444;
}
.dark-content mark.green {
background-color: #45aa4c;
}
.light-content mark.orange {
background-color: #faa033;
}
.dark-content mark.orange {
background-color: #ff7337;
}
.light-content mark.blue {
background-color: #3a5fa5;
}
.dark-content mark.blue {
background-color: #4798cf;
}
.light-content .text-red {
color: red !important;
}
.dark-content .text-red {
color: #f14f4c !important;
}
</style>
</head>
<body class="dark-content">
<div style="padding: 10px 30px">
<h3>Коллекции Java</h3>
<p><strong>Квест «Java Collections»</strong> посвящен детальному изучению <strong>Java-коллекций</strong>, но не
только их одних. Речь пойдет о том, как работать с файлами и архивами, что такое паттерны проектирования и как
их применять. Вы получите опыт работы с
<mark class="blue">JSON</mark>
,
<mark class="blue">Guava</mark>
,
<mark class="blue">Apache Commons Collections</mark>
,
<mark class="blue">Junit</mark>
, узнаете подробности о сборке мусора в <strong>Java</strong>. Помимо продвинутых составляющих Core, вы
познакомитесь с необходимыми любому современному разработчику инструментами, узнаете о <strong>Git</strong> и
<strong>JAXB</strong>, <strong>RMI</strong> и <strong>DynamicProxy</strong>, прикоснетесь к другому важному
языку программирования — <strong>JavaScript</strong>. В этом квесте вы создадите мини-проекты — <strong>большие
задачи</strong>. В обучающих целях их решение будет разбито на этапы.
</p>
</div>
</body>
</html>